/* ================================================================
   АНИМАЦИИ
   Чтобы полностью отключить анимации, можно временно удалить подключение
   этого файла из index.html.
================================================================ */

@keyframes floatGlow {
  0%, 100% { transform: translate3d(0,0,0) scale(1); opacity: .7; }
  50% { transform: translate3d(-24px,-12px,0) scale(1.08); opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-glow { animation: floatGlow 6s ease-in-out infinite; }
.reveal { opacity: 0; animation: fadeUp .7s ease forwards; }
.reveal-delay-1 { animation-delay: .12s; }
.reveal-delay-2 { animation-delay: .24s; }
.reveal-delay-3 { animation-delay: .36s; }
.reveal-delay-4 { animation-delay: .48s; }

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-on-scroll { opacity: 1 !important; transform: none !important; }
}
