/* Gallery Styles */
.gallery {
    display: grid;
    /* Creates a responsive grid that shows 2 columns on small screens and 4 on larger ones */
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem; /* Space between images */
}

.gallery-item {
    display: block;
    overflow: hidden;
    /* border-radius: 15px; */
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover; /* Ensures images fill the space without distortion */
    display: block; /* Removes bottom space under the image */
}