/* --- Loader plein écran Afojusi --- */
#afojusi-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* 🔥 fond noir transparent */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease;
    backdrop-filter: blur(3px);
}

/* Conteneur du logo et du texte */
.afojusi-loader-container {
    text-align: center;
    animation: fadeIn 0.6s ease;
}

/* Logo agrandi avec effet de respiration */
.afojusi-loader-gif {
    width: 180px; /* 🟢 plus grand pour bien ressortir */
    animation: pulse 1.6s infinite ease-in-out;
}

/* Texte sous le logo */
.afojusi-loader-text {
    margin-top: 18px;
    color: #F59E0B; /* doré Afojusi */
    font-weight: 500;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

/* Disparition fluide */
.fade-out {
    opacity: 0;
    pointer-events: none;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.85;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
