 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B4A6B;
    --secondary-color: #F7F0F4;
    --accent-color: #D946A0;
    --text-dark: #4A2C3A;
    --text-light: #8B7A85;
    --white: #FFFFFF;
    --gradient-warm: linear-gradient(135deg, #F7F0F4 0%, #F0E6ED 100%);
    --gradient-brand: linear-gradient(135deg, #8B4A6B 0%, #D946A0 100%);
    --shadow-soft: 0 10px 40px rgba(139, 74, 107, 0.12);
    --shadow-card: 0 8px 32px rgba(139, 74, 107, 0.08);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.74);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 10px 0;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
}

/* Logo styles - Update these for your own logo */
.logo-image {
    height: 80px; /* Adjust height as needed */
    width: auto;
    max-width: 400px; /* Adjust max width as needed */
}
/* And for desktop responsive */
@media (min-width: 768px) {
    .logo-image {
        height: 80px;
    }
}

.logo-svg {
    width: 120px;
    height: auto;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: -10px;
}

.nav-links {
    display: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-menu {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background-image: url('../images/hero-bg-image.JPG'); /* IMPORTANT: Confirm this path is correct */
    background-size: cover;   
    background-position: center;
    background-repeat: no-repeat;
    
    display: flex;
    align-items: center; /* Keeps content vertically centered */
    justify-content: flex-end; /* ***Pushes the .container (which holds hero-content) to the right*** */
    
    position: relative;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.74); /* Ensures default text color is white */
    
    /* Remove text-align: center from here, as it will be applied to specific children if needed */
    /* text-align: center; */ 
}

/* Optional: Overlay for better text readability */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Ensure your content is above the overlay */
.hero .container {
    position: relative;
    z-index: 2;
    max-width: 1200px; /* Use your global container max-width or adjust */
    width: 100%; /* Ensure container takes full width to allow content to align within it */
    padding: 0 20px; /* Maintain horizontal padding */
    
    display: flex; /* ***Make the container a flex container*** */
    justify-content: flex-end; /* ***Align its direct child (.hero-content) to the right*** */
    /* Align items if you want horizontal items to be top-aligned or bottom-aligned within the container */
    align-items: center; 
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px; /* Set a reasonable max-width for your content block */
    
    /* ***Crucial: Remove or override any margin: auto that might be centering this div*** */
    margin-left: 0; /* Ensures it doesn't take auto margin from the left */
    margin-right: 0; /* Ensures it doesn't take auto margin from the right */
    
    /* ***Align text inside hero-content to the right*** */
    text-align: right; 
}

/* Override colors for specific text elements to ensure they are white */
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 3rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.74); /* ***ENSURE THIS IS WHITE, IT WAS var(--primary-color)*** */
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.74); /* ***ENSURE THIS IS WHITE, IT WAS var(--text-light)*** */
    margin-bottom: 40px;
    max-width: 1000px; /* Maintain max-width for paragraph readability */
    /* Adjust margins for the paragraph within its right-aligned container */
    margin-left: auto; /* Pushes the paragraph itself to the right within hero-content */
    margin-right: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    
    /* ***Align the button to the right within hero-content*** */
    margin-left: auto; /* Pushes the button to the right */
    margin-right: 0;
}

/* Add text shadow for enhanced readability on busy backgrounds */
.hero h1,
.hero p,
.hero .cta-button {
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(139, 90, 60, 0.2);
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: var(--white);
}

.benefits-slider {
    position: relative;
    max-width: 900px;
    margin: 50px auto 0;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
}

.benefits-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.benefit-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
}

.benefit-slide.active {
    opacity: 1;
}

.benefit-slide img {
    width: 50%;
    height: 100%;
    object-fit: cover;
}

.benefit-slide-content {
    width: 50%;
    padding: 40px;
    background: var(--gradient-warm);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.benefit-slide-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-slide-content p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.benefit-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(139, 74, 107, 0.8);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    border-radius: 50%;
}

.benefit-nav:hover {
    background: var(--primary-color);
}

.benefit-nav.prev {
    left: 20px;
}

.benefit-nav.next {
    right: 20px;
}

