/* Gallery Section */
.gallery {
    padding: 40px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.gallery h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
}

.gallery-container .gallery-item {
    width: 100%;
    height: 250px; /* Fixed height for all images */
    overflow: hidden;
    border: 3px solid #ddd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-container .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the container while maintaining aspect ratio */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-container .gallery-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background-color: #f8f9fa;
    padding: 10px 20px;
    text-align: center;
    border-top: 2px solid #d9534f; /* Calmer red */
}

footer p {
    margin: 5px 0;
}

footer a {
    text-decoration: none;
    color: #d9534f; /* Calmer red */
}

footer a:hover {
    text-decoration: underline;
}
