/* ==========================================================================
   INFINITE APP - SYSTÈME DE TRANSITIONS SIMPLIFIÉ
   Version 2.0 - Stable et robuste
   ========================================================================== */

:root {
    /* Durées d'animation standardisées */
    --transition-fast: 0.2s;
    --transition-normal: 0.3s;
    --transition-slow: 0.5s;
    
    /* Courbes d'animation */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ==========================================================================
   1. ANIMATIONS DE BASE - ROBUSTES
   ========================================================================== */

/* Animation d'entrée de page */
body {
    animation: fadeIn 0.6s var(--ease-smooth);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Animation douce au chargement pour les éléments principaux */
.header,
.main-container > *,
.services-container > *,
.menu-grid > *,
.profile-section,
.referral-card,
.test-button,
.stats-bar {
    animation: slideUpGentle 0.6s var(--ease-smooth) both;
}

/* Délais échelonnés pour un effet naturel */
.header { animation-delay: 0.1s; }
.profile-section { animation-delay: 0.2s; }
.referral-card { animation-delay: 0.3s; }
.test-button { animation-delay: 0.4s; }
.stats-bar { animation-delay: 0.5s; }

/* Animations pour les grilles */
.menu-grid > *:nth-child(1) { animation-delay: 0.6s; }
.menu-grid > *:nth-child(2) { animation-delay: 0.7s; }
.menu-grid > *:nth-child(3) { animation-delay: 0.8s; }
.menu-grid > *:nth-child(4) { animation-delay: 0.9s; }

.services-container > *:nth-child(1) { animation-delay: 0.4s; }
.services-container > *:nth-child(2) { animation-delay: 0.5s; }

.bottom-links > *:nth-child(1) { animation-delay: 0.6s; }
.bottom-links > *:nth-child(2) { animation-delay: 0.7s; }
.bottom-links > *:nth-child(3) { animation-delay: 0.8s; }

/* Animation douce - pas trop prononcée */
@keyframes slideUpGentle {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   2. EFFETS HOVER AMÉLIORÉS
   ========================================================================== */

/* Effets hover naturels */
.menu-item,
.service-card,
.link-btn,
.test-button:not(.disabled),
.nav-btn,
.copy-btn,
.generate-btn {
    transition: all var(--transition-normal) var(--ease-smooth);
    transform: translateZ(0); /* GPU acceleration */
}

.menu-item:hover,
.service-card:hover {
    transform: translateY(-3px) scale(1.01);
}

.link-btn:hover,
.nav-btn:hover {
    transform: translateY(-2px);
}

.test-button:not(.disabled):hover,
.copy-btn:hover,
.generate-btn:hover {
    transform: translateY(-2px) scale(1.02);
}

/* ==========================================================================
   3. SYSTÈME DE PANELS - SIMPLIFIÉ
   ========================================================================== */

.slide-panel {
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-smooth);
    will-change: transform;
}

.slide-panel.active {
    transform: translateX(0);
}

.panel-overlay {
    opacity: 0;
    backdrop-filter: blur(0px);
    transition: all 0.4s var(--ease-smooth);
    pointer-events: none;
}

.panel-overlay.active {
    opacity: 1;
    backdrop-filter: blur(10px);
    pointer-events: all;
}

/* ==========================================================================
   4. MODALS SIMPLIFIÉES
   ========================================================================== */

.modal-overlay {
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(0px);
    transition: all var(--transition-normal) var(--ease-smooth);
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(10px);
}

.modal-card {
    transform: scale(0.95) translateY(20px);
    transition: transform var(--transition-normal) var(--ease-bounce);
}

.modal-overlay.show .modal-card {
    transform: scale(1) translateY(0);
}

/* ==========================================================================
   5. NOTIFICATIONS
   ========================================================================== */

.copy-notification {
    transform: translateX(400px);
    transition: transform var(--transition-normal) var(--ease-smooth);
}

.copy-notification.show {
    transform: translateX(0);
}

/* ==========================================================================
   6. LOADING STATES
   ========================================================================== */

.loading-shimmer {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ==========================================================================
   7. RESPONSIVITÉ
   ========================================================================== */

@media (max-width: 768px) {
    /* Animations plus rapides sur mobile */
    .header,
    .main-container > *,
    .services-container > *,
    .menu-grid > * {
        animation-duration: 0.4s;
    }
    
    /* Réduire les délais sur mobile */
    .menu-grid > *:nth-child(1) { animation-delay: 0.1s; }
    .menu-grid > *:nth-child(2) { animation-delay: 0.2s; }
    .menu-grid > *:nth-child(3) { animation-delay: 0.3s; }
    .menu-grid > *:nth-child(4) { animation-delay: 0.4s; }
}

/* ==========================================================================
   8. ACCESSIBILITÉ
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .loading-shimmer {
        animation: none;
        background: rgba(255, 255, 255, 0.05);
    }
}

/* ==========================================================================
   9. UTILITAIRES
   ========================================================================== */

.no-animation {
    animation: none !important;
    transition: none !important;
}

.fade-in-fast {
    animation: fadeIn 0.3s var(--ease-smooth);
}

.slide-up-fast {
    animation: slideUpGentle 0.3s var(--ease-smooth);
}