@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

/* RESET & ROOT */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blush:     #FCEBE5;
    --rose:      #C48A8A;
    --ink:       #111111;
    --ink-light: #666666;
    --white:     #ffffff;
    --off-white: #fdf8f6;
    --dark-bg:   #1a0f0f;
}

html { 
    scroll-behavior: smooth; 
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--white);
    color: var(--ink);
    overflow-x: hidden;
}

a { 
    text-decoration: none; 
    color: inherit; 
}

img { 
    display: block; 
    max-width: 100%; 
}

button { 
    cursor: pointer; 
    font-family: "Poppins", sans-serif; 
}

.eline {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--rose);
    flex-shrink: 0;
}

/* HEADER */

.header {
    background: var(--white);
    padding: 0 35px;
    position: sticky;
    top: 0;
    z-index: 900;
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.navbar .logo img { 
    height: 65px; 
}

nav#main-nav ul {
    display: flex;
    align-items: center;
    gap: 50px;
    list-style: none;
}

nav#main-nav a {
    font-size: 16px;
    color: var(--ink);
    transition: color 0.2s;
}

nav#main-nav a:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-thickness: 2px;
}

.header .btn {
    background: var(--dark-bg);
    color: hsl(0, 0%, 100%);
    padding: 8px 26px;
    border: none;
    cursor: pointer;
    font-family: "Poppins";
    font-size: 15px;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.header .btn:hover {
    background: var(--rose);
    box-shadow: 0 10px 28px rgba(196,138,138,0.35);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    box-shadow: none;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--ink);
    transition: 0.3s ease;
}

/* Mobile nav */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 800;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.mobile-nav.open {
    max-height: 400px;
    opacity: 1;
}

.mobile-nav ul { 
    list-style: none; padding: 10px 0; 
}

.mobile-nav ul li a {
    display: block;
    padding: 14px 25px;
    font-size: 16px;
    border-bottom: 1px solid hsl(0,0%,93%);
    color: var(--ink);
    text-align: center;
}

.mobile-nav ul li a:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-line: 2px;
}

/* HERO */

.gallery-hero {
    background: var(--blush);
    padding: 100px 120px 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Large decorative word in background */
.hero-bg-text {
    position: absolute;
    top: -20px;
    right: -40px;
    font-family: "Playfair Display", serif;
    font-size: 240px;
    font-weight: 600;
    color: rgba(196,138,138,0.07);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.hero-bg-text::after { 
    content: "GALLERY"; 
}

.gallery-hero-inner {
    max-width: 580px;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.hero-eyebrow p {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--rose);
    margin: 0;
    line-height: 1;
}

.gallery-hero-inner h1 {
    font-family: "Playfair Display", serif;
    font-size: 80px;
    font-weight: 500;
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 24px;
}

.gallery-hero-inner h1 em {
    font-style: italic;
    color: var(--rose);
}

.hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--ink-light);
    max-width: 440px;
    margin-bottom: 36px;
}