.benefit-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.benefit-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(139, 74, 107, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.benefit-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .benefits-slider {
        height: 300px;
        margin: 30px 20px 0;
    }
    
    .benefit-slide {
        flex-direction: column;
    }
    
    .benefit-slide img {
        width: 100%;
        height: 50%;
    }
    
    .benefit-slide-content {
        width: 100%;
        height: 50%;
        padding: 20px;
    }
    
    .benefit-slide-content h3 {
        font-size: 1.5rem;
    }
}


/* Classes Section */
.classes {
    padding: 100px 0;
    background: var(--gradient-warm);
}

.class-schedule {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-card);
    margin-top: 50px;
}

.schedule-grid {
    display: grid;
    gap: 25px;
}

.schedule-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: rgba(139, 74, 107, 0.02);
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
}

.schedule-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.schedule-info p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.schedule-time {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 120px;
    text-align: center;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial {
    background: var(--gradient-warm);
    padding: 30px;
    border-radius: 20px;
    position: relative;
    box-shadow: var(--shadow-card);
}

/* .testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.3;
    font-family: 'Playfair Display', serif;
} */


/* .testimonial p::after {
    content: '"';
    font-size: 4em;
    color: var(--accent-color);
    opacity: 0.6;
    font-family: 'Playfair Display', serif;
    vertical-align: top;
    margin-left: 2px;
} */

.testimonial p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}


.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}



/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: var(--gradient-warm);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.pricing-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(139, 74, 107, 0.08);
    border: 1px solid rgba(139, 74, 107, 0.05);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(139, 74, 107, 0.15);
}

