/** styles.css */

:root {
    --bg-color: #FDFBF7; /* Soft Ivory Base */
    --alt-bg: #F4EFE6; /* Warm Sand Block */
    --form-bg: #FFFFFF; /* Crisp White Floating Body */
    --text-primary: #2C2B29; /* Deep Espresso Charcoal */
    --text-secondary: #7A7571; /* Soft Taupe Gray */
    --highlight-pink: #D4B595; /* Muted Champagne Gold */
    --white: #ffffff;
    --black: #000000;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- Top Bar --- */
.top-bar {
    background-color: #EFECE5;
    color: var(--text-secondary);
    font-size: 0.8rem;
    display: flex;
    justify-content: space-between;
    padding: 8px 5%;
    font-weight: 300;
    letter-spacing: 0.5px;
}
.top-bar a {
    color: var(--text-primary);
    transition: color 0.3s ease;
}
.top-bar a:hover {
    color: var(--highlight-pink);
}

/* --- Main Header --- */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: var(--bg-color);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo {
    position: relative;
    display: flex;
    align-items: center;
}
.logo-circle {
    position: absolute;
    left: -10px;
    width: 50px;
    height: 50px;
    background-color: rgba(212, 175, 55, 0.15); /* Soft translucent gold */
    border-radius: 50%;
    z-index: -1;
}
.logo h1 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 2px;
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 30px;
}
.nav-links a {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--text-secondary);
    transition: color 0.3s;
}
.nav-links a.active, .nav-links a:hover {
    color: var(--text-primary);
}

.nav-icons {
    display: flex;
    gap: 20px;
    font-size: 1.2rem;
}
.cart-icon {
    position: relative;
}
.cart-count {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: var(--text-primary);
    color: var(--white);
    font-size: 0.6rem;
    padding: 2px 5px;
    border-radius: 50%;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 80px 5% 0 5%;
    overflow: hidden;
    background-color: var(--bg-color);
    background-color: var(--bg-color);
}

.title-gold {
    color: var(--highlight-pink);
}

.hero-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 40px;
}

.hero-text-half {
    width: 50%;
    text-align: left;
    padding-bottom: 80px; /* Shift text naturally up */
}

.hero-image-half {
    width: 45%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.hero-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 500px;
}

.gallery-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    object-fit: cover;
    border: 1px solid rgba(212, 181, 149, 0.4);
}

.hero-side-image {
    width: 100%;
    max-width: 650px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(212,175,55,0.2);
    object-fit: contain;
    object-position: bottom;
    display: block;
}

/* --- Video Audio Toggle --- */
.mute-btn {
    position: absolute;
    bottom: 110px; /* Shifted up so it does not overlap with WhatsApp */
    right: 35px; /* Center-aligned with WhatsApp button */
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(212, 181, 149, 0.4);
    color: var(--highlight-pink);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    z-index: 10;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.mute-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
}

.hero-text .title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 6vw, 6.5rem);
    font-weight: 500;
    margin: 15px 0 20px 0;
    letter-spacing: -1px;
    line-height: 1.1;
    color: var(--white);
}
.hero-text .title-gold {
    color: var(--highlight-pink);
}
.hero-text .description {
    font-family: var(--font-body);
    font-style: normal;
    color: var(--text-secondary);
    font-size: clamp(1rem, 1.4vw, 1.4rem);
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 85%;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}
.hero-btn-gold {
    background-color: var(--highlight-pink);
    color: var(--bg-color) !important;
    border-radius: 50px;
    padding: 15px 35px;
    font-weight: 600;
    border: none;
    transition: transform 0.3s ease;
}
.hero-btn-gold:hover {
    transform: translateY(-3px);
}
.hero-btn-outline {
    border: 1px solid rgba(212,181,149,0.5); /* Soft beige gold border */
    color: var(--text-primary);
    border-radius: 50px;
    padding: 15px 35px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.hero-btn-outline:hover {
    border-color: var(--highlight-pink);
    color: var(--highlight-pink);
}

/* --- Hero Booking Form --- */
.hero-booking-wrapper {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    background: rgba(255, 255, 255, 0.7); /* light transparent */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 181, 149, 0.4); /* soft gold border */
    border-radius: 8px; /* elegant soft corners */
    padding: 25px 35px;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05); /* very soft light shadow */
}

