@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;700&family=Inter:wght@300;400;700&display=swap');

/* --- Root Variables & Global Reset --- */
:root {
    --color-jungle-green: #1a3d2b;
    --color-mist-white: #e8f4f0;
    --color-terracotta: #c4622d;
    --color-golden-amber: #f0a500;
    --color-dark-shadow: #0d1f17;

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;

    --header-height: 5rem;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-mist-white);
    line-height: 1.6;
    background-color: var(--color-dark-shadow); /* Base background for seamless parallax */
    overflow-x: hidden; /* Prevent horizontal scroll from clip-path */
    position: relative;
}

a {
    color: var(--color-golden-amber);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-terracotta);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-mist-white);
    margin-bottom: 0.8em;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

h2 {
    font-size: clamp(2rem, 6vw, 4rem);
    text-align: center;
    margin-bottom: 1.5em;
    color: var(--color-golden-amber);
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-terracotta);
    margin: 0.5em auto 0;
    border-radius: 2px;
}

p {
    margin-bottom: 1em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* --- Special CSS Effect: Parallax Waterfall Background & Mist --- */
.parallax-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2; /* Below content, above mist for layering */
    perspective: 1px; /* For true parallax if needed, but animating position is simpler */
    overflow: hidden; /* Contain parallax layers */
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    animation: water-flow 25s linear infinite; /* Base animation */
}

/* Base layer - static image or very slow background */
.parallax-base {
    background-image: url('https://via.placeholder.com/1920x1080/0d1f17/1a3d2b?text=Kalmandavi+Base+Forest'); /* Deep forest base */
    background-attachment: fixed; /* Parallax effect */
    /* Refined Z-index for internal layering within the wrapper */
    z-index: 0; /* Base layer, furthest back within the wrapper's stacking context */
}

/* Animated water layers (gradients for abstract flow) */
.parallax-water-1 {
    background-image: linear-gradient(to bottom, transparent 0%, rgba(26, 61, 43, 0.4) 30%, rgba(26, 61, 43, 0.7) 70%, transparent 100%);
    background-size: 100% 200%; /* Make it taller to animate flow */
    animation-duration: 20s;
    opacity: 0.7;
    /* Refined Z-index for internal layering within the wrapper */
    z-index: 1;
}

.parallax-water-2 {
    background-image: linear-gradient(to bottom, transparent 0%, rgba(232, 244, 240, 0.2) 20%, rgba(26, 61, 43, 0.5) 60%, transparent 100%);
    background-size: 100% 250%;
    animation-duration: 18s;
    opacity: 0.6;
    /* Refined Z-index for internal layering within the wrapper */
    z-index: 2;
}

.parallax-water-3 {
    background-image: linear-gradient(to bottom, transparent 0%, rgba(232, 244, 240, 0.3) 10%, rgba(26, 61, 43, 0.4) 50%, transparent 100%);
    background-size: 100% 300%;
    animation-duration: 22s;
    opacity: 0.5;
    /* Refined Z-index for internal layering within the wrapper */
    z-index: 3;
}

@keyframes water-flow {
    0% { background-position-y: -100%; }
    100% { background-position-y: 100%; }
}

/* Mist Particle Overlay */
.mist-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1; /* Above parallax, below content */
    background: radial-gradient(circle at 20% 80%, rgba(232, 244, 240, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 70% 30%, rgba(232, 244, 240, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(232, 244, 240, 0.06) 0%, transparent 60%);
    background-size: 80% 80%, 70% 70%, 90% 90%; /* Multiple mist particles */
    background-repeat: no-repeat;
    animation: mist-float 30s ease-in-out infinite alternate;
    filter: blur(0.5px); /* Subtly blur the mist */
}

@keyframes mist-float {
    0% { transform: translate(0, 0); opacity: 0.8; background-position: 0 0, 50% 50%, 100% 100%; }
    25% { transform: translate(5%, -2%); opacity: 0.9; background-position: 10% 10%, 60% 60%, 90% 90%; }
    50% { transform: translate(-3%, 3%); opacity: 0.7; background-position: 0 20%, 40% 40%, 80% 80%; }
    75% { transform: translate(2%, -1%); opacity: 0.9; background-position: 10% 0, 70% 70%, 110% 110%; }
    100% { transform: translate(0, 0); opacity: 0.8; background-position: 0 0, 50% 50%, 100% 100%; }
}


/* --- Monsoon Chronicle (Progress Bar) --- */
.monsoon-chronicle {
    position: fixed;
    right: 0;
    top: var(--header-height);
    width: 8px;
    height: calc(100vh - var(--header-height));
    background-color: rgba(26, 61, 43, 0.3); /* Transparent jungle green base */
    z-index: 100;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    width: 100%;
    height: 0%;
    background: linear-gradient(to top, var(--color-terracotta), var(--color-golden-amber), var(--color-mist-white));
    background-size: 100% 300%; /* For animating the gradient */
    animation: stream-flow 4s linear infinite;
    transform-origin: bottom;
    border-radius: 4px;
    filter: brightness(1.1) drop-shadow(0 0 5px rgba(240, 165, 0, 0.5));
}

@keyframes stream-flow {
    0% { background-position-y: 0%; }
    100% { background-position-y: 100%; }
}

/* --- Navigation --- */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(13, 31, 23, 0.8); /* Deep forest shadow with transparency */
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    height: var(--header-height);
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.brand-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-golden-amber);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    margin-left: auto;
}

