/* ===========================
   GALLERY PAGE
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7f7f7;
    color:#333;
}

/* ===========================
   GALLERY SECTION
=========================== */

.gallery-section{
    width:90%;
    max-width:1300px;
    margin:60px auto;
}

.gallery-section h1{
    text-align:center;
    font-size:42px;
    color:#1d4d2b;
    margin-bottom:15px;
}

.gallery-intro{
    text-align:center;
    max-width:850px;
    margin:0 auto 50px;
    color:#666;
    line-height:1.7;
}

.gallery-title{
    margin:45px 0 20px;
    font-size:28px;
    color:#1d4d2b;
}

/* ===========================
   GALLERY GRID
=========================== */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(250px,1fr));
    gap:20px;
    margin-bottom:40px;
}

/* ===========================
   GALLERY CARD
=========================== */

.gallery-card{
    width:100%;
    height:220px;
    overflow:hidden;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
    background:#fff;
}

/* ===========================
   IMAGES
=========================== */

.gallery-card img{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    display:block;
    transition:.4s ease;
}

.gallery-card:hover img{
    transform:scale(1.08);
}

/* ===========================
   BACK BUTTON
=========================== */

.gallery-btn{
    text-align:center;
    margin:50px 0;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width:768px){

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .gallery-card{
        height:180px;
    }

}

@media (max-width:600px){

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-card{
        height:220px;
    }

    .gallery-section h1{
        font-size:32px;
    }

    .gallery-title{
        font-size:24px;
    }

}