/**
 * Animations & Micro-interactions
 * Iron & Smash Co. | Craft Smash Burgers & Truffle Fries
 */

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

@keyframes pulseEmber {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(235, 80, 20, 0.7);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 0 0 10px rgba(235, 80, 20, 0);
  }
}

.fade-in {
  animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@media (prefers-reduced-motion: reduce) {
  .fade-in,
  .pulse-hover:hover {
    animation: none !important;
  }
}