.nav-links a {
    color: var(--color-mist-white);
    font-weight: 400;
    font-size: 1.1rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-golden-amber);
    transition: width 0.3s ease-out;
}

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

/* Soundscape Toggle Button */
.soundscape-btn {
    background: none;
    border: 1px solid var(--color-jungle-green);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 2rem;
    transition: all 0.3s ease;
    color: var(--color-mist-white);
    flex-shrink: 0;
}

.soundscape-btn:hover {
    background-color: rgba(240, 165, 0, 0.1);
    border-color: var(--color-golden-amber);
    color: var(--color-golden-amber);
}

.soundscape-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.soundscape-btn .icon-pause {
    display: none;
}
.soundscape-btn.playing .icon-pause {
    display: block;
    transform: scale(1);
}
.soundscape-btn.playing .icon-play {
    display: none;
    transform: scale(0.8);
    opacity: 0;
}

/* --- Hero Section --- */
.hero-section {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: var(--header-height);
    position: relative;
    z-index: 2; /* Above mist */
    background: linear-gradient(180deg, rgba(13, 31, 23, 0.6) 0%, rgba(13, 31, 23, 0.2) 50%, rgba(13, 31, 23, 0.6) 100%);
    overflow: hidden; /* For clip-path */
}

.hero-content {
    max-width: 900px;
    padding: 2rem 1rem;
    background-color: rgba(13, 31, 23, 0.3); /* Subtle backdrop for text */
    backdrop-filter: blur(5px);
    border-radius: 15px;
}

.hero-content .tagline {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 2.2rem);
    color: var(--color-mist-white);
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    background-color: var(--color-golden-amber);
    color: var(--color-dark-shadow);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(240, 165, 0, 0.3);
}

.cta-button:hover {
    background-color: var(--color-terracotta);
    color: var(--color-mist-white);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(240, 165, 0, 0.4);
}

/* --- Section Styling Base --- */
.section-content {
    position: relative;
    z-index: 2; /* Ensure content is above parallax and mist */
    padding: 6rem 0;
    overflow: hidden; /* For clip-path */
}

.section-dark-bg {
    background-color: var(--color-dark-shadow);
    color: var(--color-mist-white);
}

.section-gradient-bg {
    background: linear-gradient(135deg, var(--color-jungle-green) 0%, var(--color-dark-shadow) 100%);
    color: var(--color-mist-white);
}

.section-light-bg {
    background: linear-gradient(135deg, var(--color-dark-shadow) 0%, var(--color-jungle-green) 100%);
    color: var(--color-mist-white);
}

/* --- Layout Archetype: Diagonal Sections --- */
/* Base diagonal (top-right to bottom-left slant) */
.section-diagonal {
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
    margin-bottom: -5vw; /* Overlap slightly for seamless transition */
    padding-bottom: 10rem; /* Adjust padding to account for clip-path */
}

/* Reverse diagonal (top-left to bottom-right slant) */
.section-diagonal-reverse {
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    margin-top: -5vw;
    padding-top: 10rem;
}

/* Hero section uses a softer diagonal, or no bottom diagonal to blend with tribal divider */
.hero-section.section-diagonal {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); /* Full rectangle for hero */
    margin-bottom: 0;
    padding-bottom: 6rem;
}

