/* ---- Animations ---- */

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(107, 76, 56, 0); }
  50% { box-shadow: 0 0 18px 0 rgba(107, 76, 56, 0.12); }
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.badge {
  animation: pulse-glow 4s ease-in-out infinite;
}

.scroll-hint .line {
  animation: float 2.4s ease-in-out infinite;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.14s; }
.reveal-delay-3 { transition-delay: 0.20s; }

/* Hover micro-lift shared */
.service-card, .course-card, .testimonial-card, .gallery-item {
  will-change: transform;
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  .badge { animation: none; }
  .scroll-hint .line { animation: none; }
}
