/* Style pour la grille */


.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.photo-item img {
    max-width: 100%;
    height: auto;
    cursor: pointer;
}


.photo-item img:fullscreen {
    object-fit: contain;
    width: 100vw;
    height: 100vh;
    background-color: black;
    text-align: center;
}

img{
    max-width: 50%;
}

/* Conteneur pour le plein écran */
#fullscreen-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9); /* Fond noir */
    z-index: 1000;
    display: none; /* Masqué par défaut */
    overflow: hidden; /* Assure que rien ne déborde */
}

/* Image en plein écran */
#fullscreen-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* L'image reste proportionnelle */
}