.booking-form {
    display: flex;
    gap: 20px;
}
.booking-form input {
    flex: 1;
    padding: 12px 18px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 4px;
    background-color: transparent;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}
.booking-form input::placeholder {
    color: rgba(0,0,0,0.4);
    font-weight: 300;
}
.booking-form input:focus {
    border-color: var(--highlight-pink);
    background-color: rgba(255,255,255,0.5); /* Highlight on focus */
}
.btn-primary {
    background-color: var(--highlight-pink); /* Gold button */
    color: #ffffff; /* Contrast text on gold */
    border: none;
    border-radius: 4px;
    padding: 12px 40px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: transform 0.3s, background-color 0.3s;
}
.btn-primary:hover {
    background-color: #f7dca1; /* lighter gold bounce */
    transform: translateY(-2px);
}

/* Spacer for overlap */
.spacer {
    height: 80px;
    background-color: var(--bg-color);
}

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
}

.grid-item {
    aspect-ratio: 1 / 1; /* Keep them square */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    position: relative;
}

.grid-item.image {
    padding: 0;
    overflow: hidden;
}
.grid-item.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.grid-item.image:hover img {
    transform: scale(1.05);
}

.grid-item.text {
    background-color: var(--bg-color);
}
.grid-item.bg-alt {
    background-color: var(--alt-bg);
}

.grid-item h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 15px;
}
.service-subtitle {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1rem;
}
.service-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    max-width: 80%;
}

.read-more {
    font-size: 0.7rem;
    color: var(--highlight-pink);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.btn-dark {
    background-color: var(--text-primary);
    color: var(--white);
    padding: 10px 25px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    transition: background-color 0.3s;
}
.btn-dark:hover {
    background-color: var(--highlight-pink);
}

.social-icon {
    font-size: 1.2rem;
    color: var(--text-primary);
    cursor: pointer;
}

/* --- Footer --- */
.main-footer {
    background-color: var(--text-primary);
    color: var(--white);
    text-align: center;
    padding: 40px 20px;
    font-size: 0.9rem;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-content {
        width: 70%;
    }
    .booking-form {
        flex-wrap: wrap;
    }
    .booking-form input, .booking-form button {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .main-header {
        padding: 15px 5%;
        position: relative;
    }
    .menu-toggle {
        display: block !important;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: var(--bg-color);
        position: absolute;
        top: 100%;
        left: 0;
        padding: 20px 5%;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        z-index: 100;
        text-align: center;
        border-top: 1px solid rgba(0,0,0,0.05);
        gap: 20px;
    }
    .nav-links.active {
        display: flex;
        background-color: var(--bg-color);
        z-index: 999;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    .nav-icons {
        display: none;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .grid-item {
        aspect-ratio: auto;
        padding: 50px 20px;
    }
    .grid-item.image {
        aspect-ratio: 1 / 1;
    }
    .hero-section {
        padding: 40px 5% 0 5%;
        min-height: auto;
    }
    .hero-split {
        flex-direction: column;
        gap: 20px;
    }
    .hero-text-half {
        width: 100%;
        text-align: center;
        padding-bottom: 30px;
    }
    .hero-image-half {
        width: 100%;
        display: block;
    }
    .hero-gallery {
        max-width: 100%;
    }
    .hero-text-overlay .description {
        max-width: 100% !important;
        margin-left: auto;
        margin-right: auto;
    }
    .title-gold {
        color: var(--highlight-pink) !important;
        text-shadow: none !important;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-side-image {
        max-width: 90%;
    }
    .hero-text .title {
        font-size: clamp(3.5rem, 12vw, 5rem);
        letter-spacing: -1px;
        line-height: 1.1;
    }
    .hero-booking-wrapper {
        width: 90%;
        bottom: -50px;
    }
    .spacer {
        height: 0;
    }
}

/* --- Floating WhatsApp --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    font-size: 35px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20b858;
    color: #FFF;
}


/* --- Logo circle mobile fix --- */
@media (max-width: 768px) {
    .logo-circle {
        left: 0 !important;
        width: 40px;
        height: 40px;
    }
}

/* --- Hamburger Button --- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1100;
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.35s ease;
    transform-origin: center;
}
/* Animated X when open */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .nav-icons {
        display: none;
    }
}
