
: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, body {
    scroll-behavior: smooth !important;
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    height: 100%;
}

body {
    background-color: var(--bg-color);
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.5rem;
}


/* Navigation Bar */
nav {
    display: flex;
    padding: 0.5rem 2rem;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background-color: #152D36;
    z-index: 100000;
    box-shadow: 0 2px 10px rgba(21, 45, 54, 0.3);
    height: 83px;
}

nav img {
    width: 80px;
    height: 80px;
    border: 2px solid #F7E9CE;
    border-radius: 100px;
    transition: width 0.3s ease, height 0.3s ease;
    vertical-align: middle;
}



/* Nav Links */
.nav-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 0;
    right: -300px;
    height: 100vh;
    width: 200px;
    padding: 20px 0 0 20px;
    background: #152D36;
    z-index: 100001;
    border-left: 3px solid #BC9A7B;
    transition: right 0.4s ease;
}

.nav-links.active {
    right: 0;
}

.nav-links ul {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    align-items: flex-start;
    gap: 30px;
}

.nav-links ul li {
    list-style: none;
    padding: 15px 5px;
    font-size: 14px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.nav-links ul li:hover {
    background: rgba(188, 154, 123, 0.2);
    transform: scale(1.05);
}

.nav-links ul li a {
    color: #F7E9CE;
    text-decoration: none;
    font-family: 'Lora', serif;
    font-size: 17px;
    letter-spacing: 0.25rem;
    transition: color 0.3s ease;
}

.nav-links ul li a.active:not([href="index.html"]) {
    color: #BC9A7B !important;
}

.nav-links ul li:hover a {
    color: #BC9A7B;
}

.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%;
}

/* Hamburger icon */
nav .fa-solid {
    display: none;
    color: #F7E9CE;
    font-size: 30px;
    cursor: pointer;
    margin-right: 15px;
}

/* Close icon inside menu */
.nav-links i.fa-xmark {
    font-size: 30px;
    color: #F7E9CE;
    margin-left: -5px;
    margin-bottom: 40px;
    cursor: pointer;
}

/* Focus styles */
.nav-links ul li a:focus {
    outline: 2px solid #BC9A7B;
    outline-offset: 2px;
}

/* Desktop styles */
@media(min-width: 1024px) {
    .nav-links {
        position: static;
        height: auto;
        width: auto;
        background: none;
        padding: 0;
        border: none;
        display: flex !important;
        align-items: center;
        justify-content: flex-end;
        transition: none;
    }

    .nav-links ul {
        flex-direction: row;
    }

    .nav-links ul li {
        display: inline-block;
        padding: 8px 20px;
        font-size: 17px;
    }

    nav .fa-solid {
        display: none;
    }
}

/* Mobile styles */
@media(max-width: 1023.9px) {
    nav {
        height: 83px;
        padding: 0.5rem 0;
    }

    nav img {
        width: 75px;
        height: 75px;
        object-fit: cover;
        border-radius: 50%;
        margin-left: 10px;
        transition: width 0.3s ease, height 0.3s ease;
    }

    nav .fa-solid {
        display: block;
    }

    .nav-links ul li {
        font-size: 14px;
    }
}

/* 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; 
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 styles the image container */
.experience-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.experience-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* --- GENERAL IMAGE HOVER ZOOM EFFECT --- */

.collage-item,
.experience-item,
.card-image-container {
    overflow: hidden; 
}

.collage-item img,
.experience-item img,
.card-image-container img {
    transition: transform 0.4s ease-out;
}

/* 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;
        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; 
}


/* --- 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: REVEAL ON SCROLL CARDS --- */

.practice-card {
    /* Normal scrolling layout */
    margin-bottom: 4rem; 
    
    /* Appearance */
    background-color: var(--accent-dark);
    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;
    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-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 {
    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 */
    }
}

/* --- UPGRADED CSS FOR PUSHKAR IMAGE CAROUSEL --- */

.carousel-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.carousel-slides {
    display: flex;
    height: 100%;
    /* The transition will be managed by JS now for the infinite loop */
}

.carousel-slide {
    flex: 0 0 100%;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* IMPROVED Styling for Prev/Next Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(21, 45, 54, 0.6); /* More opaque */
    backdrop-filter: blur(3px); /* Frosted glass effect */
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2); /* Subtle border */
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    width: 44px; /* Larger */
    height: 44px; /* Larger */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

