/* ============================
   CONFIGURATION DES ANIMATIONS
   Activez/désactivez les animations ici
============================ */

:root {
  /* Durées d'animation (modifiez pour ajuster la vitesse) */
  --animation-speed-fast: 0.3s;
  --animation-speed-normal: 0.6s;
  --animation-speed-slow: 1s;
  
  /* Couleurs principales */
  --primary-color: #0066FF;
  --secondary-color: #00A3FF;
  --accent-color: #FF5500;
  --dark-color: #111827;
  --light-bg: #F4F7FB;
  
  /* Activation des animations (0 = désactivé, 1 = activé) */
  --enable-scroll-animations: 1;
  --enable-hover-effects: 1;
  --enable-parallax: 1;
}

/* ============================
   DÉSACTIVER TOUTES LES ANIMATIONS
   Décommentez la section ci-dessous pour désactiver toutes les animations
============================ */

/*
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
*/

/* ============================
   MODE PERFORMANCE (animations simplifiées)
   Décommentez pour un mode plus léger
============================ */

/*
.hero {
  animation: none !important;
}

.hero img {
  animation: none !important;
}

.card-portfolio {
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

#chat-toggle {
  animation: none !important;
}
*/

/* ============================
   PERSONNALISATION RAPIDE
============================ */

/* Changer la couleur principale partout */
/*
:root {
  --primary-color: #FF5500;
  --secondary-color: #FF7733;
}
*/

/* Désactiver uniquement le loader de page */
/*
#page-loader {
  display: none !important;
}
*/

/* Désactiver le bouton scroll to top */
/*
#scroll-top {
  display: none !important;
}
*/

/* Réduire les animations au strict minimum */
/*
* {
  animation-duration: 0.3s !important;
  transition-duration: 0.3s !important;
}
*/

/* ============================
   ANIMATIONS PERSONNALISÉES
   Ajoutez vos propres animations ci-dessous
============================ */

/* Exemple : Animation personnalisée */
/*
@keyframes myCustomAnimation {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.my-element {
  animation: myCustomAnimation 0.5s ease-out;
}
*/
