/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Poppins:wght@300;400;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #3B2F2F;
    background-color: #FFF6F0;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: #3B2F2F;
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    font-size: 1rem;
    line-height: 1.7;
    color: #3B2F2F;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-align: center;
    transition: box-shadow 0.35s ease, background-color 0.35s ease, color 0.35s ease;
}

.btn-primary {
    background-color: #7A1E3A;
    color: #D4AF37;
}

.btn-primary:hover {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5), 0 0 40px rgba(212, 175, 55, 0.2);
}

.btn-secondary {
    background-color: #D4AF37;
    color: #7A1E3A;
}

.btn-secondary:hover {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5), 0 0 40px rgba(212, 175, 55, 0.2);
}

.btn-accent {
    background-color: #E75480;
    color: #FFF6F0;
}

.btn-accent:hover {
    box-shadow: 0 0 20px rgba(231, 84, 128, 0.5), 0 0 40px rgba(231, 84, 128, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: #7A1E3A;
    border: 2px solid #7A1E3A;
}

.btn-outline:hover {
    background-color: #7A1E3A;
    color: #D4AF37;
    box-shadow: 0 0 20px rgba(122, 30, 58, 0.3);
}

/* ===== SECTION STYLES ===== */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    margin-bottom: 12px;
}

.section-header .divider {
    width: 60px;
    height: 3px;
    background-color: #D4AF37;
    margin: 0 auto 16px;
    border-radius: 2px;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: #6b5b5b;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(122, 30, 58, 0.75) 0%,
        rgba(59, 47, 47, 0.8) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 40px 20px;
    max-width: 700px;
}

.hero-content h1 {
    color: #FFF6F0;
    font-size: 3.5rem;
    margin-bottom: 8px;
}

.hero-content h1 span {
    color: #D4AF37;
}

.hero-tagline {
    font-family: 'Poppins', sans-serif;
    color: #D4AF37;
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-content p {
    color: rgba(255, 246, 240, 0.85);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    border-radius: 12px;
    width: 100%;
    height: 400px;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(122, 30, 58, 0.1);
}

.about-text h2 {
    margin-bottom: 16px;
}

.about-text .divider {
    width: 60px;
    height: 3px;
    background-color: #D4AF37;
    margin-bottom: 20px;
    border-radius: 2px;
}

.about-text p {
    margin-bottom: 16px;
    color: #6b5b5b;
}

/* ===== SERVICES PREVIEW ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 36px 28px;
    text-align: center;
    transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card:hover {
    box-shadow: 0 8px 30px rgba(122, 30, 58, 0.12);
    border-color: #D4AF37;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.service-card p {
    color: #6b5b5b;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.service-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #7A1E3A;
}

/* ===== GALLERY PREVIEW ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: filter 0.35s ease;
}

.gallery-item:hover img {
    filter: brightness(1.15);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background-color: #7A1E3A;
    padding: 70px 0;
    text-align: center;
}

.cta-section h2 {
    color: #FFF6F0;
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255, 246, 240, 0.8);
    max-width: 550px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== CONTACT PREVIEW ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.contact-item {
    padding: 30px 20px;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: box-shadow 0.35s ease;
}

.contact-item:hover {
    box-shadow: 0 6px 20px rgba(122, 30, 58, 0.1);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.contact-item p {
    color: #6b5b5b;
    font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #3B2F2F;
    padding: 50px 0 30px;
    color: #FFF6F0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    color: #D4AF37;
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.footer-brand p {
    color: rgba(255, 246, 240, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-col h4 {
    color: #D4AF37;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 246, 240, 0.7);
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: #D4AF37;
}

.footer-col p {
    color: rgba(255, 246, 240, 0.7);
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.15);
    color: #D4AF37;
    font-size: 1.1rem;
    transition: box-shadow 0.35s ease, background-color 0.35s ease;
}

.social-links a:hover {
    background-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 246, 240, 0.5);
    font-size: 0.85rem;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: box-shadow 0.35s ease;
}

.whatsapp-float:hover {
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.7), 0 0 50px rgba(37, 211, 102, 0.3);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background-color: #7A1E3A;
    padding: 50px 0;
    text-align: center;
}

.page-header h1 {
    color: #FFF6F0;
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.page-header p {
    color: rgba(255, 246, 240, 0.7);
    font-size: 1.05rem;
}

/* ===== SERVICES PAGE ===== */
.services-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-full-card {
    background-color: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 14px;
    padding: 40px 30px;
    text-align: center;
    transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-full-card:hover {
    box-shadow: 0 10px 35px rgba(122, 30, 58, 0.12);
    border-color: #D4AF37;
}

.service-full-card .service-icon {
    font-size: 3rem;
    margin-bottom: 18px;
}

.service-full-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.service-full-card p {
    color: #6b5b5b;
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-full-card .price {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #7A1E3A;
    margin-bottom: 20px;
}

/* ===== GALLERY PAGE ===== */
.gallery-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-full-item {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-full-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: filter 0.35s ease;
}

.gallery-full-item:hover img {
    filter: brightness(1.15);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 10px;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: #FFF6F0;
    cursor: pointer;
    background: none;
    border: none;
    font-family: 'Poppins', sans-serif;
    transition: color 0.2s ease;
}

.lightbox-close:hover {
    color: #D4AF37;
}

/* ===== LOCATION PAGE ===== */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(122, 30, 58, 0.1);
}

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

.location-info {
    padding: 10px 0;
}

.location-info h2 {
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.5rem;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(122, 30, 58, 0.08);
    border-radius: 10px;
}

.info-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #3B2F2F;
}

.info-item p {
    color: #6b5b5b;
    font-size: 0.9rem;
}

.location-buttons {
    display: flex;
    gap: 16px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* ===== BOOKING PAGE ===== */
.booking-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.booking-content > p {
    color: #6b5b5b;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.booking-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.booking-card {
    background-color: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 14px;
    padding: 36px 24px;
    text-align: center;
    transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.booking-card:hover {
    box-shadow: 0 8px 30px rgba(122, 30, 58, 0.12);
    border-color: #D4AF37;
}

.booking-card .booking-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.booking-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.booking-card p {
    color: #6b5b5b;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.booking-cta {
    text-align: center;
    padding: 50px 0;
    background-color: #ffffff;
    border-radius: 16px;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.booking-cta h2 {
    margin-bottom: 16px;
}

.booking-cta p {
    color: #6b5b5b;
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

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

    .booking-methods {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .hero {
        min-height: 75vh;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-tagline {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .section {
        padding: 50px 0;
    }

    .services-grid,
    .services-full-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid,
    .gallery-full-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img,
    .gallery-full-item img {
        height: 240px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .page-header {
        padding: 35px 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}