@media (hover: hover) {
    .carousel-btn:hover {
        background-color: rgba(21, 45, 54, 0.9);
        transform: translateY(-50%) scale(1.05);
    }
}

.carousel-prev {
    left: 1rem;
}

.carousel-next {
    right: 1rem;
}

/* Styling for Indicator Dots (Unchanged) */
.carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-dot.active-dot {
    background-color: white;
}

/* --- NEW SECTION 5: SANCTUARY --- */

.ashram-section {
    padding: 3rem 0;
}

.ashram-container {
    max-width: 1400px;
    margin: 0 auto;
}

.ashram-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

/* --- Single Column Layout --- */
.ashram-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* --- Bento Grid for Images (UPDATED) --- */
.ashram-image-collage {
    display: grid;
    /* UPDATED: Use fractional units for responsive columns that fill the space */
    grid-template-columns: 1fr 0.9fr; 
    grid-template-rows: auto auto;
    gap: 1rem; /* Increased gap for better spacing */
    align-items: center;
    margin-bottom: 3rem;
    /* REMOVED: justify-content and align-items which centered the small grid */
}

.ashram-collage-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ashram-collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Portrait image - (UPDATED) */
.ashram-portrait {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    aspect-ratio: 4 / 5;
    /* UPDATED: Removed fixed width, now fills its column */
    width: 100%; 
}

/* Landscape images - (UPDATED) */
.ashram-landscape {
    aspect-ratio: 4 / 3;
    /* UPDATED: Removed fixed width, now fills its column */
    width: 100%; 
    vertical-align: middle;
}
    
.ashram-landscape-1 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}
    
.ashram-landscape-2 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

/* --- Image Overlay Styles --- */
.ashram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 2rem;
    opacity: 1;
    transition: all 0.3s ease;
}

.ashram-overlay-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0 0 1rem 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.ashram-overlay-text {
    font-size: 1rem;
    line-height: 1.6;
    color: white;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Hover Effects */
.ashram-collage-item:hover .ashram-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.ashram-collage-item:hover .ashram-overlay-text {
    opacity: 1;
}

/* --- Text Content (Below Images) --- */
.ashram-text-content {
    text-align: justify;
    max-width: 800px;
    margin: 0 auto;
}
    
.ashram-text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
}

/* --- Mobile Responsive Styles --- */
@media (max-width: 768px) {
    .ashram-section {
        padding: 1rem 0;
    }
    
    .ashram-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .ashram-layout {
        gap: 2.5rem;
    }
    
    /* Image collage - single column stack on mobile */
    .ashram-image-collage {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
    }

    /* All images stack vertically */
    .ashram-portrait,
    .ashram-landscape-1,
    .ashram-landscape-2 {
        grid-column: 1 / 2;
        grid-row: auto; 
        aspect-ratio: 1 / 1; 
        width: 100%;
        max-width: 500px; 
        margin: 0 auto;
    }
    .ashram-overlay {
        padding: 1.5rem;
    }
    .ashram-overlay-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 479.9px) {
    .ashram-overlay-text {
        font-size: 0.9rem;
    }
}
@media (max-width: 414.9px) {
    .ashram-overlay-text {
        font-size: 0.8rem;
    }
}

