/* ==========================================
   HERO
========================================== */

.gallery-hero{

    padding:170px 20px 90px;

    text-align:center;

    background:#0B1120;

    color:#fff;

}

.gallery-hero h1{

    font-size:64px;

    margin-bottom:20px;

    font-family:'Playfair Display',serif;

}

.gallery-hero p{

    max-width:700px;

    margin:auto;

    color:#d1d5db;

    font-size:20px;

}

/* ==========================================
   GALLERY
========================================== */

.gallery-section{

    background:#f7f7f7;

    padding:90px 0;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:25px;

}

.gallery-item{

    overflow:hidden;

    border-radius:20px;

    background:#fff;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    cursor:pointer;

}

.gallery-item img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:.4s;

    display:block;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

/* ==========================================
   LIGHTBOX
========================================== */

#lightbox{

    display:none;

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.95);

    z-index:99999;

    justify-content:center;

    align-items:center;

}

#lightbox img{

    max-width:90%;

    max-height:90%;

    border-radius:12px;

}

#lightbox span{

    position:absolute;

    top:30px;

    right:40px;

    font-size:55px;

    color:#fff;

    cursor:pointer;

}

@media(max-width:768px){

.gallery-hero h1{

font-size:42px;

}

.gallery-grid{

grid-template-columns:1fr;

}

.gallery-item img{

height:240px;

}

}