/* Premium CSS Keyframe Animations for AsiaRestaurant.org */

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

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

@keyframes zoomIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes slowPan {
  0% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.08) translate(-1%, -1%);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}

/* Utility Animation Classes */
.animate-fade-in {
  animation: fadeIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.animate-slide-up {
  animation: slideUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.animate-zoom-in {
  animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero-image-zoom {
  animation: slowPan 25s ease-in-out infinite;
}

/* Stagger Delays */
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }
