/* Conteneur principal */
.gallery-container {
    padding: 50px;
    background-color: #f8f9fa; /* Fond léger */
    text-align: center;
}

/* Titre de la galerie */
.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
}

/* Style des images */
img {
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Animation fluide */
}

img:hover {
    transform: scale(1.1); /* Agrandit légèrement l'image au survol */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Ajoute une ombre plus marquée */
}
