/*=====================================
            GALLERY PAGE
======================================*/

.gallery-section{
    max-width:1500px;
    margin:0 auto;
    padding:40px 50px 60px;
}

.gallery-section h1{
    text-align:center;
    font-size:42px;
    font-weight:300;
    margin-bottom:45px;
    color:#222;
    line-height:1.3;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.gallery-item{
    overflow:hidden;
    background:#fff;
}

.gallery-item img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
    transition:transform .45s ease;
}

.gallery-item:hover img{
    transform:scale(1.06);
}

@media (min-width:1500px){
    .gallery-item img{
        height:270px;
    }
}

@media(max-width:1200px){
    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:991px){
    .gallery-section{
        padding:100px 20px 40px;
    }

    .gallery-section h1{
        font-size:32px;
        margin-bottom:35px;
    }

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
        gap:18px;
    }

    .gallery-item img{
        height:220px;
    }
}

@media(max-width:767px){
    .gallery-section{
        padding:90px 15px 30px;
    }

    .gallery-section h1{
        font-size:26px;
        line-height:1.35;
    }

    .gallery-grid{
        grid-template-columns:1fr;
        gap:16px;
    }

    .gallery-item img{
        height:240px;
    }
}
