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

body{
    background:#0b0b0b;
    color:#fff;
    font-family:Arial, Helvetica, sans-serif;
}

.hero{
    width:100%;
    height:60vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background-position:center;
    background-size:cover;
}

.hero h1{
    background:rgba(0,0,0,.6);
    padding:15px 30px;
    border-radius:10px;
    color:#d4af37;
    font-size:3rem;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
    padding:40px 0;
}

.back-btn{
    display:inline-block;
    margin-bottom:20px;
    padding:10px 15px;
    border:1px solid #d4af37;
    color:#d4af37;
    text-decoration:none;
}

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

.gallery img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:10px;
    cursor:pointer;
}

#lightbox{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.95);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

#lightbox img{
    max-width:90%;
    max-height:90%;
}

.close{
    position:absolute;
    top:20px;
    right:25px;
    font-size:40px;
    cursor:pointer;
}
