/* ============================================
   Divine Yoga School - Styles
   Sacred, serene, premium Himalayan aesthetic
   ============================================ */

/* CSS Variables */
:root {
    /* Colors */
    --color-primary: #D9822B;
    --color-primary-dark: #B86A1A;
    --color-forest: #2F4A3C;
    --color-forest-light: #3D5D4D;
    --color-teal: #3E6E6A;
    --color-cream: #F7F1E6;
    --color-cream-dark: #EDE4D3;
    --color-charcoal: #26221D;
    --color-gold: #C9A24B;
    --color-gold-light: #D4B76A;
    
    /* Section backgrounds */
    --bg-dawn: linear-gradient(180deg, #F7F1E6 0%, #F0E8D8 100%);
    --bg-warm: linear-gradient(180deg, #F5EDE0 0%, #EDE4D3 100%);
    --bg-afternoon: linear-gradient(180deg, #FAF6EE 0%, #F0E8D8 100%);
    --bg-golden: linear-gradient(135deg, #2F4A3C 0%, #3E6E6A 50%, #2F4A3C 100%);
    --bg-dusk: linear-gradient(180deg, #E8DDD0 0%, #D4C8B8 100%);
    --bg-evening: linear-gradient(180deg, #26221D 0%, #3D3329 100%);
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 6rem;
    --container-max: 1200px;
    
    /* Transitions */
    --transition-smooth: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-breath: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-charcoal);
    background-color: var(--color-cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-charcoal);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
}

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

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(247, 241, 230, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-charcoal);
}

.logo-icon {
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-charcoal);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-smooth);
}

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

.nav-cta {
    display: inline-block;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-charcoal);
    transition: var(--transition-smooth);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 130, 43, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--color-charcoal);
    border-color: var(--color-charcoal);
}

.btn-secondary:hover {
    background: var(--color-charcoal);
    color: var(--color-cream);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, #FFE4C4 0%, #F7F1E6 30%, #E8DDD0 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Mountain layers with CSS 3D transforms */
.mountain-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform-origin: center bottom;
    transition: transform 0.1s ease-out;
}

.mountain-back {
    height: 70%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(47, 74, 60, 0.3) 40%,
        rgba(47, 74, 60, 0.6) 100%
    );
    clip-path: polygon(0% 100%, 15% 60%, 25% 75%, 40% 45%, 55% 70%, 70% 35%, 85% 65%, 100% 50%, 100% 100%);
    filter: blur(2px);
    opacity: 0.6;
}

.mountain-mid {
    height: 55%;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(47, 74, 60, 0.5) 30%,
        rgba(47, 74, 60, 0.8) 100%
    );
    clip-path: polygon(0% 100%, 10% 70%, 30% 50%, 45% 75%, 60% 45%, 75% 70%, 90% 55%, 100% 80%, 100% 100%);
    filter: blur(1px);
    opacity: 0.8;
}

.mountain-front {
    height: 40%;
    background: linear-gradient(180deg,
        rgba(47, 74, 60, 0.7) 0%,
        var(--color-forest) 100%
    );
    clip-path: polygon(0% 100%, 20% 65%, 35% 80%, 50% 55%, 65% 75%, 80% 60%, 100% 85%, 100% 100%);
}

/* Sunrise glow effect */
.sunrise-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 40vh;
    background: radial-gradient(ellipse at center,
        rgba(217, 130, 43, 0.4) 0%,
        rgba(217, 130, 43, 0.2) 30%,
        rgba(201, 162, 75, 0.1) 60%,
        transparent 100%
    );
    border-radius: 50%;
    animation: breathe 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes breathe {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.9; transform: translateX(-50%) scale(1.1); }
}

/* Mist layer */
.mist-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(247, 241, 230, 0.3) 30%,
        rgba(247, 241, 230, 0.7) 100%
    );
    animation: mistDrift 20s ease-in-out infinite;
}

@keyframes mistDrift {
    0%, 100% { transform: translateX(0); opacity: 0.5; }
    50% { transform: translateX(20px); opacity: 0.7; }
}

/* River flow */
.river-flow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8%;
    background: linear-gradient(90deg,
        var(--color-teal) 0%,
        #4A8A85 25%,
        var(--color-teal) 50%,
        #4A8A85 75%,
        var(--color-teal) 100%
    );
    background-size: 200% 100%;
    animation: riverFlow 8s linear infinite;
    opacity: 0.8;
}

@keyframes riverFlow {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

/* Floating Om symbol */
.floating-om {
    position: absolute;
    top: 15%;
    right: 15%;
    font-size: 8rem;
    opacity: 0.08;
    animation: floatOm 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes floatOm {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Particles */
.particles-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleRise 15s linear infinite;
}

@keyframes particleRise {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-10vh) translateX(30px);
        opacity: 0;
    }
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1.2s ease-out;
}

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

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--color-charcoal);
    text-shadow: 0 2px 20px rgba(247, 241, 230, 0.8);
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-style: italic;
    color: var(--color-forest);
    margin-bottom: 1.5rem;
}

.hero-body {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--color-charcoal);
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: var(--color-charcoal);
    opacity: 0.7;
}

