
    :root {
        --bg-color: rgba(252, 246, 240, 0.4);
        --text-dark: #3D2F29;
        --text-medium: #4B3931;
        --accent-color: #C8B1A2;
        --accent-dark: #152D36;
        --accent-light: #F7EDD1;
        --font-body: 'Lora', serif;
        --font-heading: 'Cinzel', serif;
    }

    /* --- Base & Reset --- */
    *, *::before, *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        background-color: var(--bg-color);
        font-family: var(--font-body);
        color: var(--text-dark);
        line-height: 1.8;
        font-size: 1.1rem;
    }

    /* --- YOUR ORIGINAL NAVBAR STYLES (UNCHANGED) --- */
    nav {
        display: flex;
        padding: 0.5rem 2rem;
        justify-content: space-between;
        align-items: center;
        position: sticky;
        top: 0;
        background-color: #152D36;
        z-index: 1000; /* Lowered z-index slightly to allow progress bar to be behind mobile menu */
        box-shadow: 0 2px 10px rgba(21, 45, 54, 0.3);
    }

    nav img {
        width: 80px;
        border: 2px solid #F7E9CE;
        border-radius: 100px;
    }

    .nav-links {
        flex: 1;
        text-align: right;
    }

    .nav-links ul li {
        list-style: none;
        display: inline-block;
        padding: 8px 35px;
        position: relative;
        cursor: pointer;
        border-radius: 10px;
    }

    .nav-links ul li:hover {
        background: none;
        transform: scale(1.05);
    }

    .nav-links ul li a.active:not([href="index.html"]) {
        color: #BC9A7B !important;
    }

    .nav-links ul li a {
        color: #F7E9CE;
        text-decoration: none;
        font-size: 17px;
        letter-spacing: 0.15rem;
        transition: color 0.3s ease;
    }

    .nav-links ul li::after {
        content: '';
        width: 0%;
        height: 2px;
        background: #BC9A7B;
        display: block;
        margin: auto;
        transition: 0.5s;
    }

    .nav-links ul li:hover::after {
        width: 100%;
    }

    .nav-links ul li:hover a {
        color: #BC9A7B;
    }

    nav .fa-solid {
        display: none;
        text-decoration: none;
    }

    nav .nav-links a {
        text-decoration: none;
    }

    @media(max-width: 1023.9px) {
        .nav-links ul li {
            display: block;
            padding: 10px 0;
            font-size: 16px;
        }

        .nav-links {
            position: fixed; /* Changed to fixed to stay in viewport */
            padding-top: 20px;
            padding-left: 20px;
            background: #152D36;
            height: 100vh;
            width: 200px;
            top: 0;
            right: -300px;
            text-align: left;
            z-index: 2000; /* Higher z-index to be on top */
            transition: right 0.5s ease-in-out; /* Adjusted transition */
            border-left: 3px solid #BC9A7B;
        }
        nav .fa-solid {
            padding: 0;
            display: block;
            color: #F7E9CE;
            margin-right: 15px;
            font-size: 30px;
            cursor: pointer;
        }

        .nav-links ul {
            display: flex;
            flex-direction: column;
            padding: 0;
            margin: 0;
            align-items: flex-start;
            gap: 30px;
        }

        .nav-links ul li {
            padding: 15px 5px;
            font-size: 14px;
            transition: all 0.3s;
            border-radius: 10px;
        }

        .nav-links ul li:hover {
            background: rgba(188, 154, 123, 0.2);
            transform: scale(1.05);
        }

        nav {
            height: 83px;
        }

        nav img {
            width: 75px;
            height: 75px;
            object-fit: cover;
            border-radius: 50%;
            margin-left: 10px;
        }

        .nav-links i.fa-xmark {
            font-size: 30px;
            margin: 5px;
            margin-bottom: 40px;
            margin-top: 0px;
            color: #F7E9CE;
            margin-left: -5px;
        }
    }

    /* --- PROGRESS BAR STYLES (INTEGRATED INTO NAV) --- */
    .retreat-progress-bar-container {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: transparent;
    }
    
    .retreat-progress-bar {
        width: 0%;
        height: 100%;
        background-color: var(--accent-color);
        transition: width 0.1s linear;
    }
    
  
    /* --- NEW STYLES for Section 1 & 1.5 --- */

/* Simpler invitation grid */
.invitation-grid {
display: grid;
grid-template-columns: 1.5fr 1fr;
gap: 2rem;
margin-top: 3rem;
}

