/* =======================================================================
   File: components/section-header.css                                                   
   Author: Émile SNYERS                                                    
   Date: 2025-08-16                                                       
   Version: v1.0.0                                                 
   Purpose: Barre d'en-tête de section avec numéro animé.                                                  
   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.
   ======================================================================= */
.section-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--aperture-light-grey);
  position: relative;
}
.section-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--aperture-orange), var(--aperture-blue));
  animation: expandWidth 1s ease-out forwards;
  animation-delay: 0.5s;
}
.section-number {
  background: var(--aperture-orange);
  color: var(--aperture-dark);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
  animation: rotateIn 0.6s ease-out;
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}
.section-title {
  font-size: 1.8em;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* ===== End of components/section-header.css | Author: Émile SNYERS | Date: 2025-08-16 | v1.0.0 ===== */
