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

:root {
    /* Color Palette */
    --clr-gold: #c3a078;
    --clr-gold-light: #eaddd7;
    --clr-dark: #222222;
    --clr-body: #4a4a4a;
    --clr-light: #fcfaf8;
    --clr-white: #ffffff;
    
    /* Typography */
    --ff-heading: 'Playfair Display', serif;
    --ff-body: 'Inter', sans-serif;
    
    /* Sizing & Spacing Container */
    --container-padding: 20px;
    --section-padding: 80px 0;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-body);
    color: var(--clr-body);
    background-color: var(--clr-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ff-heading);
    color: var(--clr-dark);
    line-height: 1.2;
    font-weight: 500;
}

ul {
    list-style: none;
}

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

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

/* TYPOGRAPHY RESPONSIVENESS */
h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 2rem; text-align: center; }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
p { font-size: 1rem; margin-bottom: 1rem; }
.subtitle { text-align: center; font-size: 1rem; color: var(--clr-gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1rem; display: block;}

/* BUTTONS & WRAPPERS */
.container {
    width: 100%;
    padding-inline: var(--container-padding);
    margin-inline: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background-color: var(--clr-gold);
    color: var(--clr-white);
    font-weight: 500;
    font-family: var(--ff-body);
    border: 1px solid var(--clr-gold);
    border-radius: 4px;
    cursor: pointer;
    min-height: 44px; /* A11y Tap Target */
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    width: 100%;
    transition: var(--transition);
}

.btn:hover {
    background-color: transparent;
    color: var(--clr-gold);
}

.btn-outline {
    background-color: transparent;
    color: var(--clr-dark);
    border-color: var(--clr-dark);
}

.btn-outline:hover {
    background-color: var(--clr-dark);
    color: var(--clr-white);
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background-color: var(--clr-white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 15px 0;
}

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

.logo {
    font-family: var(--ff-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-dark);
    z-index: 1001; /* Above mobile menu overlay */
    text-decoration: none;
}

/* MOBILE MENU OVERLAY */
.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--clr-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: 0.4s ease;
    z-index: 1000;
}

.nav-links.active {
    right: 0;
}

.nav-links a {
    font-family: var(--ff-heading);
    font-size: 2rem;
    color: var(--clr-dark);
}

.hamburger {
    display: block;
    cursor: pointer;
    z-index: 1001;
    border: none;
    background: none;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--clr-dark);
    margin: 6px auto;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    background: linear-gradient(135deg, var(--clr-gold-light) 0%, var(--clr-light) 100%);
}

.hero-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.hero-content h1 {
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--clr-body);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-image {
    width: 100%;
    aspect-ratio: 4/5;
    order: -1; /* Image first on mobile */
    overflow: hidden;
    border-radius: 12px;
}

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

/* TRUST SECTION */
.trust-strip {
    background-color: var(--clr-dark);
    color: var(--clr-white);
    padding: 30px 20px;
    text-align: center;
}

.trust-strip p {
    margin: 0;
    font-family: var(--ff-heading);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--clr-gold-light);
}

/* SERVICES SECTION */
.services {
    padding: var(--section-padding);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-card {
    background: var(--clr-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--clr-gold);
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* ABOUT SECTION */
.about {
    padding: var(--section-padding);
    background-color: var(--clr-gold-light);
}

.about-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

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

/* TESTIMONIALS */
.testimonials {
    padding: var(--section-padding);
    text-align: center;
}

.testimonial-card {
    background: var(--clr-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
}

.stars {
    color: var(--clr-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.review-text {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.reviewer {
    font-weight: 600;
    color: var(--clr-dark);
}

/* GALLERY */
.gallery {
    padding: var(--section-padding);
    background: var(--clr-dark);
    color: var(--clr-white);
}

.gallery h2, .gallery .subtitle {
    color: var(--clr-white);
}

.gallery h2 { margin-bottom: 2rem; }

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.gallery-item {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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


/* CONTACT SECTION */
.contact {
    padding: var(--section-padding);
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info {
    text-align: center;
    background: var(--clr-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    font-size: 2rem;
    color: var(--clr-gold);
    margin-bottom: 1rem;
    display: block;
}

.map-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #e0e0e0;
    min-height: 400px;
    display: flex;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    display: block;
}

/* FOOTER */
.footer {
    background-color: var(--clr-dark);
    color: var(--clr-white);
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}


/* RESPONSIVE BREAKPOINTS */

/* Tablet Breakpoint */
@media (min-width: 768px) {
    .container {
        max-width: 740px;
    }
    
    .btn {
        width: auto;
    }

    .hero-inner {
        flex-direction: row;
        align-items: center;
    }
    
    .hero-content {
        flex: 1;
        text-align: left;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .hero-image {
        flex: 1;
        order: 1; /* Reset order to original */
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-inner {
        flex-direction: row;
        align-items: center;
    }
    
    .about-image {
        flex: 1;
    }
    
    .about-content {
        flex: 1;
        text-align: left;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        flex-direction: row;
        align-items: stretch;
    }
    
    .contact-info {
        flex: 1;
        text-align: left;
    }
    
    .map-container {
        flex: 1;
    }
}

/* Desktop Breakpoint */
@media (min-width: 1024px) {
    .container {
        max-width: 1140px;
        padding-inline: 40px;
    }

    .hamburger {
        display: none;
    }

    .nav-links {
        position: static;
        flex-direction: row;
        height: auto;
        width: auto;
        background: transparent;
        gap: 2rem;
    }
    
    .nav-links a {
        font-size: 1rem;
        font-family: var(--ff-body);
        font-weight: 500;
    }

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

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
