/* ==============================================
   Académie Page Styles
   ============================================== */

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  .hero-fade-in,
  .hero-img-wrapper img,
  .mission-row img,
  .mission-row .mission-content {
    animation: none !important;
    transition: none !important;
  }
}

/* --- Hero Section --- */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-fade-in {
  opacity: 0;
  animation: heroFadeUp 0.7s ease-out forwards;
}

.hero-fade-delay-1 {
  animation-delay: 0.15s;
}
.hero-fade-delay-2 {
  animation-delay: 0.3s;
}
.hero-fade-delay-3 {
  animation-delay: 0.45s;
}

.hero-img-wrapper img {
  transition: transform 0.4s ease;
}

.hero-img-wrapper:hover img {
  transform: scale(1.03);
}

/* --- Mission Section --- */
.mission-row img {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.mission-row:hover img {
  transform: scale(1.03);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.mission-accent-bar {
  width: 48px;
  height: 4px;
  border-radius: 9999px;
  transition: width 0.4s ease;
}

.mission-row:hover .mission-accent-bar {
  width: 80px;
}
