/* ------------------------- */
/* --- Global Styles & Variables --- */
/* ------------------------- */
:root {
    --color-bg-light: #F8F0F3; /* Very soft light pink/off-white */
    --color-bg-dark: #8A5064; /* NEW - Deep Plum */
    --color-text-light: #F8F0F3; /* Light text for dark backgrounds */
    --color-text-dark: #3B2D33; /* NEW - Dark Plum/Brown (High Contrast) */
    --color-accent-pink: #E9969F; /* Vibrant, feminine pink */
    --color-accent-secondary: #C78C95; /* NEW - Mauve/Rose (Replaces Gold) */
    --color-form-bg: #F0E4E7; /* Slightly darker pink for form */
    --color-border-subtle: #D8C0C8; /* Muted border color */

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --shadow-soft: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-deep: 0 8px 30px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg-light); 
    color: var(--color-text-dark); /* FIXED: High contrast text */
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ------------------------- */
/* --- Custom Scrollbar --- */
/* ------------------------- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-light);
}
::-webkit-scrollbar-thumb {
    background: var(--color-accent-pink); 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #e0838d; 
}

/* ------------------------- */
/* --- Custom Cursor --- */
/* ------------------------- */
@media (pointer: fine) {
    body {
        cursor: none;
    }

    .cursor-dot, .cursor-outline {
        position: fixed;
        top: 0;
        left: 0;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        opacity: 0;
        transition: opacity 0.3s ease, transform 0.1s ease;
    }

    .cursor-dot {
        width: 8px;
        height: 8px;
        background-color: var(--color-accent-secondary); /* CHANGED: Was Gold */
    }

    .cursor-outline {
        width: 30px;
        height: 30px;
        border: 2px solid var(--color-accent-pink); 
        transition: transform 0.2s ease-out;
    }
    
    a, button, input, select, textarea {
        cursor: none;
    }
}

@media (pointer: coarse) {
    .cursor-dot, .cursor-outline {
        display: none;
    }
}

/* ------------------------- */
/* --- Typography & Buttons --- */
/* ------------------------- */
h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--color-text-dark); /* FIXED: High contrast */
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.8rem; color: var(--color-accent-pink); }
h2 { font-size: 2.8rem; color: var(--color-accent-pink); }
h3 { font-size: 1.6rem; color: var(--color-text-dark); font-weight: 500;}

p {
    margin-bottom: 1rem;
    font-weight: 300;
    color: var(--color-text-dark); /* FIXED: High contrast */
}

a {
    color: var(--color-accent-pink);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-text-dark);
}

.cta-button {
    display: inline-block;
    background-color: var(--color-accent-secondary); /* CHANGED: Was Gold */
    color: var(--color-text-dark); /* FIXED: High contrast text */
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    box-shadow: var(--shadow-soft);
}

.cta-button:hover {
    background-color: var(--color-accent-pink);
    color: var(--color-text-dark); /* FIXED: High contrast text */
    transform: translateY(-3px);
    box-shadow: var(--shadow-deep);
}

/* ------------------------- */
/* --- Menu Toggle & Nav --- */
/* ------------------------- */
.menu-toggle {
    position: fixed;
    top: 2rem;
    right: 2rem;
    width: 40px;
    height: 30px;
    background: transparent;
    border: none;
    z-index: 1001;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-text-dark); /* FIXED: High contrast */
    transition: all 0.3s ease;
}

/* "X" animation for menu toggle */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(13px) rotate(45deg);
    background-color: var(--color-accent-pink);
}
.menu-toggle.active span:nth-child(2) {
    transform: translateY(-13px) rotate(-45deg);
    background-color: var(--color-accent-pink);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(42, 31, 43, 0.98); 
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.nav-overlay.active {
    transform: translateY(0);
}

.nav-links {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--color-text-light); 
    padding: 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: var(--color-accent-secondary); /* CHANGED: Was Gold */
    transform: scale(1.05);
}

/* ------------------------- */
/* --- Section Styling --- */
/* ------------------------- */
section {
    padding: 8rem 5%; 
    max-width: 1300px;
    margin: 0 auto;
    overflow: hidden;
    position: relative; 
}

