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

:root {
    --cream: #FFF8E7;
    --gold: #D4AF37;
    --soft-pink: #FFE4E1;
    --dark-gold: #B8941E;
    --text-dark: #2C2C2C;
    --white: #FFFFFF;
    --nav-height: 70px;

    /* Fluid font sizes */
    --fs-xs: clamp(0.8rem, 2vw, 0.95rem);
    --fs-sm: clamp(0.95rem, 2.5vw, 1.1rem);
    --fs-md: clamp(1rem, 3vw, 1.2rem);
    --fs-lg: clamp(1.3rem, 4vw, 1.8rem);
    --fs-xl: clamp(1.8rem, 5vw, 3rem);
    --fs-hero: clamp(2rem, 7vw, 4.5rem);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--cream);
    overflow-x: hidden;
}

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

/* ===========================
   NAVIGATION — MOBILE FIRST
=========================== */
nav {
    background: linear-gradient(135deg, var(--cream) 0%, var(--soft-pink) 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: var(--nav-height);
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    font-weight: bold;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 2px;
    white-space: nowrap;
}

/* Hamburger Button */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hamburger → X animation */
.hamburger.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile Nav Menu */
.nav-links {
    display: flex;
    flex-direction: column;
    list-style: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--cream), var(--soft-pink));
    padding: 1.5rem 0;
    gap: 0;
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    z-index: 999;
}

.nav-links.open {
    transform: translateY(0);
}

.nav-links li {
    border-bottom: 1px solid rgba(212,175,55,0.15);
}

.nav-links a {
    display: block;
    padding: 0.9rem 5%;
    text-decoration: none;
    color: var(--text-dark);
    font-size: var(--fs-sm);
    font-weight: 600;
    transition: color 0.3s, background 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
    background: rgba(212,175,55,0.08);
}

/* ===========================
   HERO — MOBILE FIRST
=========================== */
.hero {
    min-height: 100svh;
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
                url('images/hero-wedding.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 2rem 5%;
}

.hero-content {
    width: 100%;
    max-width: 900px;
}

.hero-content h1 {
    font-size: var(--fs-hero);
    margin-bottom: 0.75rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero-content p {
    font-size: var(--fs-lg);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 0.85rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: var(--fs-sm);
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--dark-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212,175,55,0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--gold);
    transform: translateY(-3px);
}

/* ===========================
   SECTIONS — MOBILE FIRST
=========================== */
section {
    padding: 3rem 5%;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Full-width sections (testimonials, CTA) */
.testimonials,
.section-full {
    max-width: 100%;
    padding: 3rem 5%;
}

.section-title {
    text-align: center;
    font-size: var(--fs-xl);
    color: var(--gold);
    margin-bottom: 2rem;
    letter-spacing: 1px;
    line-height: 1.3;
}

/* ===========================
   ABOUT
=========================== */
.about-content {
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

.about-content p {
    font-size: var(--fs-md);
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

/* ===========================
   SERVICES GRID
=========================== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.service-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid var(--soft-pink);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(212,175,55,0.25);
}

.service-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: var(--fs-lg);
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: var(--fs-sm);
    line-height: 1.8;
}

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials {
    background: linear-gradient(135deg, var(--soft-pink) 0%, var(--cream) 100%);
}

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

.testimonial-card {
    background: var(--white);
    padding: 1.8rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 4px solid var(--gold);
}

.testimonial-card p {
    font-size: var(--fs-sm);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: bold;
    color: var(--gold);
    font-size: var(--fs-sm);
}

/* ===========================
   FEATURES GRID
=========================== */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-box {
    background: var(--white);
    padding: 1.8rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-top: 4px solid var(--gold);
}

.feature-box h3 {
    color: var(--gold);
    margin-bottom: 0.75rem;
    font-size: var(--fs-md);
}

.feature-box p {
    font-size: var(--fs-sm);
}

/* ===========================
   TEAM
=========================== */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.team-member {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.team-img {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--soft-pink), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
}

.team-info {
    padding: 1.5rem;
}

.team-info h3 {
    color: var(--gold);
    font-size: var(--fs-md);
    margin-bottom: 0.4rem;
}

/* ===========================
   GALLERY
=========================== */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, var(--soft-pink), var(--gold));
    cursor: pointer;
}

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

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(212,175,55,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    color: var(--white);
    font-size: var(--fs-sm);
    font-weight: bold;
    padding: 0.5rem;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ===========================
   CONTACT
=========================== */
.contact-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-form,
.contact-info {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    width: 100%;
}

.contact-info h3 {
    color: var(--gold);
    font-size: var(--fs-lg);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--gold);
    font-weight: bold;
    font-size: var(--fs-sm);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid var(--soft-pink);
    border-radius: 8px;
    font-size: var(--fs-sm);
    font-family: inherit;
    transition: border-color 0.3s;
    background: var(--cream);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: var(--fs-md);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.btn-submit:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212,175,55,0.4);
}

.contact-detail {
    margin-bottom: 1.25rem;
    font-size: var(--fs-sm);
}

.contact-detail strong {
    color: var(--gold);
    display: block;
    margin-bottom: 0.3rem;
}

.whatsapp-btn {
    display: inline-block;
    background: #25D366;
    color: var(--white);
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1rem;
    transition: all 0.3s;
    font-size: var(--fs-sm);
}

.whatsapp-btn:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.map-container {
    margin-top: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    background: var(--soft-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-md);
    color: var(--gold);
    text-align: center;
    padding: 1rem;
}

/* ===========================
   FOOTER
=========================== */
footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 3rem 5% 1.5rem;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 2rem;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: var(--fs-md);
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    font-size: var(--fs-sm);
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 1.6rem;
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 1.5rem;
    font-size: var(--fs-xs);
    text-align: center;
    color: rgba(255,255,255,0.6);
    max-width: 1400px;
    margin: 0 auto;
}

/* Video item - no overlay, full controls visible */
.video-item {
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-item video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.video-item:hover video {
    transform: none;
}
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(212,175,55,0.4);
    transition: all 0.3s;
    z-index: 999;
}

.back-to-top:hover {
    background: var(--dark-gold);
    transform: translateY(-4px);
}

/* ===========================
   BREAKPOINT: 480px (small phones)
=========================== */
@media (min-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===========================
   BREAKPOINT: 768px (tablets)
=========================== */
@media (min-width: 768px) {
    /* Show desktop nav, hide hamburger */
    .hamburger {
        display: none;
    }

    .nav-links {
        position: static;
        flex-direction: row;
        transform: none;
        padding: 0;
        gap: 2rem;
        background: transparent;
        box-shadow: none;
        width: auto;
    }

    .nav-links li {
        border-bottom: none;
    }

    .nav-links a {
        padding: 0;
    }

    section {
        padding: 4rem 5%;
    }

    .testimonials,
    .section-full {
        padding: 4rem 5%;
    }

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

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

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

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .contact-container {
        flex-direction: row;
        align-items: flex-start;
    }

    .contact-form {
        flex: 1.2;
    }

    .contact-info {
        flex: 1;
    }

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===========================
   BREAKPOINT: 1024px (desktop)
=========================== */
@media (min-width: 1024px) {
    section {
        padding: 5rem 5%;
    }

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

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

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