/* ==========================================================================
   DESIGN SYSTEM - vcelaribb.sk
   ZO SZV Jána Jakuba Adamiho, Banská Bystrica
   ========================================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* --- Custom Variables & Tokens --- */
:root {
    /* Color Palette */
    --bg-dark: #0A0A0C;
    --bg-card: rgba(20, 20, 25, 0.75);
    --bg-card-hover: rgba(28, 28, 35, 0.85);
    --border-color: rgba(255, 178, 0, 0.15);
    --border-hover: rgba(255, 178, 0, 0.35);
    
    --primary: #FFB200;
    --primary-glow: rgba(255, 178, 0, 0.45);
    --primary-bg-glow: rgba(255, 178, 0, 0.05);
    --secondary: #FFD25E;
    --accent: #E07A5F;
    --accent-glow: rgba(224, 122, 95, 0.3);
    
    --text-cream: #FFFDF9;
    --text-cream-muted: #E2DFD8;
    --text-gray: #9E9EA4;
    --text-dark: #121214;
    
    --success: #4E9F3D;
    --success-glow: rgba(78, 159, 61, 0.3);
    
    /* Layout & Spacing */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    /* Glassmorphism token */
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --glass-backdrop: blur(14px);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    color: var(--text-cream-muted);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-cream);
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 1.2rem;
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

/* --- Scrollbar Customization --- */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #25252b;
    border-radius: var(--radius-sm);
    border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* --- Selection Color --- */
::selection {
    background-color: var(--primary);
    color: var(--text-dark);
}

/* ==========================================================================
   UTILITY CLASSES & REUSABLE LAYOUTS
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 7rem 0;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-amber {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--border-color);
    box-shadow: var(--glass-shadow);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(255, 178, 0, 0.08);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #E59F00);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(255, 178, 0, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px var(--primary-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-cream);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: var(--primary-bg-glow);
    transform: translateY(-2px);
}

.section-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.section-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: block;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 12, 0.75);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(8, 8, 10, 0.92);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    transition: var(--transition-smooth);
}

.navbar.scrolled .nav-container {
    padding: 0.8rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-cream);
}

.logo svg {
    fill: var(--primary);
    filter: drop-shadow(0 0 5px var(--primary-glow));
    transition: var(--transition-smooth);
}

.logo:hover svg {
    transform: rotate(-15deg) scale(1.1);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    list-style: none;
}

.nav-link {
    font-weight: 500;
    color: var(--text-cream-muted);
    position: relative;
    padding: 0.3rem 0;
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-fast);
    box-shadow: 0 0 5px var(--primary-glow);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary);
}

/* --- Mobile Nav Toggle --- */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-cream);
    border-radius: 3px;
    transition: var(--transition-fast);
}

/* ==========================================================================
   HERO SHOWCASE SECTION
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    background-image: linear-gradient(rgba(10, 10, 12, 0.78), rgba(10, 10, 12, 0.96)), url('assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 5;
}

.hero-content {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1.2rem;
    background: rgba(255, 178, 0, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.hero-tag span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary);
    animation: pulse 1.8s infinite;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-cream-muted);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 3.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2.2rem;
}

.stat-item h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.stat-item p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    margin: 0;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    animation: zoomIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-badge-card {
    padding: 2.5rem;
    width: 100%;
    max-width: 360px;
    position: relative;
    border: 1px solid rgba(255, 178, 0, 0.25);
    background: rgba(18, 18, 22, 0.8);
}

.hero-badge-card::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, var(--primary) 20%, transparent 60%);
    opacity: 0.15;
    filter: blur(10px);
}

.badge-header {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 700;
}

.badge-body h4 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.badge-body p {
    font-size: 0.95rem;
    color: var(--text-cream-muted);
    margin-bottom: 1.5rem;
}

.badge-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.2rem;
}

.badge-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-dark);
}

.badge-meta h5 {
    font-size: 0.95rem;
    margin: 0;
}

.badge-meta p {
    font-size: 0.75rem;
    color: var(--text-gray);
    margin: 0;
}

/* ==========================================================================
   ABOUT SECTION (O NAS)
   ========================================================================== */
.about {
    background-color: #0D0D10;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -10%;
    width: 40%;
    height: 50%;
    background: radial-gradient(circle, rgba(255, 178, 0, 0.04) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 5rem;
    align-items: center;
}

.about-visual {
    position: relative;
    z-index: 2;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.about-image-wrapper img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-image-wrapper:hover img {
    transform: scale(1.03);
}

.about-floating-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    padding: 1.8rem;
    max-width: 250px;
    border: 1px solid var(--border-color);
}

.floating-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 178, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.floating-icon svg {
    fill: var(--primary);
}

.about-floating-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
}

