html {
  scroll-behavior: smooth;
}

/* Paper grain texture overlay */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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");
  background-size: 200px 200px;
}

/* Halftone dot texture (riso-print background) */
.riso-dots {
  background-image: radial-gradient(circle, rgba(19, 42, 69, 0.08) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
}

/* Riso misregistration effect on the headline */
.riso-offset {
  text-shadow: 4px 4px 0 rgba(15, 124, 116, 0.35);
}

/* Decorative section divider */
.sparkle-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
.sparkle-divider::before,
.sparkle-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.3;
}

/* Raffle-ticket eyebrow label: bites punched in both ends */
.stamp-label {
  position: relative;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.55em 1.3em;
  display: inline-block;
}
.stamp-label::before,
.stamp-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: translateY(-50%);
}
.stamp-label::before { left: -6px; }
.stamp-label::after  { right: -6px; }

/* Bite color matches the section background behind the tag */
.stamp-label--on-paper::before,
.stamp-label--on-paper::after { background: #F6F1E7; }
.stamp-label--on-navy::before,
.stamp-label--on-navy::after { background: #132A45; }

/* Watermark motif */
.hero-watermark {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20rem;
  opacity: 0.05;
  pointer-events: none;
  line-height: 1;
  user-select: none;
}

/* Above-the-fold badge pills (Free / Family Friendly / All Skill Levels Welcome) */
.badge-pill {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.45em 1.1em;
  display: inline-block;
}
.badge-navy   { background: #132A45; color: #F6F1E7; }
.badge-orange { background: #E4572E; color: #F6F1E7; }
.badge-teal   { background: #0F7C74; color: #F6F1E7; }

/* Nav mobile menu */
#mobile-menu {
  display: none;
}
#mobile-menu.open {
  display: flex;
}

/* Rotating past-session photo carousel */
.carousel-slide {
  opacity: 0;
  transition: opacity 1s ease;
}
.carousel-slide.is-active {
  opacity: 1;
}

/* Upcoming-shows ticket cards */
.ticket-card {
  position: relative;
  display: flex;
  background: #F6F1E7;
  color: #132A45;
}
.ticket-card::before,
.ticket-card::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #132A45;
  transform: translateY(-50%);
}
.ticket-card::before { left: -10px; }
.ticket-card::after  { right: -10px; }

.ticket-card-stub {
  flex-shrink: 0;
  width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 1.25rem 0.5rem;
  background: #E4572E;
  color: #F6F1E7;
}
.ticket-card--past .ticket-card-stub {
  background: rgba(19, 42, 69, 0.3);
  color: rgba(246, 241, 231, 0.6);
}
.ticket-card-dow {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.75;
}
.ticket-card-month {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ticket-card-day {
  font-family: 'Anton', sans-serif;
  font-size: 2.5rem;
  line-height: 1;
}
.ticket-card-admit {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
}

.ticket-card-perf {
  flex-shrink: 0;
  width: 0;
  margin: 14px 0;
  border-left: 2px dashed rgba(19, 42, 69, 0.25);
}

.ticket-card-body {
  flex: 1;
  padding: 1.1rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.ticket-card-weekday {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #0F7C74;
}
.ticket-card-meta {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.9rem;
  color: rgba(19, 42, 69, 0.7);
}
.ticket-card-cta {
  align-self: flex-start;
  margin-top: 0.4rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #E4572E;
  transition: color 0.15s ease;
}
.ticket-card-cta:hover {
  color: #132A45;
}
.ticket-card-cta--muted {
  color: #0F7C74;
}
.ticket-card--past .ticket-card-meta,
.ticket-card--past .ticket-card-weekday {
  opacity: 0.5;
}
