/* =======================================================================
   File: components/footer.css                                                   
   Author: Émile SNYERS                                                    
   Date: 2025-08-16                                                       
   Version: v1.0.0                                                 
   Purpose: Pied de page animé (scanlines).                                                  
   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.
   ======================================================================= */
.aperture-footer {
  margin-top: 60px;
  padding: 30px;
  background: var(--aperture-grey);
  border-top: 3px solid var(--aperture-orange);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.aperture-footer::before {
  content: '';
  position: absolute; bottom: 0; left: 0; width: 100%; height: 100%;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 107, 53, 0.03) 2px, rgba(255, 107, 53, 0.03) 4px);
  animation: scanlineMove 10s linear infinite;
}
.footer-logo {
  width: 40px;
  height: 40px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.classification {
  font-family: 'Courier New', monospace;
  font-size: 0.8em;
  color: var(--aperture-orange);
  margin-top: 10px;
  z-index: 1;
  position: relative;
}
/* ===== End of components/footer.css | Author: Émile SNYERS | Date: 2025-08-16 | v1.0.0 ===== */
