/* ================= HERO ================= */

.gallery-hero{
    padding:120px 0;
    background:linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.55)
    ),
    url("../images/gallery-banner.jpg");

    background-size:cover;
    background-position:center;
    color:#fff;
}

.gallery-tag{
    background:#2e7d32;
    color:#fff;
    padding:10px 25px;
    border-radius:30px;
    display:inline-block;
    margin-bottom:20px;
    font-weight:600;
}

.gallery-hero h1{
    font-size:60px;
    font-weight:800;
    margin-bottom:20px;
}

.gallery-hero p{
    max-width:750px;
    margin:auto;
    font-size:18px;
}

/* ================= GALLERY ================= */

.gallery-section{
    padding:100px 0;
    background:#f8f9fa;
}

.gallery-item{
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.gallery-item img{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:.5s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

/* ================= MOBILE ================= */

@media(max-width:768px){

    .gallery-hero{
        padding:90px 0;
    }

    .gallery-hero h1{
        font-size:38px;
    }

    .gallery-item img{
        height:250px;
    }

}