/* General Styling */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}

/* Gallery Container */
#gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid */
    gap: 15px;
    justify-content: center;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

/* Image Styling */
#gallery img {
    width: 100%;
    height: auto; /* Maintains original aspect ratio */
    max-height: 300px; /* Ensures images don’t get too tall */
    object-fit: contain; /* Ensures full image is visible */
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Hover Effects */
#gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    #gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Smaller grid on mobile */
    }
}
