/* ============================================================
   A & E Auto Upholstery — Animations
   Rule: BACKGROUND animations only. No text animations.
   ============================================================ */

/* ── Hero Background Animation ── */
@keyframes heroScale {
  from { transform: scale(1.06); }
  to   { transform: scale(1.00); }
}

.hero-bg {
  animation: heroScale 8s ease-out forwards;
}

/* ── CTA Button Bounce ── */
@keyframes btnBounce {
  0%, 50%, 100% { transform: translateY(0); }
  30%           { transform: translateY(-14px); }
  42%           { transform: translateY(-6px); }
  48%           { transform: translateY(-10px); }
}

.hero-buttons .btn--gold,
.cta-section .btn--gold {
  animation: btnBounce 1.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
}

/* ── Reduce motion: disable all animations ── */
@media (prefers-reduced-motion: reduce) {
  .hero-bg,
  .hero-buttons .btn--gold,
  .cta-section .btn--gold {
    animation: none;
  }
}
