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

:root {
    --color-sand: #faf7f2;
    --color-terracotta: #c97e5a;
    --color-terracotta-dark: #b26540;
    --color-olive: #7a8b6e;
    --color-olive-light: #9bae8c;
    --color-charcoal: #2c2c2c;
    --color-stone: #6b6b6b;
    --color-white: #ffffff;
    --color-off-white: #fef9f4;
    
    --font-main: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
    
    --border-radius: 12px;
    --border-radius-lg: 24px;
}

body {
    font-family: var(--font-main);
    color: var(--color-charcoal);
    background-color: var(--color-white);
    line-height: 1.6;
    scroll-behavior: smooth;
    font-weight: 400;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
}

/* Typography */
h1, h2, h3, h4, .logo {
    font-family: var(--font-main);
    font-weight: 600;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.25;
    margin-bottom: 1rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

p {
    font-weight: 400;
    line-height: 1.7;
}

.section-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-terracotta);
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
}

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

.section-header h2 {
    margin-bottom: 0;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-nav {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    letter-spacing: 0.3px;
    font-family: var(--font-main);
}

.btn-primary {
    background-color: var(--color-terracotta);
    color: var(--color-white);
    border: 1px solid var(--color-terracotta);
}

.btn-primary:hover {
    background-color: var(--color-terracotta-dark);
    border-color: var(--color-terracotta-dark);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    border-color: var(--color-terracotta);
    color: var(--color-terracotta);
    transform: translateY(-2px);
}

.btn-nav {
    background-color: var(--color-terracotta);
    color: var(--color-white);
    padding: 8px 20px;
}

.btn-nav:hover {
    background-color: var(--color-terracotta-dark);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--color-charcoal);
    letter-spacing: -0.02em;
}

.logo span {
    color: var(--color-terracotta);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--color-charcoal);
    font-weight: 500;
    transition: color 0.2s ease;
    font-size: 0.875rem;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.75rem;
    cursor: pointer;
    color: var(--color-charcoal);
    font-family: var(--font-main);
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        z-index: 1101;
        position: relative;
    }
    
    .nav-container {
        position: relative;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background-color: var(--color-white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-md);
        z-index: 1100;
        border-radius: 0 0 var(--border-radius) var(--border-radius);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        text-align: center;
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 8px 0;
        font-size: 1rem;
    }
    
    /* Fix for the booking button on mobile */
    .btn-nav {
        display: inline-block;
        width: auto;
        min-width: 160px;
        margin-top: 8px;
        text-align: center;
        white-space: nowrap;
    }
}

