/* Galerie */
#galerie-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.element-galerie {
    text-align: center;
    cursor: pointer;
}

.element-galerie img {
    width: 100%;
    max-width: 220px;
    border-radius: 6px;
    transition: transform .2s;
}

.element-galerie img:hover {
    transform: scale(1.05);
}

.element-nom {
    margin-top: 8px;
    font-weight: 600;
}

/* Modale */
.modale {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 10px;
}

.modale.active {
    display: flex;
}

.modale-contenu {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    height: 80vh;
    display: flex;
    flex-direction: column;
}

.modale-fermer {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
}

#modale-iframe {
    width: 100%;
    height: 100%;
    border: none;
}