.content-section {
    padding: 6rem 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
    font-weight: 700;
    font-size: 3rem;
    letter-spacing: 0.5px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-top: -2.5rem;
    margin-bottom: 3.5rem;
    color: var(--color-text-dark); /* FIXED: High contrast */
    font-weight: 300;
}

/* --- Hero Section --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--color-bg-light) 0%, #F4DDE4 100%); 
    padding-top: 0; 
    padding-bottom: 0;
}

.hero-content {
    max-width: 800px;
    margin-top: -50px; 
}

.logo-placeholder {
    margin-bottom: 2rem;
    display: inline-block;
    padding: 1rem;
    border-radius: 10px;
}

.brand-logo {
    max-width: 250px;
    height: auto;
    display: block;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-accent-pink);
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: var(--color-text-dark); /* FIXED: High contrast */
    line-height: 1.5;
}

/* --- About Section --- */
.about-section {
    /* Styles moved to about-container */
    /* Padding is handled by .content-section class in HTML */
}

.about-container {
    display: flex;
    align-items: center;
    gap: 3rem; /* Adjusted from 4rem */
    background-color: var(--color-form-bg); /* Style from old about-section */
    border-radius: 10px; /* Style from old about-section */
    box-shadow: var(--shadow-deep); /* Style from old about-section */
    padding: 3rem; /* New inner padding */
    overflow: hidden;
}

.about-image {
    flex: 1;
    max-width: 400px; /* CHANGED: Made smaller as requested */
    position: relative;
    transform: rotate(-3deg);
    box-shadow: var(--shadow-deep);
    border: 5px solid var(--color-accent-secondary); /* CHANGED: Was Gold */
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-text {
    flex: 1.5;
    /* background-color: var(--color-bg-light); REMOVED */
    /* padding: 3rem; REMOVED (now on container) */
    /* border-radius: 8px; REMOVED */
    /* box-shadow: var(--shadow-soft); REMOVED */
    position: relative;
    z-index: 1;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}


/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card {
    background-color: var(--color-text-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--color-border-subtle);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-deep);
}

.service-image-container {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-card h3 {
    padding: 1.8rem 1.8rem 0.8rem 1.8rem;
    font-size: 1.8rem;
    color: var(--color-accent-pink);
}

.service-card p {
    padding: 0 1.8rem 1.8rem 1.8rem;
    font-weight: 400;
    font-size: 1rem;
    color: var(--color-text-dark); /* FIXED: High contrast */
}

/* --- Gallery Section --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border-radius: 8px;
    position: relative;
    padding: 10px; 
    background-color: var(--color-bg-light);
    border: 2px solid var(--color-accent-pink); 
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 5px; 
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
    opacity: 0.9;
}

.gallery-grid .gallery-item:nth-child(even) {
    transform: translateY(20px); 
}
.gallery-grid .gallery-item:nth-child(3n+1) {
    transform: rotate(1deg); 
}
.gallery-grid .gallery-item:nth-child(4n+2) {
    transform: scale(0.98); 
}


/* --- Contact Form --- */
.booking-form {
    max-width: 850px;
    margin: 0 auto;
    background: var(--color-form-bg); 
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow-deep);
    border: 1px solid var(--color-border-subtle);
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-group-split {
    display: flex;
    gap: 2rem;
}

.form-group-split .form-group {
    flex: 1;
}

.form-group label {
    margin-bottom: 0.6rem;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text-dark); /* FIXED: High contrast */
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background-color: var(--color-text-light); 
    border: 1px solid var(--color-border-subtle);
    border-radius: 6px;
    color: var(--color-text-dark); /* FIXED: High contrast */
    font-family: var(--font-body);
    font-size: 1rem;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent-pink);
    box-shadow: 0 0 0 3px rgba(233, 150, 159, 0.2); 
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E9969F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1.2em;
}

.booking-form .cta-button {
    width: 100%;
    font-size: 1.2rem;
    margin-top: 1rem;
    border: none;
    cursor: pointer;
}