.pricing-card.featured {
    background: var(--gradient-brand);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(139, 74, 107, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card.featured .pricing-badge {
    background: var(--white);
    color: var(--primary-color);
}

.pricing-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 15px 0 10px;
    color: var(--primary-color);
}

.pricing-card.featured .pricing-title {
    color: var(--white);
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1;
}

.pricing-card.featured .pricing-price {
    color: var(--white);
}

.pricing-price .currency {
    font-size: 1.2rem;
    vertical-align: top;
}

.pricing-period {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.pricing-card.featured .pricing-period {
    color: rgba(255, 255, 255, 0.8);
}

 .pricing-description {
            color: var(--text-light);
            font-size: 0.95rem;
            margin-bottom: 25px;
            line-height: 1.5;
            min-height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pricing-card.featured .pricing-description {
            color: rgba(255, 255, 255, 0.9);
        }

        .pricing-button {
            width: 100%;
            background: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .pricing-button:hover {
            background: var(--accent-color);
            transform: translateY(-2px);
        }

        .pricing-card.featured .pricing-button {
            background: var(--white);
            color: var(--primary-color);
        }

        .pricing-card.featured .pricing-button:hover {
            background: var(--secondary-color);
        }

       /* Contact Section */
        .contact {
            padding: 20px 0;
            background: var(--primary-color);
            color: var(--white);
            text-align: center;
        }

        .contact h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 20px;
        }

        .contact p {
            font-size: 1.1rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .contact-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 25px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        .contact-item h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .contact-item p {
            opacity: 0.9;
            margin: 0;
        }

        /* Footer */
        footer {
            background: var(--text-dark);
            color: var(--white);
            text-align: center;
            padding: 30px 0;
        }

        footer p {
            opacity: 0.8;
        }

        /* Responsive Design */
        @media (min-width: 768px) {
            .nav-links {
                display: flex;
            }
            
            .logo-svg {
                width: 100px;
            }
            
            .logo-text {
                font-size: 24px;
            }
            
            .hero p {
                font-size: 1.3rem;
            }
            
            .schedule-item {
                flex-direction: row;
            }
            
            .schedule-time {
                min-width: 140px;
            }
        }

        @media (max-width: 767px) {
            .container {
                padding: 0 15px;
            }
            
            .hero {
                padding: 100px 0 50px;
            }
            
            .pricing, .testimonials {
                padding: 60px 0;
            }
            
            .contact {
                padding: 60px 0;
            }
            
            .class-schedule {
                padding: 25px;
            }
            
            .schedule-item {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .schedule-time {
                order: -1;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Loading animation */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

/* Add these modal styles to your existing styles.css file */

/* Modal styles for the enquiry form */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    max-width: 95%;
    max-height: 95%;
    overflow-y: auto;
    border-radius: 20px;
    transform: translateY(30px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1001;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.modal-close:hover {
    background: white;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .modal-content {
        max-width: 100%;
        max-height: 100%;
        border-radius: 0;
    }
    
    .modal-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}
/* ===========================================
   SOCIAL MEDIA ICONS - ADD TO YOUR STYLES.CSS
   =========================================== */

/* Base Social Media Icons Styling */
.social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(139, 90, 60, 0.1);
    border: 1px solid rgba(139, 90, 60, 0.2);
    border-radius: 8px;
    color: #8B5A3C;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icon:hover {
    background: #8B5A3C;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 90, 60, 0.3);
}

/* Header Social Icons */
.header-social {
    display: none; /* Hidden on mobile */
}

@media (min-width: 768px) {
    .header-social {
        display: flex;
        margin-left: 20px;
    }
    
    .header-social .social-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

/* Contact Section Social Icons */
.contact-social {
    margin-top: 30px;
    justify-content: center;
}

.contact-social .social-icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
}

/* Footer Social Icons */
.footer-social {
    margin-top: 20px;
    justify-content: center;
}

.footer-social .social-icon {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

.footer-social .social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .contact-social .social-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}
/* For Google Review  */
/* Star Rating Review Button Styles */
.google-review-button {
    display: inline-block;
    margin: 20px 0;
}

/* Center the container */
.google-review-button {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}
.google-review-button a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background: white;
    border: 2px solid #4285f4;
    border-radius: 8px;
    text-decoration: none;
    color: #4285f4;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.google-review-button a:hover {
    background: #4285f4;
    color: white;
    align-items: center;
    box-shadow: 0 4px 8px rgba(66, 133, 244, 0.3);
    transform: translateY(-1px);
}

.google-stars {
    color: #ffc107;
    align-items: center;
    margin-right: 10px;
    font-size: 18px;
    letter-spacing: 1px;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}

.google-review-button a:hover .google-stars {
    color: #fff200;
}
/* ===== MOBILE MENU UPGRADES - ADD TO YOUR STYLES.CSS ===== */

/* Update existing mobile menu button - REPLACE your existing .mobile-menu styles */
.mobile-menu {
    display: none; /* Hide old button */
}

/* NEW Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* Mobile Menu Active State */
.mobile-menu-btn.active .hamburger {
    background: transparent;
}

.mobile-menu-btn.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-btn.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Mobile Navigation Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--gradient-warm);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    opacity: 0;
    visibility: hidden;
}

.mobile-nav.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
    margin-bottom: 40px;
}

.mobile-nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.mobile-nav.active .mobile-nav-links a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-links a:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-links a:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav-links a:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav-links a:nth-child(4) { transition-delay: 0.4s; }
.mobile-nav-links a:nth-child(5) { transition-delay: 0.5s; }

.mobile-nav-links a:hover {
    color: var(--accent-color);
    transform: scale(1.05);
}

/* Mobile Social Icons */
.mobile-social {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.6s;
}

.mobile-nav.active .mobile-social {
    opacity: 1;
    transform: translateY(0);
}

.mobile-social .social-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
}

/* Mobile CTA Button */
.mobile-cta {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.7s;
}

.mobile-nav.active .mobile-cta {
    opacity: 1;
    transform: translateY(0);
}

.mobile-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.mobile-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(139, 74, 107, 0.3);
}

/* Contact Info in Mobile Menu */
.mobile-contact {
    position: absolute;
    bottom: 40px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.8s;
}

.mobile-nav.active .mobile-contact {
    opacity: 1;
    transform: translateY(0);
}

.mobile-contact p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 5px 0;
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

/* Update existing responsive styles */
@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }

    .mobile-nav {
        display: none;
    }
    
    /* Ensure header social shows on desktop */
    .header-social {
        display: flex !important;
    }
}
* Add these minimal SEO-focused CSS rules to your existing styles.css file */
/* These won't change your visual design but improve SEO performance */

/* Ensure semantic elements display correctly in older browsers */
header, main, section, footer {
    display: block;
}

/* Image optimization for SEO */
img {
    max-width: 100%;
    height: auto;
}

/* Focus states for accessibility (improves SEO rankings) */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #8b5a3c;
    outline-offset: 2px;
}

/* Skip navigation link for accessibility */
.skip-nav {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #8b5a3c;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
}

.skip-nav:focus {
    top: 6px;
}

/* Structured data script styling */
script[type="application/ld+json"] {
    display: none;
}

/* Performance optimization - lazy loading support */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}