/* Gallery Container */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Larger minimum size for grid items */
    gap: 20px; /* Space between items */
    padding: 20px;
    background-color: silver;
    box-shadow: 2px 2px 0.2px #5f5e5e;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: -80px;
    margin-bottom: 80px;
}

/* Individual Gallery Item */
.gallery-item {
    text-align: center;
    border: .5px solid #000;
    box-shadow: 1px 1px 0.2px #5f5e5e;
    padding: 10px;
    background-color: #e5e5e5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Images (Enforce uniform size) */
.gallery-item img {
    width: 100%; /* Ensure image fills the container */
    height: 200px; /* Fixed height for uniformity */
    object-fit: cover; /* Maintain aspect ratio while cropping */
    border: 1px solid #000;
    background-color: #fff;
    box-shadow: 1px 1px 0.2px #5f5e5e;
    border-radius: 2px; /* Optional: rounded corners */
}

/* Text Under Images */
.gallery-item span {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #000;
    text-shadow: 1px 1px 0px #fff;
}