/* Hero Section - Fixed Background */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    /* Remove background-attachment: fixed and use JavaScript instead */
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 24px;
    /* Change from center to left alignment */
    text-align: left;
    width: 100%;
}
.hero-badge {
    display: inline-block;
    background-color: var(--color-terracotta);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    /* New positioning - move to left */
    align-self: flex-start;
    margin-left: 0;
    margin-right: auto;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-year {
    font-weight: 500;
    opacity: 0.9;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    font-weight: 400;
}

.hero-dates {
    margin-bottom: 2rem;
    font-size: 0.875rem;
    opacity: 0.9;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.hero-dates .separator {
    margin: 0 12px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* All content sections - will scroll over hero */
.intro, .dates-highlight, .retreat-features, .schedule, 
.included, .teachers, .menopause, .accommodation, 
.testimonials, .faq, .getting-there, .booking, 
.newsletter, .terms {
    position: relative;
    z-index: 2;
    background-color: var(--color-white);
}

/* Make sections alternate background for visual separation */
.intro, .schedule, .teachers, .testimonials, .newsletter {
    background-color: var(--color-off-white);
}

.dates-highlight, .retreat-features, .included, 
.menopause, .accommodation, .faq, .getting-there, 
.booking, .terms {
    background-color: var(--color-white);
}

/* Special treatment for Menopause section */
.menopause {
    background-color: var(--color-terracotta);
    color: var(--color-white);
}

.menopause .section-tag {
    color: rgba(255,255,255,0.8);
}

/* Intro Section */
.intro {
    padding: 80px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.intro-text p {
    margin-bottom: 1.25rem;
    color: var(--color-stone);
}

.highlight-box {
    background-color: var(--color-sand);
    padding: 20px;
    border-radius: var(--border-radius);
    margin: 24px 0;
    border-left: 4px solid var(--color-terracotta);
}

.highlight-text {
    font-weight: 600;
    color: var(--color-terracotta);
    margin-bottom: 0 !important;
}

.intro-image {
    background-color: #e8e0d5;
    border-radius: var(--border-radius-lg);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    color: var(--color-stone);
    font-style: italic;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intro {
        padding: 60px 0;
    }
}

/* Dates Highlight */
.dates-highlight {
    padding: 60px 0;
}

.dates-card {
    background-color: var(--color-sand);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    text-align: center;
}

.dates-main {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 16px 0;
    color: var(--color-terracotta);
}

.dates-small {
    margin-top: 16px;
    font-size: 0.75rem;
    color: var(--color-stone);
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .dates-card {
        padding: 32px;
    }
    
    .dates-main {
        font-size: 1.25rem;
    }
}

/* Features */
.retreat-features {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    padding: 32px;
    background-color: var(--color-off-white);
    border-radius: var(--border-radius-lg);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-note {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.05);
    font-size: 0.75rem;
    color: var(--color-terracotta);
    font-style: italic;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Schedule */
.schedule {
    padding: 80px 0;
}

.schedule-header {
    text-align: center;
    margin-bottom: 48px;
}

.schedule-grid {
    max-width: 700px;
    margin: 0 auto;
}

.schedule-dates {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.schedule-table {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.schedule-row {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.schedule-row:last-child {
    border-bottom: none;
}

.schedule-time {
    width: 80px;
    font-weight: 600;
    color: var(--color-terracotta);
    font-size: 0.875rem;
}

.schedule-activity {
    flex: 1;
    font-size: 0.875rem;
}

.schedule-note {
    margin-top: 24px;
    font-size: 0.75rem;
    color: var(--color-stone);
    text-align: center;
}

@media (max-width: 768px) {
    .schedule-row {
        flex-direction: column;
        gap: 4px;
    }
    
    .schedule-time {
        width: auto;
    }
}

/* Included */
.included {
    padding: 80px 0;
}

.included-card {
    background-color: var(--color-sand);
    border-radius: var(--border-radius-lg);
    padding: 48px;
}

.included-card h3 {
    text-align: center;
    margin-bottom: 32px;
    font-weight: 600;
}

.included-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    list-style: none;
}

.included-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .included-list {
        grid-template-columns: 1fr;
    }
    
    .included-card {
        padding: 32px;
    }
}

/* Teachers */
.teachers {
    padding: 80px 0;
}

.teachers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.teacher-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

/* Teacher Images - Show full square images without cropping */
.teacher-image {
    background-color: #e8e0d5;
    border-radius: var(--border-radius);
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.teacher-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background-color: #e8e0d5;
}



.teacher-title {
    color: var(--color-terracotta);
    font-weight: 500;
    margin-bottom: 16px;
    font-size: 0.875rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.teacher-card p {
    margin-bottom: 16px;
    color: var(--color-stone);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .teachers-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Menopause Section */
.menopause {
    padding: 80px 0;
}

.menopause-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.menopause .section-tag {
    color: rgba(255,255,255,0.8);
}

.menopause h2 {
    margin-bottom: 24px;
    font-weight: 600;
}

.menopause p {
    margin-bottom: 16px;
    opacity: 0.9;
    font-size: 0.9375rem;
}

/* Accommodation */
.accommodation {
    padding: 80px 0;
}

.accommodation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.accommodation-badge {
    display: inline-block;
    background-color: var(--color-terracotta);
    color: var(--color-white);
    padding: 4px 12px;
    border-radius: 40px;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.price-box {
    margin: 24px 0;
    padding: 20px;
    background-color: var(--color-sand);
    border-radius: var(--border-radius);
    text-align: center;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-terracotta);
    font-family: var(--font-main);
    display: block;
}

.price-note {
    font-size: 0.75rem;
    color: var(--color-stone);
}

.accommodation-image {
    background-color: #e8e0d5;
    border-radius: var(--border-radius-lg);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .accommodation-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background-color: var(--color-white);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.7;
    color: var(--color-charcoal);
    font-size: 0.875rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-terracotta);
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ */
.faq {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    padding: 24px;
    background-color: var(--color-off-white);
    border-radius: var(--border-radius);
}

.faq-item h4 {
    color: var(--color-terracotta);
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 1rem;
}

.faq-item p {
    color: var(--color-stone);
    line-height: 1.6;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Getting There */
.getting-there {
    padding: 60px 0;
}

.getting-there-card {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.getting-there-card h3 {
    margin-bottom: 16px;
    font-weight: 600;
}

.getting-there-card p {
    margin-bottom: 12px;
    color: var(--color-stone);
    font-size: 0.875rem;
}

/* Booking */
.booking {
    padding: 80px 0;
    background-color: var(--color-terracotta);
}

.booking-card {
    text-align: center;
    color: var(--color-white);
    max-width: 600px;
    margin: 0 auto;
}

.booking-card .section-tag {
    color: rgba(255,255,255,0.8);
}

.booking-card h2 {
    margin-bottom: 16px;
    font-weight: 600;
}

.booking-price {
    font-size: 1.125rem;
    margin: 24px 0 8px;
}

.booking-deposit {
    margin-bottom: 32px;
    opacity: 0.9;
    font-size: 0.875rem;
}

.booking-note {
    margin-top: 24px;
    font-size: 0.75rem;
    opacity: 0.8;
}

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

.booking .btn-primary:hover {
    background-color: transparent;
    color: var(--color-white);
}

/* Newsletter */
.newsletter {
    padding: 80px 0;
}

.newsletter-card {
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
}

.newsletter-card h3 {
    margin-bottom: 12px;
    font-weight: 600;
}

.newsletter-card p {
    margin-bottom: 24px;
    color: var(--color-stone);
    font-size: 0.875rem;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid #ddd;
    border-radius: 40px;
    font-family: var(--font-main);
    font-size: 0.875rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-terracotta);
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }
}

/* Terms */
.terms {
    padding: 60px 0;
}

.terms-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 32px;
    background-color: var(--color-sand);
    border-radius: var(--border-radius);
}

.terms-card h4 {
    margin-bottom: 16px;
    font-weight: 600;
}

.terms-card p {
    font-size: 0.6875rem;
    color: var(--color-stone);
    margin-bottom: 12px;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: var(--color-charcoal);
    color: var(--color-white);
    padding: 60px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-info h3 {
    color: var(--color-white);
    margin-bottom: 12px;
    font-weight: 600;
}

.footer-info p {
    opacity: 0.7;
    margin-bottom: 8px;
    font-size: 0.8125rem;
}

.footer-email {
    margin-top: 16px;
    font-size: 0.75rem;
}

.footer-links h4, .footer-social h4 {
    color: var(--color-white);
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.8125rem;
    font-weight: 400;
}

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

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

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
}
/* Page Hero Section */
.page-hero {
    height: 50vh;
    min-height: 400px;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
}

.private-hero {
    background-image: url('../images/private-yoga-hero.jpg');
}

.booking-hero {
    background-image: url('../images/booking-hero.jpg');
}

.contact-hero {
    background-image: url('../images/contact-hero.jpg');
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 24px;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Private Yoga Page */
.private-intro {
    padding: 80px 0;
}

.private-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.private-image {
    background-color: #e8e0d5;
    border-radius: var(--border-radius-lg);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits {
    padding: 80px 0;
    background-color: var(--color-off-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.benefit-card {
    text-align: center;
    padding: 32px;
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pricing {
    padding: 80px 0;
}

.pricing-card {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 48px 0;
}

.pricing-option {
    padding: 32px;
    background-color: var(--color-off-white);
    border-radius: var(--border-radius-lg);
    position: relative;
}

.pricing-option.featured {
    background-color: var(--color-sand);
    border: 2px solid var(--color-terracotta);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-terracotta);
    color: white;
    padding: 4px 12px;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 500;
}

.pricing-option .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-terracotta);
    margin: 16px 0;
}

.pricing-option .original {
    font-size: 1rem;
    text-decoration: line-through;
    color: var(--color-stone);
    margin-left: 8px;
}

.pricing-disclaimer {
    font-size: 0.875rem;
    color: var(--color-stone);
    font-style: italic;
}

.interest-form {
    padding: 80px 0;
    background-color: var(--color-off-white);
}

.form-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-details {
    margin: 32px 0;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}

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

.contact-item h4 {
    margin-bottom: 4px;
}

.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.social-icon {
    color: var(--color-terracotta);
    text-decoration: none;
}

/* Forms */
.contact-form {
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 0.875rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-terracotta);
}

.form-group.checkbox {
    display: flex;
    align-items: center;
}

.form-group.checkbox label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
}

.form-group.checkbox input {
    width: auto;
}

.form-note {
    font-size: 0.75rem;
    color: var(--color-stone);
    margin-top: 16px;
}

.form-success {
    text-align: center;
    padding: 32px;
    background-color: var(--color-sand);
    border-radius: var(--border-radius);
    color: var(--color-terracotta);
}

/* Booking Page */
.booking-page {
    padding: 80px 0;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.booking-summary {
    background-color: var(--color-off-white);
    border-radius: var(--border-radius-lg);
    padding: 32px;
}

.summary-details {
    margin: 24px 0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.summary-label {
    font-weight: 500;
}

.summary-value {
    color: var(--color-terracotta);
}

.whats-included-summary {
    margin-top: 24px;
}

.whats-included-summary ul {
    list-style: none;
    margin-top: 16px;
}

.whats-included-summary li {
    padding: 6px 0;
    font-size: 0.875rem;
}

.booking-payment {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    border: 1px solid rgba(0,0,0,0.1);
}

.payment-options {
    margin: 24px 0;
}

.payment-option {
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.payment-option.selected {
    border-color: var(--color-terracotta);
    background-color: var(--color-off-white);
}

.payment-radio {
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-radio label {
    font-weight: 600;
    cursor: pointer;
}

.payment-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-terracotta);
    margin: 12px 0 8px 24px;
}

.payment-note {
    font-size: 0.75rem;
    color: var(--color-stone);
    margin-left: 24px;
}

.guest-form {
    margin-top: 32px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: var(--color-white);
    margin: 10% auto;
    padding: 32px;
    width: 90%;
    max-width: 600px;
    border-radius: var(--border-radius-lg);
    position: relative;
}

.close {
    position: absolute;
    right: 24px;
    top: 16px;
    font-size: 1.5rem;
    cursor: pointer;
}

.terms-text {
    max-height: 400px;
    overflow-y: auto;
    margin-top: 20px;
}

.terms-text p {
    margin-bottom: 12px;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .private-grid,
    .benefits-grid,
    .pricing-grid,
    .contact-grid,
    .booking-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        gap: 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .pricing-option .price {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}
/* Image styles for all pages */
.intro-img,
.teacher-img,
.accommodation-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
}

.intro-image,
.teacher-image,
.accommodation-image {
    overflow: hidden;
}

.intro-image,
.accommodation-image {
    background-color: #e8e0d5;
    border-radius: var(--border-radius-lg);
    min-height: 400px;
}



/* Hero background image */
.hero {
    background-image: url('../images/hero-retreat-bg.jpg');
}

/* ============================================ */
/* BLOG PAGE STYLES
/* ============================================ */

.blog-hero {
    background-image: url('../images/blog-hero.jpg');
}

.blog-grid-section {
    padding: 80px 0;
}

.blog-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 40px;
    font-family: var(--font-main);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--color-stone);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--color-terracotta);
    border-color: var(--color-terracotta);
    color: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.blog-card {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.blog-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.blog-content {
    padding: 24px;
}

.blog-category {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-terracotta);
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-date {
    font-size: 0.75rem;
    color: var(--color-stone);
    margin-bottom: 12px;
}

.read-more {
    display: inline-block;
    margin-top: 16px;
    color: var(--color-terracotta);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: gap 0.2s;
}

.read-more:hover {
    gap: 4px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 60px;
}

.page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    color: var(--color-charcoal);
    transition: all 0.2s;
}

.page.active,
.page:hover {
    background-color: var(--color-terracotta);
    color: white;
}

.next {
    width: auto;
    padding: 0 16px;
    border-radius: 40px;
}

.blog-newsletter {
    background-color: var(--color-off-white);
}

/* ============================================ */
/* GALLERY PAGE STYLES
/* ============================================ */

.gallery-hero {
    background-image: url('../images/gallery-hero.jpg');
}

.gallery-section {
    padding: 80px 0;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

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

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1 / 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
}

.gallery-overlay p {
    font-size: 0.75rem;
    opacity: 0.8;
    margin: 0;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    cursor: pointer;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--border-radius);
}

.lightbox-content p {
    text-align: center;
    color: white;
    margin-top: 16px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

/* Instagram Feed Section */
.instagram-feed {
    padding: 80px 0;
    background-color: var(--color-off-white);
    text-align: center;
}

.instagram-header h2 {
    color: var(--color-terracotta);
}

/* ============================================ */
/* RESPONSIVE: BLOG & GALLERY
/* ============================================ */

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-filter,
    .gallery-filter {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 6px 14px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================ */
/* SINGLE BLOG POST PAGE STYLES
/* ============================================ */

.post-page {
    padding: 120px 0 60px;
    background-color: var(--color-off-white);
}

.post-nav {
    margin-bottom: 32px;
}

.back-link {
    color: var(--color-terracotta);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: gap 0.2s;
}

.back-link:hover {
    text-decoration: underline;
}

.post-card {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-sm);
    max-width: 900px;
    margin: 0 auto;
}

.post-header {
    text-align: center;
    margin-bottom: 32px;
}

.post-category {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-terracotta);
    font-weight: 600;
    margin-bottom: 16px;
}

.post-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.post-meta {
    font-size: 0.875rem;
    color: var(--color-stone);
}

.post-meta span {
    margin: 0 8px;
}

.post-meta span:first-child {
    margin-left: 0;
}

.post-image {
    margin: 32px 0;
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

.post-body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-charcoal);
}

.post-body h2 {
    font-size: 1.75rem;
    margin: 40px 0 20px;
    font-weight: 600;
}

.post-body h3 {
    font-size: 1.25rem;
    margin: 32px 0 16px;
    font-weight: 600;
    color: var(--color-terracotta);
}

.post-body p {
    margin-bottom: 20px;
}

.post-body ul, 
.post-body ol {
    margin: 20px 0;
    padding-left: 24px;
}

.post-body li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin: 24px 0;
}

.post-body blockquote {
    border-left: 4px solid var(--color-terracotta);
    margin: 32px 0;
    padding: 16px 24px;
    background-color: var(--color-off-white);
    font-style: italic;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.post-footer {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.post-tags {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.tag-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-stone);
}

.tag {
    font-size: 0.7rem;
    padding: 4px 12px;
    background-color: var(--color-off-white);
    color: var(--color-terracotta);
    text-decoration: none;
    border-radius: 40px;
    transition: background-color 0.2s;
}

.tag:hover {
    background-color: var(--color-terracotta);
    color: white;
}

/* Author Bio */
.author-bio {
    display: flex;
    gap: 24px;
    margin-top: 48px;
    padding: 32px;
    background-color: var(--color-off-white);
    border-radius: var(--border-radius);
}

.author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.author-info h4 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--color-stone);
    margin-bottom: 12px;
    line-height: 1.6;
}

.author-link {
    font-size: 0.75rem;
    color: var(--color-terracotta);
    text-decoration: none;
    font-weight: 500;
}

/* Related Posts */
.related-posts {
    margin-top: 48px;
}

.related-posts h3 {
    font-size: 1.25rem;
    margin-bottom: 24px;
    font-weight: 600;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.related-card {
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
}

.related-card:hover {
    transform: translateY(-4px);
}

.related-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: 12px;
}

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

.related-card h4 {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
    .post-page {
        padding: 100px 0 40px;
    }
    
    .post-card {
        padding: 24px;
    }
    
    .post-title {
        font-size: 1.75rem;
    }
    
    .post-body h2 {
        font-size: 1.5rem;
    }
    
    .author-bio {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* Image captions for blog posts */
.image-caption {
    margin: 24px 0;
    text-align: center;
}

.inline-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin-bottom: 8px;
}

.caption {
    font-size: 0.7rem;
    color: var(--color-stone);
    font-style: italic;
    margin-top: 4px;
}

/* Private Yoga Page Image */
.private-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
}

.private-image {
    background-color: #e8e0d5;
    border-radius: var(--border-radius-lg);
    min-height: 400px;
    overflow: hidden;
}

/* Gallery Hero - Move text down */
.gallery-hero .page-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 100px;
    min-height: 100%;
}

/* For mobile */
@media (max-width: 768px) {
    .gallery-hero .page-hero-content {
        padding-bottom: 60px;
    }
}

/* Success & Cancel Pages */
.success-page,
.cancel-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.success-content,
.cancel-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #4CAF50;
    color: white;
    font-size: 48px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 30px;
}

.cancel-icon {
    width: 80px;
    height: 80px;
    background: #f44336;
    color: white;
    font-size: 48px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 30px;
}

.success-details {
    background: #f9f9f9;
    border-radius: 16px;
    padding: 30px;
    margin: 30px 0;
    text-align: left;
}

.success-details ul {
    list-style: none;
    padding: 0;
}

.success-details li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.success-actions,
.cancel-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.btn-secondary {
    background: transparent;
    color: #7B2C45;
    border: 2px solid #7B2C45;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #7B2C45;
    color: white;
}

.error-message {
    background: #fee;
    color: #c00;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Room Image Styles */
.room-image-container {
    margin: 20px 0;
    text-align: center;
}

.room-preview-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.image-caption {
    font-size: 12px;
    color: #666;
    margin-top: 8px;
    font-style: italic;
}

/* Make sure the booking summary handles images well */
.booking-summary {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 16px;
    position: sticky;
    top: 100px;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .room-preview-img {
        max-height: 200px;
        object-fit: cover;
    }
}

.section-image {
    text-align: center;
    margin: 40px 0;
}

.section-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px; /* optional for nice rounded corners */
}

@media (max-width: 768px) {
    .accommodation-info .btn-primary {
        display: block;
        margin: 20px auto 0;
        text-align: center;
    }
}
   /* NEW TESTIMONIAL SECTION STYLE MADE IN CHINA*/   
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background: #fff;
  line-height: 1.5;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  color: #b47c5e;
  background: #f0e5de;
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 18px;
}