.btn-book {
    display: inline-flex;
    align-items: center;
    background: var(--dark-bg);
    color: var(--white);
    padding: 16px 36px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: 0.3s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.btn-book:hover {
    background: var(--rose);
    box-shadow: 0 10px 28px rgba(196,138,138,0.35);
}

/* Sale Promo Section */

        .sale-promo {
            background-color: #ffffff;
            padding: 70px 120px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
        }

        .sale-promo-left {
            flex: 1;
        }

        .sale-promo-eyebrow {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #C48A8A;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .sale-promo-eyebrow::before {
            content: "";
            width: 30px;
            height: 1.5px;
            background: #C48A8A;
            display: inline-block;
        }

        .sale-promo-left h2 {
            font-family: "Playfair Display", serif;
            font-size: 40px;
            font-weight: 500;
            color: #1a0a06;
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .sale-promo-left p {
            font-size: 15px;
            color: #5a3329;
            line-height: 1.75;
            margin-bottom: 8px;
        }

        .sale-code-note {
            font-size: 13px;
            color: #7a4a3a;
            margin-bottom: 28px;
        }

        .btn-sale {
            display: inline-block;
            background: #1a0a06;
            color: #ffffff;
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 14px 28px;
            transition: background 0.3s ease;
            margin-top: 10px;   
        }

        .btn-sale:hover {
            background: #C48A8A;
        }

        /* Responsive */

        @media (max-width: 1024px) {
            .sale-promo {
                padding: 60px 30px;
                gap: 40px;
            }

            .sale-promo-left h2 {
                font-size: 32px;
            }
        }

/* Stat cards */
.hero-stats {
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: var(--white);
    padding: 22px 36px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border-left: 3px solid var(--rose);
}

.stat-num {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ink-light);
}

/* ══════════════════════════════════════════
   MASONRY GALLERY
══════════════════════════════════════════ */

.gallery-section {
    padding: 60px 80px 100px;
    background: var(--off-white);
}

.masonry-grid {
    columns: 3;
    column-gap: 16px;
}

/* Individual item */
.g-item {
    break-inside: avoid;
    margin-bottom: 16px;
    overflow: hidden;
    cursor: pointer;
}

.g-inner {
    position: relative;
    overflow: hidden;
}

/* Image sizing by type */
.g-item:not(.tall):not(.wide) .g-inner img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.g-item.tall .g-inner img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.g-item.wide .g-inner img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* Zoom on hover */
.g-inner img {
    display: block;
    transition: transform 0.5s ease;
}

.g-item:hover .g-inner img {
    transform: scale(1.06);
}

/* Hover overlay — blush tint + expand icon */
.g-overlay {
    position: absolute;
    inset: 0;
    background: rgba(252, 235, 229, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.g-item:hover .g-overlay {
    opacity: 1;
}

/* Expand icon button */
.g-zoom {
    width: 52px;
    height: 52px;
    background: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: background 0.2s, transform 0.2s;
    padding: 0;
    border-radius: 50%;
    transform: scale(0.8);
}

.g-item:hover .g-zoom {
    transform: scale(1);
}

.g-zoom svg {
    width: 20px;
    height: 20px;
    stroke: var(--ink);
    transition: stroke 0.2s;
}

.g-zoom:hover {
    background: var(--rose);
}

.g-zoom:hover svg {
    stroke: var(--white);
}

/* CTA STRIP */

.gallery-cta {
    background: #FCEBE5;
    padding: 90px 120px;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--rose);
    margin-bottom: 16px;
}

.cta-text h2 {
    font-family: "Playfair Display", serif;
    font-size: 44px;
    font-weight: 500;
    color: var(--dark-bg);
    line-height: 1.25;
}

.cta-text h2 em {
    font-style: italic;
    color: var(--rose);
}

/* LIGHTBOX */

.lightbox-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(8, 3, 3, 0.96);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(8px);
}

.lightbox-backdrop.open {
    opacity: 1;
    pointer-events: all;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.97);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.lightbox.open {
    opacity: 1;
    pointer-events: all;
    transform: scale(1);
}

.lb-img-wrap {
    max-width: 900px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-img-wrap img {
    max-width: 100%;
    max-height: 82vh;
    object-fit: contain;
    display: block;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    transition: opacity 0.15s ease;
}

/* Nav buttons */
.lb-close,
.lb-prev,
.lb-next {
    position: fixed;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    color: var(--white);
    transition: background 0.2s;
    padding: 0;
    line-height: 1;
}

.lb-close {
    top: 24px;
    right: 28px;
    width: 44px;
    height: 44px;
    font-size: 17px;
    border-radius: 50%;
}

.lb-prev,
.lb-next {
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-prev { left: 24px; }
.lb-next { right: 24px; }

.lb-close:hover,
.lb-prev:hover,
.lb-next:hover {
    background: var(--rose);
    border-color: var(--rose);
}

.lb-counter {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 2px;
}

/* FOOTER */

.footer {
    background: var(--dark-bg);
    color: hsl(0, 0%, 80%);
    padding: 60px 8% 20px;
    font-size: 14px;
}

.footer-container {
    display: flex;
    gap: 50px;
}

.col-brand { width: 35%; }
.col-brand .logo img { width: 150px; }

.col-brand p {
    line-height: 1.6;
    font-size: 13px;
    color: hsl(0, 0%, 70%);
    margin: 14px 0;
}

.col-brand .socials {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.col-brand .socials img {
    width: 25px;
    height: 25px;
    padding: 3px;
    border-radius: 5px;
    background: var(--white);
}

.footer-container h3 {
    color: var(--white);
    font-weight: 400;
    margin-bottom: 12px;
    font-size: 19px;
}

.footer-container ul {
    list-style: none;
    padding: 0;
}

.footer-container ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-container ul li a {
    color: hsl(0, 0%, 70%);
    transition: 0.3s;
}

.footer-container ul li a:hover { color: var(--white); }

.hours span { color: hsl(0, 0%, 70%); }

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 13px;
}

.footer-bottom .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links a {
    margin-left: 15px;
    color: hsl(0, 0%, 70%);
}

.footer-links a:hover { 
    color: var(--white); 
}

/* WhatsApp float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 1000;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: 0.3s ease-in-out;
}

.whatsapp-float img:hover { 
    scale: 1.05; 
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

@media (max-width: 1100px) {

    .gallery-hero,
    .gallery-cta {
        padding-left: 60px;
        padding-right: 60px;
    }

    .gallery-section {
        padding: 50px 50px 80px;
    }

    .gallery-hero-inner h1 { font-size: 64px; }
    .cta-text h2 { font-size: 36px; }
}

@media (max-width: 768px) {

    /* Header */
    .header { padding: 0 15px; }
    .navbar { padding: 10px 5px; }
    .navbar .logo img { height: 50px; }
    nav#main-nav { display: none; }
    .header .btn { display: none; }
    .hamburger { display: flex; }
    .mobile-nav { display: block; }

    /* Hero */
    .gallery-hero {
        padding: 80px 25px 60px;
        gap: 40px;
    }

    .gallery-hero-inner h1 { font-size: 46px; }
    .hero-desc { font-size: 14px; }

    .hero-stats {
        flex-direction: column;
        gap: 12px;
    }

    .stat-card {
        flex-direction: row;
        align-items: center;
        gap: 20px;
        padding: 16px 24px;
    }

    /* Gallery */
    .gallery-section {
        padding: 36px 16px 60px;
    }

    .masonry-grid {
        columns: 2;
        column-gap: 10px;
    }

    .g-item { margin-bottom: 10px; }

    /* Always show overlay on mobile (no hover) */
    .g-overlay { opacity: 1; background: rgba(252,235,229,0.2); }
    .g-zoom { transform: scale(1); }

    /* CTA */
    .gallery-cta {
        padding: 70px 25px;
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-text h2 { font-size: 30px; }

    /* Lightbox */
    .lightbox { padding: 40px 16px; }
    .lb-prev { left: 8px; }
    .lb-next { right: 8px; }

    /* Footer */
    .footer { padding: 50px 25px 20px; }
    .footer-container { flex-direction: column; gap: 35px; }
    .col-brand { width: 100%; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .footer-links { display: flex; flex-direction: column; justify-content: center; align-items: center; }
}

@media (max-width: 480px) {

    .gallery-hero-inner h1 { font-size: 36px; }
    .hero-bg-text { display: none; }

    .masonry-grid { columns: 1; }

    .lb-prev, .lb-next {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
}