.invitation-image-container {
grid-column: 1 / 2;
aspect-ratio: 4 / 3;
border-radius: 16px;
overflow: hidden;
box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.invitation-image-container img {
width: 100%;
height: 100%;
object-fit: cover;
}

.invitation-text-top {
grid-column: 2 / 3;
}

.invitation-text-bottom {
grid-column: 1 / 3; /* Spans full width below the grid */
margin-top: 2rem;
}


/* --- BENTO GRID CONTAINER & ITEM STYLES --- */
.experience-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

/* UPDATED --- This class now only styles the image container */
.experience-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    /* We remove position: relative, as the text is no longer inside */
}

.experience-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* --- GENERAL IMAGE HOVER ZOOM EFFECT --- */

/* Step 1: Add this to the image containers to hide the overflow */
.collage-item,
.experience-item,
.card-image-container {
    overflow: hidden; 
}

/* Step 2: Add this to give all relevant images a smooth transition */
.collage-item img,
.experience-item img,
.card-image-container img {
    transition: transform 0.4s ease-out;
}

/* Step 3: This is the actual zoom effect on hover */
.collage-item:hover img,
.experience-item:hover img,
.card-image-container:hover img {
    transform: scale(1.08);
}

/* NEW --- Styling for the text tag below the image */
.experience-tag {
    text-align: center;
    font-weight: 600; /* Slightly less bold for a cleaner look */
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.75rem; /* Space between image and tag */
    padding: 0;
}

/* --- DESKTOP LAYOUT (Staggered 4-Column Grid) --- */
@media (min-width: 769px) {
    .experience-bento-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: minmax(150px, auto);
        gap: 1.5rem;
        /* Add a gap for the tags as well */
        row-gap: 2.5rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* --- Placing each CARD on the desktop grid --- */

    /* ROW 1 */
    .item-1 { grid-column: 1 / 2; grid-row: 1 / 2; }
    .item-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
    .item-5-wide { grid-column: 3 / 5; grid-row: 1 / 2; }

    /* ROW 2 */
    .item-6-wide { grid-column: 1 / 3; grid-row: 2 / 3; }
    .item-3 { grid-column: 3 / 4; grid-row: 2 / 3; }
    .item-4 { grid-column: 4 / 5; grid-row: 2 / 3; }
}

/* --- MOBILE LAYOUT (Two separate blocks) --- */
@media (max-width: 768px) {
    .experience-bento-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
            /* Add a row gap for the tags on mobile too */
        row-gap: 1.5rem;
    }

    .item-5-wide, .item-6-wide {
        grid-column: span 2;
    }
    
    /* Add extra space between the two logical blocks */
    .item-6-wide {
        margin-top: 1rem;
    }
}






.retreat-article-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.retreat-article-section {
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.retreat-article-section.visible {
    opacity: 1;
    transform: translateY(0);
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--text-medium);
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 { font-size: 3.5rem; text-align: center; margin-bottom: 2rem; }
h2 { font-size: 2.5rem; border-bottom: 1px solid #e0d9cf; padding-bottom: 1rem; margin-top: 3rem; margin-bottom: 2rem; }
h3 { font-size: 1.5rem; }

p { margin-bottom: 1.5rem; }



/* ---2nd section NEW TRANSFORMATION SECTION LAYOUT --- */ 
        .transformation-layout {
            display: grid;
            grid-template-columns: 0.75fr 1.5fr; /* Left and Right columns */
            gap: 4rem;
            align-items: start; /* Align to the top */
        }

        .transformation-left-col {
            /* This column will be sticky on desktop later */
            position: sticky;
            top: 120px; /* Stick below the nav bar */
        }
        
        .transformation-left-col p {
            max-width: 50ch; /* Optimal reading width */
            font-size: 1.15rem;
            color: var(--text-medium);
        }

        .image-collage {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-top: 2.5rem;
        }

        .collage-item {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-light);
            background-color: var(--accent-light); /* Placeholder bg */
        }
        
        .collage-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .collage-portrait {
            grid-column: 1 / 2;
            grid-row: 1 / 3; /* Span two rows */
            aspect-ratio: 2 / 3;
        }

        .collage-landscape-1 {
            grid-column: 2 / 3;
            grid-row: 1 / 2; /* First row */
            aspect-ratio: 4 / 3;
        }

        .collage-landscape-2 {
            grid-column: 2 / 3;
            grid-row: 2 / 3; /* Second row */
            aspect-ratio: 4 / 3;
        }
        
        /* The right column will hold the scrolling cards later */
        .transformation-right-col {
             min-height: 200vh; /* Just to demonstrate scrolling for now */
        }


        /* --- Responsive Styles --- */
        @media (max-width: 992px) {
            .transformation-layout {
                grid-template-columns: 1fr; /* Stack the columns */
                gap: 3rem;
            }
            .transformation-left-col {
                position: static; /* Unstick the left column */
                text-align: center;
            }
            .transformation-left-col p {
                margin-left: auto;
                margin-right: auto;
            }
        }


        /* --- RIGHT COLUMN: STICKY CARDS --- */

/* --- RIGHT COLUMN: REVEAL ON SCROLL CARDS --- */

.practice-card {
    /* Normal scrolling layout */
    margin-bottom: 4rem; 
    
    /* Appearance */
    background-color: var(--accent-color);
    color: var(--bg-color);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    
    /* Animation starting state */
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* The state when the card becomes visible */
.practice-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* --- DESKTOP: Internal Card Layout --- */
@media (min-width: 993px) {
    .practice-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        align-items: center;
    }

    /* Even cards have image on the left */
    .practice-cards-wrapper .practice-card:nth-of-type(even) .card-image-container {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }
     .practice-cards-wrapper .practice-card:nth-of-type(even) .card-text-content {
        grid-column: 2 / 3;
    }
}

/* --- Card Content Styling --- */
.card-image-container {
    aspect-ratio: 4 / 5; /* CORRECTED: Now using landscape images */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}
.card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-out;
}
.card-image-container:hover img {
    transform: scale(1.08);
}
.card-intro-text {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    opacity: 0.8;
    text-transform: uppercase;
    text-align: left;
}
.card-text-content h3 {
    color: white;
    font-size: 2.2rem;
}
.card-text-content p {
    color: var(--accent-light);
    text-align: left;
}


