/*
 * r66-grit.css — Live on Route 66 visual grit layer
 * Neon glow, film grain, vignette, glass cards, scroll animations
 * Enqueued after child theme style.css via functions.php
 */

/* ── 1. Real neon tube glow ── */
.r66-hero .r66-wm-on {
  color: var(--r66-gold);
  text-shadow:
    0 0 7px  rgba(230, 178, 58, 0.6),
    0 0 10px rgba(230, 178, 58, 0.4),
    0 0 21px rgba(230, 178, 58, 0.3),
    0 0 42px rgba(230, 178, 58, 0.15);
  animation: r66-tube-flicker 3s infinite;
}

@keyframes r66-tube-flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow: 0 0 7px rgba(230,178,58,0.6), 0 0 10px rgba(230,178,58,0.4), 0 0 21px rgba(230,178,58,0.3), 0 0 42px rgba(230,178,58,0.15);
  }
  20%, 24%, 55% {
    text-shadow: 0 0 2px rgba(230,178,58,0.3);
  }
}

/* ── 2. Film grain overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ── 3. Vignette on hero ── */
.r66-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 200px 100px var(--r66-asphalt);
  pointer-events: none;
  z-index: 2;
}

/* ── 4. Custom text selection ── */
::selection {
  background: var(--r66-red);
  color: var(--r66-cream);
}

/* ── 5. Tighter, bigger display type ── */
.r66-wm-route {
  font-size: clamp(64px, 12vw, 140px);
  line-height: 0.875;
  letter-spacing: -0.02em;
}

/* ── 6. Glass cards for events ── */
.r66-event-card,
.r66-tonight__pick,
.tribe-events-calendar-list__event-row {
  background: rgba(27, 24, 26, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(230, 178, 58, 0.1);
  box-shadow: inset 0 1px 0 rgba(230, 178, 58, 0.05);
}

/* ── 7. Scroll-triggered entrances ── */
.r66-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.r66-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── 8. Hero lede voice treatment ── */
.r66-hero-lede {
  font-family: 'Zilla Slab', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--r66-cream);
  text-shadow: 0 2px 12px rgba(18, 16, 17, 0.8);
  max-width: 640px;
  margin: 1.5rem auto 2rem;
}

/* ── 9. Tonight section glow ── */
.r66-tonight {
  position: relative;
}
.r66-tonight::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--r66-gold);
  box-shadow: 0 0 10px rgba(230, 178, 58, 0.5), 0 0 20px rgba(230, 178, 58, 0.3);
}

/* ── 10. Scoreboard numerals ── */
.r66-lens-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1;
  color: var(--r66-gold);
  text-shadow: 0 0 20px rgba(230, 178, 58, 0.3);
}

/* ── 11. CTA buttons ── */
.r66-btn-big {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--r66-asphalt);
  background: var(--r66-gold);
  border: 2px solid var(--r66-gold);
  transition: all 0.3s ease;
}
.r66-btn-big:hover {
  background: transparent;
  color: var(--r66-gold);
  box-shadow: 0 0 20px rgba(230, 178, 58, 0.3);
}

.r66-btn-ghost {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--r66-gold);
  background: transparent;
  border: 2px solid var(--r66-gold);
  transition: all 0.3s ease;
}
.r66-btn-ghost:hover {
  background: var(--r66-gold);
  color: var(--r66-asphalt);
}

/* ── 12. About CTA block ── */
.r66-about-cta {
  margin-top: 3rem;
  padding: 2rem;
  text-align: center;
  border-top: 1px solid rgba(230, 178, 58, 0.2);
}
.r66-about-cta p {
  font-family: 'Zilla Slab', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--r66-cream);
  margin-bottom: 1.5rem;
}
.r66-about-cta a {
  margin: 0 0.5rem 1rem;
}


/* About page video accessibility */
@media (prefers-reduced-motion: reduce) {
  .wa-hero video { display: none; }
  .wa-hero .wa-rm { display: block !important; }
}
