/* ---------- Fonts ---------- */
@font-face {
  font-family: "Poppins"; font-style: normal; font-weight: 400; font-display: swap;
  src: url("../fonts/Poppins-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Poppins"; font-style: italic; font-weight: 400; font-display: swap;
  src: url("../fonts/Poppins-Italic.ttf") format("truetype");
}
@font-face {
  font-family: "Poppins"; font-style: normal; font-weight: 500; font-display: swap;
  src: url("../fonts/Poppins-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Poppins"; font-style: normal; font-weight: 600; font-display: swap;
  src: url("../fonts/Poppins-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "Poppins"; font-style: normal; font-weight: 700; font-display: swap;
  src: url("../fonts/Poppins-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Poppins"; font-style: normal; font-weight: 900; font-display: swap;
  src: url("../fonts/Poppins-Black.ttf") format("truetype");
}

/* ---------- Tokens ---------- */
:root {
  --yellow: #ffe600;
  --blue:   #293af4;
  --orange: #fa5c28;
  --white:  #ffffff;
  --ink:    #111111;

  --nav-height: 64px;
  --max-w: 1100px;
  --radius: 8px;

  --shadow-card: 0 24px 50px rgba(0, 0, 0, 0.18), 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-poster: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }
body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--yellow);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 20px;
  background: rgba(255, 230, 0, 0.92);
  backdrop-filter: saturate(140%) blur(6px);
  -webkit-backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 2px solid transparent;
  z-index: 100;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.nav.is-scrolled {
  border-bottom-color: var(--ink);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.05);
}
.nav-brand { display: inline-flex; align-items: center; height: 100%; }
.nav-brand img { height: 28px; width: auto; }

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 6px 2px;
  border-bottom: 3px solid transparent;
}
.nav-links a:hover { border-bottom-color: var(--orange); }
.nav-links a.is-active { border-bottom-color: var(--blue); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  gap: 5px;
  flex-direction: column;
}
.nav-toggle span {
  width: 26px; height: 3px;
  background: var(--ink);
  border-radius: 3px;
  transition: transform .2s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0;
    flex-direction: column;
    align-items: center;
    gap: 0;
    background: var(--yellow);
    padding: calc(var(--nav-height) + 30px) 20px 40px;
    border-bottom: 4px solid var(--ink);
    transform: translateY(-100%);
    transition: transform .25s ease;
  }
  .nav-links a {
    display: block;
    font-size: 36px;
    font-weight: 900;
    padding: 14px 0;
    border: 0;
  }
  .nav-links a.is-active { color: var(--blue); border: 0; }
  .nav[data-menu-open="true"] .nav-links { transform: translateY(0); }
}

/* ---------- Type helpers ---------- */
.display {
  font-weight: 900;
  font-size: clamp(38px, 7vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0;
}
.display.blue   { color: var(--blue); }
.display.ink    { color: var(--ink); }
.display.white  { color: var(--white); }
.display.yellow { color: var(--yellow); }
.display.orange { color: var(--orange); }

.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 18px;
  padding: 6px 10px;
  border-radius: 3px;
}
.eyebrow-yellow { background: var(--yellow); color: var(--ink); }
.eyebrow-orange { background: var(--orange); color: var(--white); }
.eyebrow-blue   { background: var(--blue); color: var(--white); }

/* ---------- Hero ---------- */
.hero {
  height: 100svh;
  padding-top: var(--nav-height);
  background: var(--yellow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-logo {
  width: min(820px, 92vw);
  padding: 20px 20px 16px;
  margin: 0 auto;
  flex: 0 0 auto;
}
.hero-logo img { width: 100%; }

/* ---------- Carousel ---------- */
.carousel {
  position: relative;
  overflow: hidden;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  background: var(--ink);
}
.carousel-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform .45s ease;
}
.slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
}
.slide > img {
  width: 100%; height: 100%; object-fit: cover;
}
.slide .emblem {
  position: absolute;
  top: 62%;
  left: 58%;
  width: clamp(120px, 20vw, 230px);
  height: auto;
  transform: translate(-50%, -50%) rotate(-8deg);
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.35));
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 0;
  background: var(--orange);
  color: var(--white);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
  transition: transform .15s;
}
.carousel-btn:hover { transform: translateY(-50%) scale(1.07); }
.carousel-btn.prev { left: 18px; }
.carousel-btn.next { right: 18px; }