.section-header h2 {
  font-size: 2.1rem;
  font-weight: 600;
  color: #2c2a29;
  letter-spacing: -0.3px;
}

.testimonials {
  padding: 90px 20px;
  background: #f7f2eb;
}

.testimonials-layout-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.testimonials-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.testimonial-card {
  background: #ffffff;
  padding: 28px 30px;
  border-radius: 28px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.02);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 28px -12px rgba(0, 0, 0, 0.12);
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.65;
  color: #2a2827;
  font-weight: 450;
  margin: 0;
  quotes: "“" "”" "‘" "’";
}

.testimonial-text::before {
  content: "“";
  font-size: 1.4rem;
  color: #b47c5e;
  font-weight: 500;
  margin-right: 2px;
}

.testimonial-text::after {
  content: "”";
  font-size: 1.4rem;
  color: #b47c5e;
  font-weight: 500;
  vertical-align: top;
  margin-left: 2px;
}

.testimonial-author {
  margin-top: 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #7a5c4d;
  letter-spacing: 0.3px;
  border-left: 3px solid #e4cfc1;
  padding-left: 14px;
}

.visual-gallery {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.gallery-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.gallery-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  display: block;
  background-color: #e4d5ca;
  background-size: cover;
  background-position: center;
}

.gallery-img:hover {
  transform: scale(1.01);
  box-shadow: 0 20px 28px -12px rgba(0, 0, 0, 0.25);
}

