/* Shama Training Academy - Motion & Micro-interactions */

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

@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

@keyframes goldGlow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
  }
  50% {
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.5);
  }
}

.animate-fade-up {
  animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-float {
  animation: floatSlow 6s ease-in-out infinite;
}

.animate-glow {
  animation: goldGlow 4s infinite;
}

/* Reduced Motion Override */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