/* Specific section diagonal adjustments */
#whispers.section-diagonal {
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
}
#journey.section-diagonal {
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
}
#expedition.section-diagonal {
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
}


/* --- Tribal Art SVG Section Dividers --- */
.tribal-divider {
    width: 100%;
    height: 60px; /* Fixed height for consistency */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-dark-shadow);
    z-index: 5;
    position: relative;
    overflow: hidden;
}
.tribal-divider svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Animation for tribal dividers */
.tribal-divider svg polyline,
.tribal-divider svg path,
.tribal-divider svg line {
    stroke-dasharray: 1000; /* Assuming max path length */
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 1.5s ease-out, opacity 1.5s ease-out;
    opacity: 0;
}
.tribal-divider svg circle,
.tribal-divider svg rect {
    transform: scale(0);
    transform-origin: center;
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
    opacity: 0;
}

.tribal-divider.is-visible svg polyline,
.tribal-divider.is-visible svg path,
.tribal-divider.is-visible svg line {
    stroke-dashoffset: 0;
    opacity: 1;
}
.tribal-divider.is-visible svg circle,
.tribal-divider.is-visible svg rect {
    transform: scale(1);
    opacity: 1;
    transition-delay: 0.5s; /* Delay dots/rects slightly */
}

/* Divider 1 specific */
.tribal-divider-1 { background-color: var(--color-jungle-green); }
.tribal-divider-1 svg polyline { stroke: var(--color-terracotta); }
.tribal-divider-1 svg circle { fill: var(--color-golden-amber); }

/* Divider 2 specific */
.tribal-divider-2 { background-color: var(--color-mist-white); }
.tribal-divider-2 svg path { fill: var(--color-terracotta); }
.tribal-divider-2 svg rect { fill: var(--color-golden-amber); }

/* Divider 3 specific */
.tribal-divider-3 { background-color: var(--color-dark-shadow); }
.tribal-divider-3 svg path:nth-child(1) { stroke: var(--color-terracotta); }
.tribal-divider-3 svg path:nth-child(2) { stroke: var(--color-golden-amber); }

/* Divider 4 specific */
.tribal-divider-4 { background-color: var(--color-jungle-green); }
/* FIX: --color-primary was undefined. Changed to var(--color-mist-white) for visibility against the green background, maintaining design language. */
.tribal-divider-4 svg path { fill: var(--color-mist-white); }
.tribal-divider-4 svg path { stroke: var(--color-golden-amber); }

/* Divider 5 specific */
.tribal-divider-5 { background-color: var(--color-dark-shadow); }
.tribal-divider-5 svg line { stroke: var(--color-terracotta); }
.tribal-divider-5 svg circle { fill: var(--color-golden-amber); }
.tribal-divider-5 svg path { fill: var(--color-mist-white); }


/* --- Glassmorphism-styled 'wet lens' fact cards --- */
.fact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 1rem;
}

.fact-card {
    background: rgba(232, 244, 240, 0.08); /* Very light mist-white with transparency */
    backdrop-filter: blur(15px); /* Stronger blur for wet lens effect */
    border: 1px solid rgba(232, 244, 240, 0.15);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fact-card h3 {
    color: var(--color-golden-amber);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.fact-card .card-content {
    font-size: 0.95rem;
    opacity: 0.7;
    transform: translateY(10px);
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
    visibility: hidden; /* Hide content by default */
    height: 0; /* Collapse space */
    margin: 0;
    max-height: 0;
}

.fact-card:hover {
    background: rgba(232, 244, 240, 0.15);
    border-color: rgba(240, 165, 0, 0.4);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.fact-card:hover .card-content {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    height: auto;
    max-height: 200px; /* Arbitrary max-height for smooth transition */
    margin-top: 1rem;
}

/* --- Journey to the Cascade Section --- */
.map-and-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
}

.journey-info {
    max-width: 600px;
    text-align: left;
}

.journey-info h3 {
    color: var(--color-terracotta);
    font-size: 1.6rem;
    margin-top: 1.5rem;
}

.journey-map {
    position: relative;
    max-width: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 2px solid var(--color-jungle-green);
    background-color: var(--color-dark-shadow);
}
.journey-map img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.map-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(13, 31, 23, 0.7);
    color: var(--color-mist-white);
    padding: 0.8rem;
    font-size: 0.85rem;
    text-align: center;
    margin: 0;
}

/* --- Mist Effect Image Gallery --- */
.mist-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    background-color: var(--color-jungle-green);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    filter: blur(8px) brightness(0.7); /* Initial mist effect */
    transition: filter 0.5s ease-in-out;
}

