/* Style pour l'image en plein écran */
.fullscreen-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    cursor: pointer;
    justify-content: center;
    align-items: center;
}

.fullscreen-overlay.active {
    display: flex;
}

.fullscreen-overlay img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    cursor: pointer;
}

/* Animation d'ouverture */
@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.fullscreen-overlay.active img {
    animation: zoomIn 0.3s ease;
}

/* Effet hover sur les images du slider */
.fullscreen-enabled img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.fullscreen-enabled img:hover {
    transform: scale(1.02);
}