.form-success {
    text-align: center;
    margin-top: 2rem;
    color: var(--color-accent-pink);
    font-size: 1.2rem;
    font-weight: 500;
    background-color: var(--color-text-light);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 3rem;
    background-color: var(--color-bg-light); 
    font-size: 0.95rem;
    color: var(--color-text-dark); /* FIXED: High contrast */
}

footer p {
    color: var(--color-text-dark); /* FIXED: High contrast */
    margin-bottom: 0.5rem;
    font-weight: 300;
}

footer p a {
    color: var(--color-accent-pink); 
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer p a:hover {
    color: var(--color-accent-secondary); /* CHANGED: Was Gold */
    text-decoration: underline;
}

/* --- Footer Social Links --- */
.social-links {
    margin-bottom: 1.5rem;
    text-align: center;
}

.social-links a {
    font-size: 1.8rem; 
    color: var(--color-text-dark); /* FIXED: High contrast */
    margin: 0 0.75rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: var(--color-accent-pink); 
    transform: scale(1.1);
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366; 
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float i {
    color: #FFF; 
}

.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
    color: #FFF;
}

/* ------------------------- */
/* --- Scroll Animations --- */
/* ------------------------- */
.animate-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }
.delay-8 { transition-delay: 0.8s; }

/* ------------------------- */
/* --- Responsive Design --- */
/* ------------------------- */
@media (max-width: 1024px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 1.5rem; }
    .hero-content h1 { font-size: 4rem; }
    .hero-content p { font-size: 1.3rem; }

    .about-section {
        /* Padding is handled by .content-section */
    }
    .about-container {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
        padding: 2.5rem; /* Adjust padding for tablet */
    }
    .about-image {
        transform: none; 
        max-width: 500px;
    }
    .about-text {
        /* padding: 2.5rem; REMOVED */
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-grid .gallery-item:nth-child(even),
    .gallery-grid .gallery-item:nth-child(3n+1),
    .gallery-grid .gallery-item:nth-child(4n+2) {
        transform: none; 
    }
}

@media (max-width: 768px) {
    html { font-size: 15px; }
    .menu-toggle { top: 1.5rem; right: 1.5rem; }
    .nav-link { font-size: 2.2rem; }

    section { padding: 6rem 5%; }
    .content-section { padding: 4rem 5%; }

    .hero-content h1 { font-size: 3rem; }
    .hero-content p { font-size: 1.1rem; }
    .logo-placeholder { margin-bottom: 1.5rem; }
    .brand-logo { max-width: 200px; }

    .about-section {
        /* This is now handled by .content-section padding */
    }
    .about-container {
        padding: 2rem; /* Adjust padding for mobile */
    }
    .about-text {
        /* padding: 2rem; REMOVED */
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group-split {
        flex-direction: column;
        gap: 0;
    }

    .booking-form {
        padding: 2rem;
    }

    .section-title { font-size: 2.3rem; margin-bottom: 2.5rem;}
    .section-subtitle { font-size: 1rem; margin-bottom: 2.5rem;}

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    html { font-size: 14px; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content p { font-size: 1rem; }
    .brand-logo { max-width: 150px; }
    .cta-button { padding: 0.7rem 1.4rem; font-size: 0.9rem; }
    .nav-link { font-size: 1.8rem; }
    .about-section { /* padding: 2.5rem 1.5rem; REMOVED */ }
    .about-container { padding: 1.5rem; }
    .about-image { border-width: 3px; }
    .about-text { /* padding: 1.5rem; REMOVED */ }
    .service-card h3 { font-size: 1.4rem; padding: 1.2rem 1.2rem 0.6rem 1.2rem; }
    .service-card p { padding: 0 1.2rem 1.2rem 1.2rem; }
    .booking-form { padding: 1.5rem; }
    .form-group label { font-size: 0.85rem; }
    .form-group input, .form-group select, .form-group textarea { padding: 0.7rem 1rem; font-size: 0.9rem; }
    .gallery-item { padding: 8px; border-width: 1px; }

    .social-links a {
        font-size: 1.6rem; 
        margin: 0 0.6rem;
    }
}