/* ===========================
   VISAWA NGO GALLERY CSS
=========================== */

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

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fa;
    color:#333;
}

/* Hero Section */

.gallery-hero{
    background:linear-gradient(135deg,#0c5c3e,#1b8d5f);
    color:#fff;
    text-align:center;
    padding:70px 20px;
}

.gallery-hero h1{
    font-size:42px;
    margin-bottom:15px;
    font-weight:700;
}

.gallery-hero p{
    font-size:20px;
    max-width:700px;
    margin:auto;
    opacity:.95;
}

/* Container */

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/* Gallery Section */

.gallery-section{
    padding:60px 0;
}

/* Gallery Grid */

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

/* Card */

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:15px;
    background:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
    transition:all .4s ease;
}

.gallery-item:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.18);
}

.gallery-item img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:transform .5s ease;
}

.gallery-item:hover img{
    transform:scale(1.1);
}

/* Overlay */

.overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:20px;
    color:#fff;
    background:linear-gradient(transparent,rgba(0,0,0,.9));
    opacity:0;
    transition:.4s;
}

.gallery-item:hover .overlay{
    opacity:1;
}

.overlay h3{
    font-size:22px;
    margin-bottom:8px;
    font-weight:600;
}

.overlay p{
    font-size:15px;
    line-height:1.6;
}

/* Responsive */

@media(max-width:768px){

.gallery-hero{
    padding:50px 20px;
}

.gallery-hero h1{
    font-size:32px;
}

.gallery-hero p{
    font-size:17px;
}

.gallery-grid{
    grid-template-columns:1fr;
}

.gallery-item img{
    height:230px;
}

}