.mist-overlay-gallery {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(232, 244, 240, 0.4) 0%, transparent 70%);
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none; /* Allow hover on parent */
}

.gallery-item:hover img {
    filter: blur(0) brightness(1); /* Clear mist on hover */
    transform: scale(1.05); /* Subtle zoom */
}

.gallery-item:hover .mist-overlay-gallery {
    opacity: 0; /* Fade out overlay */
}

.gallery-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(13, 31, 23, 0.7);
    color: var(--color-mist-white);
    padding: 0.8rem;
    font-size: 0.9rem;
    text-align: center;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

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


/* --- Your Monsoon Expedition Section --- */
.expedition-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 1rem;
    text-align: center;
}

.expedition-details .detail-card {
    background: rgba(26, 61, 43, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(26, 61, 43, 0.2);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expedition-details .detail-card h3 {
    color: var(--color-golden-amber);
    font-size: 1.7rem;
    margin-bottom: 0.7em;
}

.expedition-details .detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--color-golden-amber);
}

.final-cta {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    color: var(--color-golden-amber);
    text-align: center;
    margin-top: 4rem;
    padding: 1rem;
    background-color: rgba(13, 31, 23, 0.5);
    border-radius: 10px;
    display: inline-block;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* --- Guardians & Guides Section --- */
.contact-info {
    margin-top: 2rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.contact-info li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.contact-info a {
    color: var(--color-golden-amber);
    font-weight: 700;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.contact-info a:hover {
    color: var(--color-terracotta);
    text-decoration: underline;
}

/* --- Footer --- */
.site-footer {
    background-color: var(--color-jungle-green);
    color: rgba(232, 244, 240, 0.7);
    text-align: center;
    padding: 2.5rem 1rem;
    font-size: 0.9rem;
    border-top: 3px solid var(--color-terracotta);
    position: relative;
    z-index: 2;
}

.site-footer p:last-child {
    margin-bottom: 0;
    margin-top: 1rem;
    font-style: italic;
    font-family: var(--font-heading);
}

/* --- Responsive Design (Mobile-first approach) --- */
@media (max-width: 768px) {
    .site-header {
        height: auto;
        padding: 1rem 1rem;
        flex-wrap: wrap;
    }

    .main-nav {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .brand-logo {
        margin-bottom: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
        margin-left: 0;
        margin-bottom: 1rem;
    }
    .nav-links li {
        margin-bottom: 0.5rem;
    }

    .soundscape-btn {
        margin-left: 0;
    }

    .hero-content {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    h1 {
        font-size: clamp(2rem, 10vw, 4rem);
    }
    .tagline {
        font-size: clamp(1rem, 4vw, 1.8rem);
    }

    .section-content {
        padding: 4rem 0;
    }
    h2 {
        font-size: clamp(1.8rem, 7vw, 3rem);
        margin-bottom: 1em;
    }

    /* Adjust diagonal cuts for smaller screens */
    .section-diagonal {
        clip-path: polygon(0 0, 100% 3%, 100% 100%, 0 97%);
        margin-bottom: -3vw;
        padding-bottom: 7rem;
    }
    .section-diagonal-reverse {
        clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
        margin-top: -3vw;
        padding-top: 7rem;
    }

    .monsoon-chronicle {
        width: 6px;
        top: 0; /* Align with top of viewport for full height */
        height: 100vh;
    }

    .fact-cards-grid,
    .mist-gallery,
    .expedition-details {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
        gap: 1.5rem;
    }

    .journey-info {
        text-align: center;
        padding: 0 1rem;
    }

    .map-and-info {
        flex-direction: column;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .main-nav {
        gap: 1rem;
    }
    .nav-links {
        gap: 1.5rem;
    }

    .monsoon-chronicle {
        width: 7px;
    }
}

/* Ensure body padding for progress bar on larger screens */
@media (min-width: 1025px) {
    body {
        padding-right: 8px; /* Width of the progress bar */
    }
}