/* ==========================================================================
   KALASH GROUP SUBTLE ANIMATIONS & TRANSITIONS
   animations.css
   ========================================================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes pulseGold {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(194, 155, 56, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(194, 155, 56, 0);
  }
}

/* Reveal utility classes */
.kg-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.kg-slide-up {
  animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.kg-card {
  will-change: transform, box-shadow;
}

/* Accessibility: Respect user's motion preference */
@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;
  }
}
