/* ============================================
   STELLA PADEL — Reveal au scroll
   ============================================ */

.stella-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

.stella-reveal:nth-child(2) { transition-delay: 0.1s; }
.stella-reveal:nth-child(3) { transition-delay: 0.2s; }
.stella-reveal:nth-child(4) { transition-delay: 0.3s; }

.stella-reveal-slow  { transition-duration: 1.3s !important; }
.stella-reveal-fast  { transition-duration: 0.55s !important; }

@media (prefers-reduced-motion: reduce) {
  .stella-reveal {
    opacity: 0;
    transform: none !important;
    transition: opacity 0.3s ease !important;
  }
  .stella-reveal.is-visible {
    opacity: 1;
  }
}