/* --- MOBILE: Internal Card Layout --- */
@media (max-width: 992px) {
    .practice-card {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem;
    }

    /* Even cards have image on top */
    .practice-cards-wrapper .practice-card:nth-of-type(even) .card-image-container {
        order: -1;
    }
}




























.retreat-hero-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    margin: 2rem 0 3rem 0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.retreat-hero-image img { width: 100%; height: 100%; object-fit: cover; }

.retreat-tags {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 0.9rem;
    color: var(--accent-dark);
}
.retreat-tags span { display: inline-block; margin-right: 0.75rem; }



.retreat-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin: 3rem 0;
}
.retreat-column-image { aspect-ratio: 4/3; border-radius: 12px; overflow: hidden; }
.retreat-column-image img { width: 100%; height: 100%; object-fit: cover; }



/* --- NEW MASONRY GALLERY FOR PUSHKAR SECTION --- */

.pushkar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.image-gallery-container {
    /* This creates the 2-column masonry effect */
    column-count: 2;
    column-gap: 1.5rem;
}

.image-gallery-container .retreat-column-image {
    /* This prevents images from breaking across columns */
    break-inside: avoid;
    margin-bottom: 1.5rem; /* The vertical gap between images */
}

/* --- Responsive styles for the masonry gallery --- */
@media (max-width: 768px) {
    .pushkar-grid {
        grid-template-columns: 1fr; /* Stack on mobile */
    }
}











.retreat-cta-button {
    display: inline-block;
    background-color: var(--text-medium);
    color: var(--bg-color);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
}
.retreat-cta-button:hover {
    background-color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.retreat-enroll-card {
    background-color: #fff;
    border: 1px solid #e0d9cf;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}
.retreat-enroll-card .retreat-cta-button { width: 100%; }
.retreat-price { font-size: 2.5rem; font-weight: bold; color: var(--text-medium); margin-bottom: 0.5rem; }
.retreat-inclusions { list-style: '✓'; padding-left: 1.5rem; margin: 2rem 0; text-align: left; }
.retreat-faq-item { border-top: 1px solid #e0d9cf; padding: 1rem 0; text-align: left; }
.retreat-faq-item summary { font-weight: bold; cursor: pointer; }
.retreat-faq-item p { padding: 1rem 0 0 1rem; opacity: 0.8; }

/* Responsive Styles */
@media (max-width: 768px) {
    body { font-size: 1rem; }
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .retreat-two-column { grid-template-columns: 1fr; }

    /* Stacks the new invitation grid vertically on mobile */
    .invitation-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    }
    .invitation-image-container,
    .invitation-text-top,
    .invitation-text-bottom {
    grid-column: 1 / 2; /* All items take up the full width */
    grid-row: auto;
    }
    .invitation-text-bottom {
    align-self: start; /* Resets alignment for mobile */
    }

    /* Creates the 2x2 bento grid for infographics on mobile */
    .experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    }
}