.about-floating-card p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin: 0;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-title {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.about-lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-cream);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--text-cream-muted);
    margin-bottom: 2.2rem;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.feature-check {
    width: 22px;
    height: 22px;
    background: rgba(78, 159, 61, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.feature-check svg {
    fill: var(--success);
}

.feature-item h5 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin: 0;
}

/* ==========================================================================
   BEEKEEPER'S YEAR SECTION (VČELÁRSKY ROK)
   ========================================================================== */
.year {
    background-color: var(--bg-dark);
    position: relative;
}

.year-slider-container {
    position: relative;
    max-width: 1050px;
    margin: 0 auto;
}

.slides-wrapper {
    position: relative;
    height: 460px;
    margin-bottom: 3rem;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.98) translateY(10px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                visibility 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
    z-index: 2;
}

.slide-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
    background: rgba(18, 18, 22, 0.85);
    border: 1px solid var(--border-color);
}

.slide-info {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-season {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.slide-title {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

.slide-desc {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-cream-muted);
    margin-bottom: 2rem;
}

.slide-tasks h5 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    margin-bottom: 0.8rem;
}

.slide-tasks ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.slide-tasks li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.slide-tasks li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
}

.slide-image {
    position: relative;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(18, 18, 22, 0.9), transparent 25%);
}

/* --- Slider Navigation --- */
.slider-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 1rem;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(255, 178, 0, 0.05);
    transition: var(--transition-smooth);
}

.slider-btn svg {
    fill: var(--text-cream);
    transition: var(--transition-fast);
}

.slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.slider-btn:hover svg {
    fill: var(--text-dark);
}

.slider-dots {
    display: flex;
    gap: 0.8rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background: var(--primary);
    width: 32px;
    border-radius: 50px;
    box-shadow: 0 0 8px var(--primary-glow);
}

/* ==========================================================================
   ACTIVITIES SECTION (PREDNÁŠKY A SCHÔDZE)
   ========================================================================== */
.activities {
    background-color: var(--bg-dark);
    position: relative;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.activity-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.activity-img-wrapper {
    position: relative;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    overflow: hidden;
    height: 220px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: none;
}

.activity-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.activity-card:hover .activity-img-wrapper img {
    transform: scale(1.05);
}

.activity-date-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 0.9rem;
    background: rgba(18, 18, 22, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.activity-info {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    border-top: none;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.activity-card-title {
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    line-height: 1.3;
}

.activity-card-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 1.8rem;
    flex-grow: 1;
}

.activity-docs-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: auto;
}

.doc-download-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 178, 0, 0.05);
    border: 1px solid rgba(255, 178, 0, 0.15);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-cream);
    cursor: pointer;
    transition: var(--transition-fast);
}

.doc-download-btn svg {
    fill: var(--primary);
    transition: var(--transition-fast);
}

.doc-download-btn:hover {
    background: var(--primary-bg-glow);
    border-color: var(--primary);
    color: var(--primary);
}

.doc-download-btn:hover svg {
    transform: translateY(2px);
}

/* ==========================================================================
   UTILITY CARDS - Bloom, Weather & Honey Calculator
   ========================================================================== */
.utility-widgets {
    background-color: #0D0D10;
    position: relative;
}

.widgets-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
}

/* --- Widget Base --- */
.widget-card {
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    background: rgba(18, 18, 22, 0.85);
}

.widget-title {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.widget-title svg {
    fill: var(--primary);
    filter: drop-shadow(0 0 4px var(--primary-glow));
}

.widget-desc {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 2.2rem;
}

/* --- Weather & Bloom Widget --- */
.weather-bloom-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    padding: 1.2rem 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.weather-bb-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.weather-bb-info p {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin: 0;
}

.weather-bb-temp {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.temp-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
}

.flight-status {
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--success-glow);
    color: #8CE072;
    border: 1px solid rgba(78, 159, 61, 0.2);
}

.bloom-feed h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-cream);
    margin-bottom: 1.2rem;
}

.bloom-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.bloom-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.bloom-item-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.bloom-name {
    font-weight: 600;
    color: var(--text-cream-muted);
}

.bloom-percentage {
    color: var(--primary);
    font-weight: 700;
}

.bloom-bar-wrapper {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    overflow: hidden;
}

.bloom-bar {
    height: 100%;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 50px;
    width: 0%;
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Honey Calculator Widget --- */
.calc-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
}

.form-label span.value-display {
    color: var(--primary);
    font-weight: 700;
}

.range-input {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    outline: none;
}

.range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 0 8px var(--primary-glow);
    transition: var(--transition-fast);
}

.range-input::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.radio-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.radio-btn {
    position: relative;
}

.radio-btn input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 0.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.01);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.radio-btn input:checked + .radio-label {
    background: var(--primary-bg-glow);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 10px rgba(255, 178, 0, 0.1);
}

.calc-result-box {
    margin-top: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 178, 0, 0.08), rgba(224, 122, 95, 0.08));
    border: 1px solid rgba(255, 178, 0, 0.2);
    border-radius: var(--radius-md);
    padding: 1.8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.result-val {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.3rem;
    text-shadow: 0 0 15px rgba(255, 178, 0, 0.2);
}

.result-lbl {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-cream-muted);
    margin-bottom: 1.2rem;
}

.result-rec {
    font-size: 0.9rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-cream);
}

.result-rec strong {
    color: var(--primary);
}

/* ==========================================================================
   PHOTO GALLERY SECTION
   ========================================================================== */
