/* ==========================================================================
   Pin-Up Casino AZ — Animations
   ========================================================================== */

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes btnPulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(232,0,28,0.5), 0 0 0 0 rgba(232,0,28,0.4);
  }
  50% {
    box-shadow: 0 8px 28px rgba(232,0,28,0.7), 0 0 0 10px rgba(232,0,28,0);
  }
}

@keyframes shine {
  0%   { left: -20%; opacity: 0; }
  20%  { opacity: 1; }
  60%  { opacity: 1; }
  100% { left: 90%; opacity: 0; }
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes floatChip {
  0%, 100% { transform: translateY(0) translateX(-50%); }
  50%       { transform: translateY(-8px) translateX(-50%); }
}

@keyframes stickySlideUp {
  from { transform: translateY(110%); }
  to   { transform: translateY(0); }
}

@keyframes drawIn {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

@keyframes goldGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(255,215,0,0.2); }
  50%       { box-shadow: 0 0 40px rgba(255,215,0,0.45); }
}

/* Deco chip 2 and 3 override for no X translation */
.deco-chip--2 {
  animation-name: floatChip2;
}
.deco-chip--3 {
  animation-name: floatChip3;
}

@keyframes floatChip2 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

@keyframes floatChip3 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Hero entrance stagger */
.hero__pinup-art .card--1 {
  animation: scaleIn 0.8s var(--ease-out) 0.9s both;
}
.hero__pinup-art .card--2 {
  animation: scaleIn 0.8s var(--ease-out) 1.05s both;
}
.hero__pinup-art .card--3 {
  animation: scaleIn 0.8s var(--ease-out) 1.2s both;
}

/* Brand badge glow */
.brand-badge-center {
  animation: goldGlow 3s ease-in-out infinite;
}

/* Nav drawer */
@media (max-width: 768px) {
  .nav.is-open {
    animation: drawIn 0.32s var(--ease-out) both;
  }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
