/* ============================================================
 *  OUT WEST GLOW GOLF — SCROLL ANIMATIONS
 *  .reveal elements animate in when they enter the viewport.
 *  js/main.js adds the .revealed class via IntersectionObserver
 * ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Staggered children */
.reveal-group > *:nth-child(1) { transition-delay: 0ms;   }
.reveal-group > *:nth-child(2) { transition-delay: 100ms; }
.reveal-group > *:nth-child(3) { transition-delay: 200ms; }
.reveal-group > *:nth-child(4) { transition-delay: 300ms; }
.reveal-group > *:nth-child(5) { transition-delay: 400ms; }
.reveal-group > *:nth-child(6) { transition-delay: 500ms; }
