/* =========================
   RESET
========================= */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0b0b0b;
    color:#fff;
    line-height:1.7;
    overflow-x:hidden;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:18px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(0,0,0,.75);
    backdrop-filter:blur(10px);
    z-index:1000;
}

.logo{
    color:#d4af37;
    text-decoration:none;
    font-size:2rem;
    font-weight:700;
    letter-spacing:2px;
}

.navbar ul{
    display:flex;
    list-style:none;
    gap:30px;
}

.navbar ul li{
    list-style:none;
}

.navbar a{
    color:#fff;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

.navbar a:hover{
    color:#d4af37;
}

/* =========================
   HERO
========================= */

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    overflow:hidden;
    padding:110px 20px 60px;
}

.hero-image{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    filter:brightness(.5);
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to bottom,
        rgba(0,0,0,.2),
        rgba(0,0,0,.75)
    );
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
}

.premium{
    color:#d4af37;
    letter-spacing:4px;
    font-size:15px;
    margin-bottom:18px;
}

.hero h1{
    font-size:clamp(2.8rem,6vw,4.5rem);
    line-height:1.1;
    margin-bottom:20px;
    font-weight:800;
}

.subtitle{
    font-size:clamp(1.05rem,2vw,1.35rem);
    margin-bottom:14px;
}

.hero-price{
    color:#d4af37;
    font-size:clamp(2.5rem,5vw,3.5rem);
    font-weight:800;
    margin:25px 0 8px;
}

.price-note{
    color:#d0d0d0;
    margin-bottom:35px;
}

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

.btn,
.btn2{
    display:inline-block;
    padding:14px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn{
    background:#d4af37;
    color:#111;
}

.btn:hover{
    background:#f1cb56;
}

.btn2{
    border:2px solid #d4af37;
    color:#d4af37;
}

.btn2:hover{
    background:#d4af37;
    color:#111;
}
/* =========================
   GALLERY
========================= */

.gallery-section{
    padding:80px 8%;
    background:#0b0b0b;
}

.container{
    width:min(92%,1200px);
    margin:0 auto;
}

.gallery-section h2{
    text-align:center;
    color:#d4af37;
    font-size:clamp(2rem,4vw,2.8rem);
    margin-bottom:12px;
}

.gallery-subtitle{
    text-align:center;
    color:#bfbfbf;
    margin-bottom:40px;
}

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:22px;
}

.gallery img{
    width:100%;
    aspect-ratio:4/3;
    object-fit:cover;
    display:block;
    border-radius:16px;
    box-shadow:0 10px 25px rgba(0,0,0,.35);
    transition:transform .3s ease;
}

.gallery img:hover{
    transform:scale(1.03);
}
/* =========================
   CONTACT
========================= */

.contact-section{
    padding:80px 8%;
    background:#111111;
}

.contact-section h2{
    text-align:center;
    color:#d4af37;
    font-size:clamp(2rem,4vw,2.8rem);
    margin-bottom:15px;
}

.contact-text{
    max-width:700px;
    margin:0 auto 40px;
    text-align:center;
    color:#cfcfcf;
}

.contact-card{
    max-width:550px;
    margin:0 auto;
    background:#181818;
    padding:35px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 12px 30px rgba(0,0,0,.35);
}

.contact-card h3{
    color:#d4af37;
    font-size:1.8rem;
    margin-bottom:20px;
}

.contact-card p{
    margin:12px 0;
    font-size:1.05rem;
    color:#e5e5e5;
}

.contact-card a{
    color:#d4af37;
    text-decoration:none;
    transition:.3s;
}

.contact-card a:hover{
    text-decoration:underline;
}

/* =========================
   FOOTER
========================= */

footer{
    padding:25px 8%;
    text-align:center;
    background:#0b0b0b;
    color:#888;
    font-size:.9rem;
}
/* =========================
   MOBILE
========================= */

@media (max-width:768px){

    .navbar{
        padding:15px 5%;
    }

    .logo{
        font-size:1.4rem;
        letter-spacing:1px;
    }

    .navbar ul{
        gap:15px;
        font-size:.9rem;
    }

    .hero{
        min-height:100vh;
        padding:95px 20px 50px;
    }

    .premium{
        font-size:13px;
        letter-spacing:3px;
    }

    .hero h1{
        font-size:2.4rem;
    }

    .subtitle{
        font-size:1rem;
    }

    .hero-price{
        font-size:2.3rem;
    }

    .price-note{
        font-size:.95rem;
        margin-bottom:28px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
        gap:15px;
    }

    .btn,
    .btn2{
        width:100%;
        max-width:320px;
        text-align:center;
    }

    .gallery-section{
        padding:60px 5%;
    }

    .gallery{
        grid-template-columns:1fr;
        gap:18px;
    }

    .gallery img{
        aspect-ratio:4/3;
    }

    .contact-section{
        padding:60px 5%;
    }

    .contact-card{
        padding:28px 22px;
    }

    .contact-card h3{
        font-size:1.5rem;
    }

    .contact-card p{
        font-size:1rem;
    }

    footer{
        padding:20px 5%;
        font-size:.85rem;
    }

}
/* =========================
   LIGHTBOX
========================= */

.lightbox{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    z-index:9999;
    justify-content:center;
    align-items:center;
    padding:30px;
}

.lightbox.show{
    display:flex;
}

.lightbox img{
    max-width:90vw;
    max-height:90vh;
    width:auto;
    height:auto;
    border-radius:12px;
    box-shadow:0 20px 60px rgba(0,0,0,.6);
}

.lightbox-close{
    position:absolute;
    top:20px;
    right:30px;
    font-size:42px;
    color:#fff;
    cursor:pointer;
    user-select:none;
    line-height:1;
}

.lightbox-close:hover{
    color:#d4af37;
}
/* =========================
   LIGHTBOX
========================= */

.lightbox{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100vw;
    height:100vh;
    background:rgba(0,0,0,.92);
    justify-content:center;
    align-items:center;
    z-index:9999;
    padding:30px;
}

.lightbox img{
    max-width:90%;
    max-height:90%;
    width:auto;
    height:auto;
    object-fit:contain;
    border-radius:12px;
    box-shadow:0 20px 60px rgba(0,0,0,.6);
}

.lightbox-close{
    position:absolute;
    top:20px;
    right:30px;
    color:#fff;
    font-size:42px;
    cursor:pointer;
    user-select:none;
    line-height:1;
}

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