* {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0a0704;
  font-family: "Anton", sans-serif;
}

.anton-regular {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 0 24px 48px;
  pointer-events: none;
}

.site-header {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 32px;
  background: transparent;
  pointer-events: none;
}

body.menu-open .site-header {
  visibility: hidden;
  pointer-events: none;
}

.site-header-logo {
  color: #f5e6c8;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* Desktop nav bar: centered at the top, transparent background.
   Hidden on mobile/tablet in favor of the hamburger menu. */
.site-header-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(900px, 64vw);
  background: transparent;
  pointer-events: auto;
}

..site-header-nav a {
    color: #f5e6c8;
    font-size: 10px;
    font-weight: 400;
    font-family: system-ui;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 5px;
    opacity: 0.85;
    transition: opacity 0.15s ease;
}

.site-header-nav a:hover {
  opacity: 1;
}

.site-header-nav a[aria-current="page"] {
  opacity: 1;
  border-bottom: 1px solid #d4af37;
  padding-bottom: 4px;
}

.site-header-nav .site-header-cta {
  padding: 8px 22px;
  border-radius: 999px;
  border: 1px solid #ffffff;
  color: #ffffff;
  opacity: 1;
  transition: background 0.15s ease, transform 0.15s ease;
}

.site-header-nav .site-header-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

/* Hamburger button — mobile/tablet only (see media query below) */
.hamburger-btn {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  pointer-events: auto;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: #f5e6c8;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.hamburger-btn.is-active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger-btn.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Full-page dropdown menu */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #0a0704;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-close {
  position: absolute;
  top: 18px;
  right: 24px;
  width: 40px;
  height: 40px;
  font-size: 32px;
  line-height: 1;
  background: transparent;
  border: none;
  color: #f5e6c8;
  cursor: pointer;
}

.menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.menu-links a {
  color: #f5e6c8;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.15s ease;
}

.menu-links a:hover {
  color: #d4af37;
}

.menu-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #f5e6c8;
  text-decoration: none;
}

.menu-social-icon {
  width: 28px;
  height: 28px;
}

.menu-social-label {
  font-size: 12px;
  letter-spacing: 0.03em;
  opacity: 0.8;
}

/* Pushes the copy/buttons below the logo, which sits mid-screen inside the
   WebGL scene. Adjust this height if you change the logo plane size or
   camera position in script.js. */
.logo-spacer {
  flex: 0 0 auto;
  height: 56vh;
}

.tagline {
  max-width: 560px;
  color: #f5e6c8;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 28px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.cta-group {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  pointer-events: auto;
}

.cta-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 999px;
    font-size: 25px;
    font-weight: 400;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    width: 220px;
    white-space: nowrap;
}

.menu-text {
    color: #f5e6c8;
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
        line-height: 22px;
        margin:15px 0;
}
.small-menu-text {
     color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    font-size: 10px;
}

.cta-primary {
  background: none;
  border: 1px solid #ffffff;
  color: #ffffff;
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.35);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(212, 175, 55, 0.55);
}

.cta-secondary {
  background: transparent;
  color: #f5e6c8;
  border: 1px solid rgba(245, 230, 200, 0.5);
}

.cta-secondary:hover {
  transform: translateY(-2px);
  background: rgba(245, 230, 200, 0.08);
  border-color: #f5e6c8;
}

/* ---------------------------------------------------------------- */
/* Inner content pages (lineup / info / location / contact)          */
/* These pages don't use the WebGL hero, so overflow is allowed to   */
/* scroll and the header is pinned to the top instead of living      */
/* inside the fixed full-screen hero overlay.                        */
/* ---------------------------------------------------------------- */

html.content-page,
body.content-page {
  overflow-y: auto;
  height: auto;
  min-height: 100vh;
}

body.content-page .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(10, 7, 4, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.page-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding: 160px 24px 100px;
  color: #f5e6c8;
  font-family: Arial, Helvetica, sans-serif;
  text-align: left;
}

.page-content h1 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: 44px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #f5e6c8;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.page-content h2 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #d4af37;
  margin: 36px 0 12px;
}

.page-content p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 16px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.page-content a.inline-link {
  color: #d4af37;
  text-decoration: underline;
}

.page-content .page-cta {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 28px;
  border-radius: 999px;
  border: 1px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  font-family: "Anton", sans-serif;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.page-content .page-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.4);
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.lineup-card {
  border: 1px solid rgba(245, 230, 200, 0.25);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.lineup-card .lineup-name {
  font-family: "Anton", sans-serif;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.lineup-card .lineup-slot {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.7;
}

.info-list {
  list-style: none;
  margin: 12px 0 24px;
}

.info-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(245, 230, 200, 0.15);
  font-size: 15px;
}

.info-list li span:first-child {
  opacity: 0.65;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.05em;
  padding-top: 2px;
}

.map-frame {
  width: 100%;
  height: 320px;
  border: 1px solid rgba(245, 230, 200, 0.25);
  border-radius: 10px;
  margin: 20px 0;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0 32px;
}

.contact-methods a {
  color: #f5e6c8;
  text-decoration: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-methods a:hover {
  color: #d4af37;
}

@media (max-width: 640px) {
  .page-content {
    padding: 120px 20px 80px;
  }

  .page-content h1 {
    font-size: 32px;
  }

  .lineup-grid {
    grid-template-columns: 1fr;
  }

  .info-list li {
    flex-direction: column;
    gap: 4px;
  }
}

/* Tablet and below: hide the desktop nav, show the hamburger and hero
   button instead. .logo-spacer above .cta-group in the markup is what
   keeps this button positioned under the logo. */
@media (max-width: 1024px) {
  .site-header-nav {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .cta-group {
    display: flex;
  }
}

@media (max-width: 640px) {
  .logo-spacer {
    height: 50vh;
  }

  .site-header {
    padding: 16px 20px;
  }

  .menu-links a {
    font-size: 26px;
  }

  .tagline {
    font-size: 15px;
    padding: 0 8px;
  }

  .cta-group {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
  }
}
