/* Galerie */
h2 {
    font-family: "Comfortaa", sans-serif;
    color: #12086F;
    margin-bottom: 20px;
    font-size: 30px;
    text-align: center;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    /* autorise le retour à la ligne */
    justify-content: center;
    /* centre les photos */
    gap: 20px;
    /* espace entre les photos */
    padding: 10px;
}

.gallery img {
    width: 250px;
    /* largeur fixe (ou max-width) */
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
}

.gallery img:hover {
    cursor: pointer;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.closephoto {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}