/* =======================================================================
   File: components/warning-section.css                                                   
   Author: Émile SNYERS                                                    
   Date: 2025-08-16                                                       
   Version: v1.0.0                                                 
   Purpose: Bloc d'avertissement réutilisable (bande rayée animée).                                                  
   Notes: 
   - Code organisé par modules pour un projet plus professionnel.
   - Commentaires présents en tête de fichier et avant chaque bloc.
   - Les couleurs et styles initiaux sont conservés via des variables.
   ======================================================================= */
.warning-section {
  background: rgba(255, 107, 53, 0.1);
  border: 2px solid var(--aperture-orange);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
  animation: slideInLeft 0.8s ease-out;
}
.warning-section::before {
  content: '';
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 107, 53, 0.05) 10px, rgba(255, 107, 53, 0.05) 20px);
  animation: stripeMove 20s linear infinite;
}
.warning-icon {
  font-size: 3em;
  animation: warningBlink 2s ease-in-out infinite;
  z-index: 1;
}
/* ===== End of components/warning-section.css | Author: Émile SNYERS | Date: 2025-08-16 | v1.0.0 ===== */
