/* ============================= */
/*        GALERIE D'IMAGES       */
/* ============================= */

.container {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
}

/* Titre de la galerie */
h1.text-center {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1565c0;
    margin-bottom: 30px;
}

/* Conteneur de la galerie */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 10px;
}

/* Style des images */
.image-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover; /* Ajuste l'image sans la déformer */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Effet au survol */
.image-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

/* Responsive - Mobile et Tablette */
@media (max-width: 768px) {
    .image-gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .image-gallery img {
        height: 200px;
    }
}