/* =========================================
   Anima Shala — Animations
   ========================================= */

/* -------------------------
   Keyframes
   ------------------------- */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* -------------------------
   Hero entrance
   ------------------------- */
.hero-location,
.hero-description {
  opacity: 0;
}

.hero-location.animate,
.hero-description.animate {
  animation: fadeIn 0.9s ease forwards;
}

.hero-location:nth-child(1).animate {
  animation-delay: 0.3s;
}

.hero-location:nth-child(2).animate,
.hero-description.animate {
  animation-delay: 0.55s;
}

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

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

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered children */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.12s; }
.stagger > *:nth-child(3) { transition-delay: 0.24s; }
