/* Thumbnail Styles */

.thumbnails a {
	float: left;
	width: 12%;
	padding-right: 15px;
	margin-bottom: 15px;
	box-sizing: border-box;
}

.thumbnails img {
	display: block;
	transition: all .2s ease-in-out;
	height:125px;
	width:125px;
}

.thumbnails:hover img {
	opacity: .6;
	transform: scale(.92);
}

.thumbnails img:hover {
	opacity: 1;
	transform: scale(1) rotate(2deg);
	box-shadow: 0 0 7px rgba(0, 0, 0, .5);
	
}

/* ===== Gallery Layout ===== */

.gallery-container{
    padding-top:40px;
    padding-bottom:60px;
}

.gallery-title{
    text-align:center;
    margin-bottom:40px;
    font-weight:700;
}

.section-title{
    margin:40px 0 20px;
    font-weight:600;
}

/* GRID — modern and bulletproof */
.gallery-grid{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap:18px;
}

/* Images */
.gallery-grid img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:10px;
    transition: all .25s ease;
}

/* Hover effect */
.gallery-grid img:hover{
    transform:scale(1.05);
    box-shadow:0 10px 25px rgba(0,0,0,.18);
}
