/* ============================================================
   ANIMATIONS — Goose Creek Auto & Radiator
   ============================================================ */

/* ── Scroll reveal ── */
.reveal-fade {
  opacity: 0;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ── Staggered delays ── */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ── Glow accent animation ── */
.glow-accent {
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: var(--glow-accent-sm); }
  50% { box-shadow: var(--glow-accent); }
}

/* ── Hero parallax ── */
.hero-parallax {
  will-change: transform;
}