/* Préloader global */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFB300; /* Fond jaune */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Conteneur du loader */
.loader-wononvi {
    position: relative;
    width: 80px;
    height: 80px;
}

/* Cercles animés */
.loader-wononvi .circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top: 4px solid #ffffff; /* Couleur blanche pour contraste */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-wononvi .circle:nth-child(2) {
    border: 4px solid transparent;
    border-bottom: 4px solid #ffffff; /* Couleur blanche */
    animation: spin-reverse 1.5s linear infinite;
    opacity: 0.6;
}

/* Animations */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin-reverse {
    0% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(0deg);
    }
}