.scroll-arrow {
    width: 20px;
    height: 30px;
    border: 2px solid var(--color-charcoal);
    border-radius: 10px;
    margin: 0 auto;
    position: relative;
    opacity: 0.5;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-charcoal);
    border-radius: 2px;
    animation: scrollDot 1.5s ease-in-out infinite;
}

@keyframes scrollDot {
    0%, 100% { opacity: 1; top: 6px; }
    50% { opacity: 0.3; top: 14px; }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ============================================
   Section Styles
   ============================================ */
section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-title {
    margin-bottom: 1.5rem;
    color: var(--color-charcoal);
}

.section-intro {
    font-size: 1.1rem;
    opacity: 0.85;
}

.section-quote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.section-header.light {
    color: var(--color-cream);
}

.section-header.light .section-title,
.section-header.light .section-intro {
    color: var(--color-cream);
}

/* Section backgrounds */
.section-dawn { background: var(--bg-dawn); }
.section-warm { background: var(--bg-warm); }
.section-afternoon { background: var(--bg-afternoon); }
.section-golden { 
    background: var(--bg-golden);
    color: var(--color-cream);
}
.section-dusk { background: var(--bg-dusk); }
.section-evening { 
    background: var(--bg-evening);
    color: var(--color-cream);
}

.text-center {
    text-align: center;
}

/* ============================================
   Philosophy Section
   ============================================ */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.philosophy-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(217, 130, 43, 0.1);
    transition: var(--transition-smooth);
}

.philosophy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.philosophy-card h3 {
    margin-bottom: 0.75rem;
    color: var(--color-forest);
}

/* ============================================
   Courses Section
   ============================================ */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.course-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
}

.course-card.featured {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.course-card.featured::before {
    height: 6px;
}

.course-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.course-card h3 {
    margin-bottom: 0.5rem;
    padding-right: 80px;
}

.course-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.course-details {
    list-style: none;
    margin-bottom: 1.5rem;
}

.course-details li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
}

.course-details li:last-child {
    border-bottom: none;
}

.course-details span {
    font-weight: 600;
    color: var(--color-forest);
}

/* ============================================
   Wellness Section
   ============================================ */
.wellness-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.wellness-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.wellness-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.wellness-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.wellness-content {
    padding: 1.5rem;
}

.wellness-price {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.wellness-meta {
    color: var(--color-forest);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.wellness-schedule {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 1rem;
}

/* ============================================
   Retreats Section
   ============================================ */
.retreat-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.retreat-img {
    aspect-ratio: 1;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    transition: var(--transition-smooth);
}

.retreat-img:hover {
    transform: scale(1.05);
}

/* ============================================
   Facilities Section
   ============================================ */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.facility-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.facility-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.facility-card h3 {
    margin-bottom: 1rem;
    color: var(--color-forest);
}

/* ============================================
   Why Choose Us
   ============================================ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-column {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
}

.why-list {
    list-style: none;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
}

.why-list li:last-child {
    border-bottom: none;
}

.why-icon {
    font-size: 1.25rem;
}

/* ============================================
   Founder Section
   ============================================ */
.founder-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.founder-image {
    aspect-ratio: 3/4;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--color-forest), var(--color-teal));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.founder-placeholder {
    text-align: center;
    color: white;
}

.founder-placeholder span {
    font-size: 6rem;
    display: block;
    margin-bottom: 1rem;
}

.founder-placeholder p {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin: 0;
}

.founder-text h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--color-forest);
}

.founder-title {
    font-style: italic;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonial-carousel {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 2rem;
    text-align: center;
}

.stars {
    color: var(--color-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 4px;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-forest);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

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

.carousel-dot.active {
    background: var(--color-primary);
    transform: scale(1.2);
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.gallery-item {
    aspect-ratio: 4/3;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-cream);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-cream);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(247, 241, 230, 0.5);
}

.form-group select option {
    background: var(--color-forest);
    color: var(--color-cream);
}

.contact-info {
    color: var(--color-cream);
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--color-gold);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.contact-item a {
    color: var(--color-cream);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-item a:hover {
    color: var(--color-gold);
}

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

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition-smooth);
}

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

.map-container {
    border-radius: 12px;
    overflow: hidden;
    margin-top: 1rem;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    text-align: center;
    padding: 4rem 0;
}

.cta-content h2 {
    color: var(--color-cream);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(247, 241, 230, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--color-charcoal);
    color: var(--color-cream);
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-mission {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.7;
    max-width: 400px;
}

.footer-links h4,
.footer-social h4 {
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ============================================
   3D Tilt Effect
   ============================================ */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
    will-change: transform;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .nav-links {
        gap: 1.5rem;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--color-cream);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        transition: var(--transition-smooth);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .course-card.featured {
        transform: none;
    }
    
    .retreat-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .founder-image {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-mission {
        max-width: 100%;
    }
    
    /* Reduce animations on mobile */
    .floating-om,
    .sunrise-glow,
    .mist-layer,
    .particle {
        animation-duration: 20s;
    }
}

@media (max-width: 480px) {
    .courses-grid,
    .wellness-grid,
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-om,
    .sunrise-glow,
    .mist-layer,
    .particle,
    .river-flow {
        animation: none;
    }
}