/**
 * ANIMATIONS EXPÉRIMENTALES - 4iNTE
 * 
 * Ce fichier contient des animations optionnelles pour tester.
 * Pour ACTIVER : Décommenter la ligne d'import dans index.html
 * Pour DÉSACTIVER : Commenter ou supprimer la ligne d'import
 */

/* 4. Scroll Reveal avec effet Stagger (décalage progressif) */
.service-card {
    animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 5. Orbes lumineux avec animation de respiration */
.glow-orb {
    animation: breathe 6s ease-in-out infinite;
}

.orb-1 {
    animation-delay: 0s;
}

.orb-2 {
    animation-delay: 3s;
    /* Décalage pour effet alterné */
}

@keyframes breathe {

    0%,
    100% {
        opacity: 0.1;
        transform: scale(1);
    }

    50% {
        opacity: 0.2;
        transform: scale(1.1);
    }
}

/* 6. Icônes des services avec animation au survol */
.service-icon {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg) scale(1.1);
}

/* Alternative : Bounce effect */
/* 
.service-card:hover .service-icon {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-10px); }
    50% { transform: translateY(0); }
    75% { transform: translateY(-5px); }
}
*/