/* --- NEW: ASHRAM GURU SECTION (CORRECTED) --- */
.ashram-guru-section {
    padding: 5rem 0; 
}
.ashram-guru-card {
    position: relative; /* This is now the main anchor */
    background: linear-gradient( to bottom right, #152D36, #37525C, #152D36);
    min-height: 400px; 
    padding: 3rem 4rem;
    display: flex;
    align-items: center;
}

.ashram-guru-text-content {
    color: white;
    width: 55%; /* Occupy the left portion of the card */
    position: relative; /* Ensures it has a stacking context */
    z-index: 1; /* Puts the text behind the image */
}

.ashram-guru-subheading {
    font-family: var(--font-heading);
    color: var(--accent-light);
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0 0 1.5rem 0;
    letter-spacing: 2px;
    opacity: 0.8;
}
.ashram-guru-paragraph {
    font-family: var(--font-body);
    font-size: 1.1rem;
    text-align: left;
    line-height: 1.8;
    margin: 0 0 1rem 0;
}

.ashram-guru-image {
    position: absolute;
    top: -60px;      
    right: -40px;     
    height: 115%;     
    width: auto;
    z-index: 2;       
    pointer-events: none; 
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 992px) {        
    .ashram-guru-section {
        padding: 2rem 1rem;
    }
    .ashram-guru-card {
        flex-direction: column;
        padding: 0;
        min-height: 0;
    }
    .ashram-guru-text-content {
        width: 100%;
        text-align: left;
        padding: 1rem 1rem 3rem;
    }
    .ashram-guru-subheading{
        font-size: 2rem;
    }
    .enrollment-section{
        font-size: 1.5rem;
        text-align: left;
    }
    .ashram-guru-image {
        position: relative; /* Resets positioning for mobile */
        top: 0;
        right: 0;
        height: auto;
        width: 100%; /* Adjust size for mobile */
        max-width: 400px;
        margin-top: -50px; /* Pulls image up slightly over the top edge */
    }
}












































/* --- Section 6: Enrollment --- */


/* --- Section 6: Single Column with Horizontal Card --- */


.enrollment-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

/* Use standard h2 styling to match page */
.enrollment-wrapper h2 {
    font-family: var(--font-heading);
    color: var(--text-medium);
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.3;
    font-size: 2.5rem;
    border-bottom: 1px solid #e0d9cf;
    padding-bottom: 1rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

/* --- Horizontal Premium Enrollment Card --- */
.horizontal-enrollment-card {
    background: linear-gradient(145deg, #ffffff 0%, #fefdfb 100%);
    background-clip: padding-box;
    box-shadow: 
        0 20px 60px rgba(61, 47, 41, 0.08),
        0 8px 30px rgba(61, 47, 41, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    margin: 0 auto;
    max-width: 100%;
}





/* --- Left Side Image Section --- */
.card-image-section {
    flex: 0 0 40%;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
    position: relative;
}

.card-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-out;
}

.card-image-section:hover img {
    transform: scale(1.05);
}

/* --- Right Side Content Section --- */
.card-content-section {
    flex: 1;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* --- Card Header --- */
.card-header {
    margin-bottom: 2rem;
}

.enrollment-subheading {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-medium);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.enrollment-description {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 0;
}

/* --- Enhanced Inclusions List - 2 COLUMN GRID --- */
.retreat-inclusions {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem 1rem;
    flex-grow: 1;
}

.retreat-inclusions li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    padding: 0.5rem 0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.retreat-inclusions li:hover {
    background: rgba(200, 177, 162, 0.08);
    transform: translateX(3px);
}

.retreat-enroll-icon {
    width: 16px;
    height: 16px;
    color: var(--accent-dark);
    flex-shrink: 0;
    font-size: 0.9rem;
}

/* --- Premium CTA Button (Base Styles for All Devices) --- */
.retreat-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--accent-dark) 0%, #1a3945 100%);
    color: white;
    padding: 1.1rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    /* Use a slightly faster transition for the active state */
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(21, 45, 54, 0.2);
    align-self: flex-start;
}

.retreat-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.retreat-cta-button i {
    transition: transform 0.2s ease;
}


/* --- ACTIVE (TAP) STATE FOR ALL DEVICES --- */
/* This creates the "press" effect on mobile and click effect on desktop */
.retreat-cta-button:active {
    transform: translateY(-1px) scale(1.02); /* A slightly less dramatic effect for the quick tap */
    box-shadow: 0 10px 30px rgba(21, 45, 54, 0.25);
}

.retreat-cta-button:active i {
    transform: translateX(2px);
}


/* --- HOVER EFFECTS FOR MOUSE-ONLY DEVICES --- */
/* This creates the sustained hover effect ONLY for desktops */
@media (hover: hover) and (pointer: fine) {
    .retreat-cta-button:hover::before {
        left: 100%;
    }

    .retreat-cta-button:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 12px 35px rgba(21, 45, 54, 0.3);
    }

    .retreat-cta-button:hover i {
        transform: translateX(4px);
    }
}

/* --- FAQ Below Card --- */
.faq-below-card {
    margin-top: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.retreat-faq {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    width: 100%;
}

.retreat-faq-item {
    border: none;
    border-bottom: 1px solid rgba(200, 177, 162, 0.2);
    padding: 1.5rem 0;
    text-align: left;
}

.retreat-faq-item:last-child {
    border-bottom: none;
}

.retreat-faq-item summary {
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    padding-right: 2rem;
    list-style: none;
    color: var(--text-medium);
    transition: color 0.3s ease;
}

.retreat-faq-item summary::-webkit-details-marker {
    display: none;
}

.retreat-faq-item summary::after {
    content: '+';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    color: var(--accent-dark);
    transition: all 0.3s ease;
    width: 24px;
    height: 24px;
    border: 2px solid var(--accent-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 300;
}

.retreat-faq-item[open] > summary::after {
    transform: translateY(-50%) rotate(45deg);
    background: var(--accent-dark);
    color: white;
}

.retreat-faq-item[open] > summary {
    color: var(--accent-dark);
}

.retreat-faq-item p {
    padding: 1.5rem 0 0 0;
    margin: 0;
    color: var(--text-dark);
    line-height: 1.7;
    opacity: 0.85;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {

        .enrollment-wrapper {
        margin: 0 -2rem;
    }
    
    .horizontal-enrollment-card {
        flex-direction: column;
        max-width: none;
        margin: 0;
    }
    
    .card-image-section {
        flex: none;
        aspect-ratio: 1 / 1;
        border-radius: 20px 20px 0 0;
        max-height: 280px;
    }
    
    .card-content-section {
        padding: 2rem 1.5rem;
    }
    
    .enrollment-subheading {
        font-size: 1.3rem;
        text-align: left;
    }
    
    .enrollment-description {
        text-align: justify;
    }
    
    /* Mobile: Single column inclusions */
    .retreat-inclusions {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    
    .retreat-inclusions li {
        font-size: 0.95rem;
        padding: 0.6rem 0;
    }
    
    .retreat-enroll-icon {
        width: 18px;
        height: 18px;
        font-size: 1rem;
    }
    
    .retreat-cta-button {
        align-self: center;
        font-size: 1rem;
        padding: 1rem 2rem;
    }
    
    .faq-below-card {
        margin: 3rem 0 0 0;
    }
    
    .retreat-faq {
        padding: 2rem 1.5rem;
    }
}

/* 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;
    }
}



/* Footer Styles */
        .footer {
    font-size: small;
    background: linear-gradient(135deg, #152D36, #37525C);
    color: #F5F5F5;
    padding: 40px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #FFD580;
}

.footer-recent, .footer-faq, .footer-about {
    margin-bottom: 40px;
}

/* Recent Events Styles */
.footer-recent ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.footer-recent li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.event-date {
    display: inline-block;
    width: 50px;
    text-align: center;
    background-color: #FFD580;
    color:  #152D36;
    padding: 2px 5px;
    margin-right: 10px;
    flex-shrink: 0;
}

.footer-recent p {
    margin: 0;
}

.know-more-btn {
    display: inline-block;
    padding: 10px 15px;
    background-color: #FFD580;
    color: #152D36;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.know-more-btn:hover {
    background-color: #FFFFFF;
}

/* FAQ Styles */
.footer-faq details {
    margin-bottom: 15px;
}

.footer-faq summary {
    cursor: pointer;
    transition: color 0.3s;
}

.footer-faq summary:hover {
    color: #FFD580;
}

.footer-faq p {
    margin-top: 10px;
    padding-left: 20px;
}

/* About Section Styles */
.footer-about p {
    margin-bottom: 10px;
}

.icon-foot {
    margin-right: 10px;
    color: #FFD580;
    font-size: 1.1em;
    vertical-align: middle;
}


/* Social Media Styles */
.footer-social {
    text-align: center;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 15px;
}

.social-icon a {
    color: #FFD580;
    font-size: 24px;
    transition: color 0.3s, transform 0.3s;
}

.social-icon a:hover {
    color: #FFF;
    transform: scale(1.2);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 3px solid #FFD580;
    padding-top: 20px;
}

.footer-bottom p {
    margin: 10px;
    color: #FFD580;
}


@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    .know-more-btn{
        transition: none;
    }

}












