.gallery {
    background-color: var(--bg-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 12, 0.9) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    z-index: 5;
    transform: translateY(15px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--primary);
}

.gallery-info p {
    font-size: 0.8rem;
    color: var(--text-cream-muted);
    margin: 0;
}

/* --- Gallery Hovers --- */
.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover .gallery-info {
    opacity: 1;
    transform: translateY(0);
}

/* --- LIGHTBOX MODAL --- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 6, 8, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    font-size: 2.5rem;
    color: var(--text-cream-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.lightbox-content {
    max-width: 85%;
    max-height: 75%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.lightbox-content img {
    display: block;
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
}

.lightbox-caption {
    margin-top: 1.5rem;
    text-align: center;
    max-width: 600px;
}

.lightbox-caption h4 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.lightbox-caption p {
    font-size: 0.95rem;
    color: var(--text-cream-muted);
}

/* ==========================================================================
   CONTACT & REGISTRATION SECTION
   ========================================================================== */
.contact {
    background-color: #0D0D10;
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: stretch;
}

.contact-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-text h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

.contact-text p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 2.2rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-bottom: 2.5rem;
}

.info-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 178, 0, 0.1);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    fill: var(--primary);
}

.info-meta h4 {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.info-meta p {
    font-size: 0.9rem;
    color: var(--text-cream-muted);
    margin: 0;
}

.info-meta a:hover {
    color: var(--primary);
}

/* --- Map Card --- */
.contact-map-card {
    flex-grow: 1;
    min-height: 200px;
    background-image: linear-gradient(rgba(10, 10, 12, 0.8), rgba(10, 10, 12, 0.8)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="%230F0F11" width="100" height="100"/><path stroke="%23252528" stroke-width="0.5" fill="none" d="M0 10 h100 M0 20 h100 M0 30 h100 M0 40 h100 M0 50 h100 M0 60 h100 M0 70 h100 M0 80 h100 M0 90 h100 M10 0 v100 M20 0 v100 M30 0 v100 M40 0 v100 M50 0 v100 M60 0 v100 M70 0 v100 M80 0 v100 M90 0 v100"/></svg>');
    background-size: 100px 100px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-location-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.map-location-marker svg {
    fill: var(--accent);
    filter: drop-shadow(0 0 8px rgba(224, 122, 95, 0.6));
    animation: bounce 2s infinite;
}

.map-location-marker span {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--bg-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    border: 1px solid var(--border-color);
}

.map-location-marker:hover {
    transform: scale(1.05);
}

/* --- Contact Form --- */
.contact-form-wrapper {
    padding: 3.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.input-field {
    width: 100%;
    padding: 1rem 1.2rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.25);
    color: var(--text-cream);
    transition: var(--transition-fast);
}

.input-field:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(255, 178, 0, 0.1);
    background: rgba(0, 0, 0, 0.4);
}

textarea.input-field {
    min-height: 140px;
    resize: none;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-gray);
    user-select: none;
}

.form-checkbox input {
    margin-top: 0.2rem;
    accent-color: var(--primary);
}

/* --- Form Submit Feedbacks --- */
.form-feedback {
    display: none;
    padding: 1.2rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.5;
}

.form-feedback.success {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--success-glow);
    border: 1px solid rgba(78, 159, 61, 0.3);
    color: #8CE072;
}

.form-feedback.success svg {
    fill: #8CE072;
    flex-shrink: 0;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
    background-color: #060608;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    padding: 5rem 0 2.5rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 5rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-brand .logo {
    font-size: 1.6rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
}

.footer-links-col h4,
.footer-info-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links-col h4::after,
.footer-info-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-info-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-icon svg {
    fill: var(--text-cream-muted);
    transition: var(--transition-fast);
}

.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.social-icon:hover svg {
    fill: var(--text-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-gray);
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 178, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(255, 178, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 178, 0, 0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN (BREAKPOINTS)
   ========================================================================== */

/* --- Tablet / Large Devices (under 1024px) --- */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.3rem;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-image-wrapper img {
        height: 380px;
    }
    
    .slides-wrapper {
        height: 520px;
    }
    
    .slide-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
    
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .widgets-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

/* --- Mobile / Small Devices (under 768px) --- */
@media (max-width: 768px) {
    .section-padding {
        padding: 5rem 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #0A0A0C;
        flex-direction: column;
        align-items: center;
        padding-top: 3rem;
        gap: 2.5rem;
        transition: var(--transition-smooth);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-desc {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-floating-card {
        right: 10px;
        bottom: -20px;
        padding: 1.2rem;
        max-width: 200px;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .slides-wrapper {
        height: auto;
        min-height: 480px;
    }
    
    .slide-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .slide-image {
        display: none; /* Hide visual in mobile slider to keep it readable */
    }
    
    .slide-info {
        padding: 2.5rem 1.8rem;
    }
    
    .slide-tasks ul {
        grid-template-columns: 1fr;
    }
    
    .widget-card {
        padding: 2rem 1.5rem;
    }
    
    .weather-bloom-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .radio-group {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* --- Tiny Mobile Devices (under 480px) --- */
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