.image-caption {
  text-align: center;
  font-size: 0.75rem;
  color: #b48c72;
  margin-top: 12px;
  letter-spacing: 0.5px;
  font-weight: 450;
}

@media (max-width: 900px) {
  .testimonials-layout-new {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .visual-gallery {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }

  .gallery-row {
    gap: 18px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .desktop-layout {
    display: none;
  }

  .mobile-alternating-layout {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .mobile-item {
    width: 100%;
  }

  .mobile-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 24px;
    display: block;
    background-color: #e4d5ca;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.2);
  }

  .testimonial-card {
    margin-bottom: 0;
    padding: 22px;
    border-radius: 24px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .testimonials {
    padding: 60px 16px;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }
}

@media (min-width: 769px) {
  .mobile-alternating-layout {
    display: none;
  }
}
/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
}

.lightbox-close:hover {
  color: #b47c5e;
}

.gallery-img,
.mobile-image {
  cursor: pointer;
  transition: opacity 0.2s;
}

.gallery-img:hover,
.mobile-image:hover {
  opacity: 0.9;
}

.contact-page-section {
    padding: 80px 0;
    background: #f8f5f1;
}

.contact-form-wrapper {
    max-width: 820px;
    margin: 0 auto;
}

.contact-form-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.contact-form-container h2 {
    margin-bottom: 24px;
    text-align: center;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #3e4857;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    font-family: 'Manrope', sans-serif;
    border: 1px solid #d8dee8;
    border-radius: 12px;
    background: #fff;
    color: #3e4857;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c98b7a;
    box-shadow: 0 0 0 3px rgba(201, 139, 122, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form .btn-primary {
    display: inline-block;
    margin-top: 10px;
}

.form-note {
    margin-top: 16px;
    font-size: 14px;
    color: #6b7280;
}

.form-success {
    text-align: center;
    padding: 24px;
    border-radius: 16px;
    background: #eef8f1;
    color: #1f6b3b;
    font-weight: 600;
}

@media (max-width: 768px) {
    .contact-page-section {
        padding: 50px 0;
    }

    .contact-form-container {
        padding: 24px;
        border-radius: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form .btn-primary {
        width: 100%;
        text-align: center;
    }
}
.footer {
  background: linear-gradient(135deg, var(--offwhite) 0%, #d8cfc7 100%);
  color: var(--black);
  padding: 3.5rem 0 1.5rem;
  text-align: center;
  margin-top: 3rem;
}

.footer-brand h3 {
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
  color: var(--black);
}

.footer-brand p {
  margin: 0.2rem 0;
  color: rgba(85, 82, 99, 0.9);
}

.footer-email {
  margin-top: 0.8rem;
  font-weight: 500;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  text-decoration: none;
  color: white;
  background: rgba(85, 82, 99, 0.16);
  border: 1px solid rgba(85, 82, 99, 0.18);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  font-size: 1.25rem;
  transition: all 0.25s ease;
}

.social-icon:hover,
.social-icon:focus-visible {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
  outline: none;
}

/* branded hover states */
.social-facebook:hover,
.social-facebook:focus-visible {
  background: linear-gradient(135deg, #1877f2, #3b5998);
}

.social-instagram:hover,
.social-instagram:focus-visible {
  background: radial-gradient(circle at 30% 30%, #fdf497 0, #fd5949 45%, #d6249f 70%, #285AEB 100%);
}

.social-tiktok:hover,
.social-tiktok:focus-visible {
  background: linear-gradient(135deg, #010101, #ff0050);
}

.social-youtube:hover,
.social-youtube:focus-visible {
  background: linear-gradient(135deg, #ff0000, #cc0000);
}

.footer-bottom {
  border-top: 1px solid rgba(85, 82, 99, 0.15);
  margin-top: 1.5rem;
  padding-top: 1.25rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(85, 82, 99, 0.8);
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-brand h3 {
    font-size: 1.5rem;
  }

  .social-icon {
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
  }

  .footer-socials {
    gap: 1rem;
  }
}
.blog-card.is-hidden {
  display: none !important;
}
.booking-intro {
    margin: 0 0 18px;
    color: var(--color-stone);
    font-size: 0.95rem;
}

.booking-agreement {
    margin-bottom: 10px;
}

.booking-hint {
    margin-top: 8px;
    margin-bottom: 18px;
    font-size: 0.85rem;
    color: var(--color-stone);
}

.disabled-btn,
.disabled-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    transform: none;
}

.disabled-btn:hover,
.disabled-btn:disabled:hover {
    background-color: var(--color-terracotta);
    color: var(--color-white);
    border-color: var(--color-terracotta);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        z-index: 1101;
    }

    .nav-container {
        position: relative;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        width: 100%;
        background-color: var(--color-white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-md);
        border-radius: 12px;
        z-index: 1100;
    }

    .nav-links.active {
        display: flex;
    }
}