.gallery-section{
    padding:120px 20px;
    background:#000;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    margin-top:50px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border:1px solid rgba(214,171,92,0.3);
    background:#111;
}

.gallery-item img{
    width:100%;
    height:350px;
    object-fit:cover;
    display:block;
    transition:0.5s ease;
}

.gallery-item:hover img{
    transform:scale(1.05);
    opacity:0.9;
}