.carousel-dots {
  position: absolute;
  bottom: 18px; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.carousel-dots button {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: transparent;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  transition: background .15s, transform .15s;
}
.carousel-dots button:hover { transform: scale(1.15); }
.carousel-dots button[aria-selected="true"] { background: var(--blue); border-color: var(--white); }

/* ---------- Poster section ---------- */
.poster-section {
  background: #e5e5e5;
  padding: 0;
  display: flex;
  justify-content: center;
}
.poster-section img {
  display: block;
  width: 100%;
  max-width: 100%;
}
@media (min-width: 720px) {
  .poster-section {
    padding: clamp(40px, 6vw, 96px) 20px;
  }
  .poster-section img {
    max-width: 900px;
  }
}

/* ---------- Info section ---------- */
.info-section {
  background: var(--orange);
  padding: clamp(80px, 11vw, 140px) 20px;
  display: grid;
  place-items: center;
  position: relative;
}
.info-card {
  background: var(--white);
  max-width: 880px;
  width: 100%;
  padding: clamp(28px, 5vw, 56px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transform: rotate(-1.2deg);
  position: relative;
}
.info-card .display { margin-bottom: 32px; }

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px 36px;
  margin: 0;
}
.info-grid > div {
  padding: 16px 0;
  border-top: 2px solid var(--ink);
}
.info-grid dt {
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.info-grid dd {
  margin: 0;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.5;
}
@media (min-width: 760px) {
  .info-grid { grid-template-columns: 1fr 1fr; }
}

.sticker {
  position: absolute;
  display: grid;
  place-items: center;
  width: 120px; height: 120px;
  border-radius: 50%;
  text-align: center;
  font-weight: 900;
  font-size: 13px;
  line-height: 1.15;
  padding: 10px;
  letter-spacing: 0.02em;
  border: 3px solid var(--ink);
  box-shadow: 0 6px 14px rgba(0,0,0,0.18);
  pointer-events: none;
}
.sticker-yellow { background: var(--yellow); color: var(--ink); }
.sticker-blue   { background: var(--blue);   color: var(--white); }
.sticker-top    { top: -36px; right: -24px; transform: rotate(12deg); }
.sticker-bottom { bottom: -36px; left: -24px; transform: rotate(-10deg); }
@media (max-width: 640px) {
  .sticker { width: 92px; height: 92px; font-size: 11px; }
  .sticker-top { top: -22px; right: -10px; }
  .sticker-bottom { bottom: -22px; left: -10px; }
}

/* ---------- Activities ---------- */
.activities-section {
  background: var(--yellow);
  padding: clamp(80px, 11vw, 140px) 20px;
  text-align: center;
}
.activities-section .display { margin-bottom: 48px; }

.activities-grid {
  display: grid;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .activities-grid { grid-template-columns: 1fr 1fr; }
}

.activity-card {
  background: var(--white);
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  text-align: left;
}
.activity-card:nth-child(odd)  { transform: rotate(-1.2deg); }
.activity-card:nth-child(even) { transform: rotate(1.2deg); }

.activity-icon {
  font-size: clamp(44px, 5.5vw, 60px);
  line-height: 1;
  margin-bottom: 14px;
}
.activity-card h3 {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 900;
  margin: 0 0 12px;
  color: var(--ink);
  line-height: 1.1;
}
.activity-card p {
  margin: 0 0 12px;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.55;
}
.activity-card p:last-child { margin-bottom: 0; }
.activity-theme strong { color: var(--orange); }

/* ---------- Diagonal divider ---------- */
.divider-diagonal {
  background: var(--yellow);
  line-height: 0;
}
.divider-diagonal svg {
  display: block;
  width: 100%;
  height: clamp(40px, 6vw, 80px);
}

/* ---------- Payment ---------- */
.pay-section {
  background: var(--blue);
  padding: clamp(80px, 11vw, 140px) 20px;
  display: grid;
  place-items: center;
}
.pay-card {
  background: var(--white);
  max-width: 720px;
  width: 100%;
  padding: clamp(28px, 5vw, 56px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transform: rotate(1.2deg);
  text-align: left;
}
.pay-card .display { margin-bottom: 22px; }
.pay-blurb {
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.55;
  margin: 0 0 28px;
}
.cta {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.04em;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 17px;
  box-shadow: 0 6px 18px rgba(250, 92, 40, 0.4);
  transition: transform .12s, box-shadow .12s;
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(250, 92, 40, 0.5); }

.pay-methods {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  font-size: 14px;
  line-height: 1.5;
}
.pay-methods li {
  padding: 14px 16px;
  background: var(--yellow);
  border-radius: var(--radius);
}
.pay-methods strong {
  display: inline-block;
  margin-bottom: 4px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  color: var(--blue);
}
.copy-text {
  background: transparent;
  border: 0;
  padding: 0 2px;
  font: inherit;
  font-weight: 700;
  color: var(--blue);
  cursor: copy;
  border-bottom: 1px dashed currentColor;
  border-radius: 0;
  transition: color .15s, background .15s;
}
.copy-text:hover { background: rgba(41, 58, 244, 0.1); }
.copy-text.is-copied {
  color: var(--orange);
  background: rgba(250, 92, 40, 0.15);
  border-bottom-style: solid;
}
@media (min-width: 640px) {
  .pay-methods { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Merch ---------- */
.merch-section {
  background: var(--yellow);
  padding: clamp(80px, 12vw, 160px) 20px;
  text-align: center;
}
.merch-section .eyebrow { margin-bottom: 24px; }
.merch-headline {
  font-size: clamp(56px, 13vw, 180px);
  line-height: 0.82;
  transform: rotate(-2deg);
  display: inline-block;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  padding: 22px 20px;
  font-size: 13px;
  letter-spacing: 0.06em;
}
.site-footer p { margin: 0; opacity: 0.85; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .carousel-track { transition: none; }
  .carousel-btn { transition: none; }
  .cta { transition: none; }
}
