* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #080706;
  color: #f8f1e8;
  line-height: 1.7;
}

a {
  color: #efaa41;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.8rem 3vw;
  background: #050505;
  border-bottom: 1px solid rgba(239, 170, 65, 0.7);
}

.brand {
  color: #f8f1e8;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 900;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1;
}

.brand span {
  color: #efaa41;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.6rem);
}

.nav a {
  color: #f8f1e8;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  font-size: 0.95rem;
}

.nav a:hover {
  color: #efaa41;
}

.menu-toggle {
  display: none;
  background: transparent;
  color: #efaa41;
  border: 1px solid rgba(239, 170, 65, 0.6);
  border-radius: 0.4rem;
  padding: 0.35rem 0.6rem;
  font-size: 1.4rem;
}

.hero {
  min-height: 560px;
  background:
    radial-gradient(circle at center, rgba(239, 170, 65, 0.12), transparent 45%),
    linear-gradient(180deg, #070605 0%, #0f0c09 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(239, 170, 65, 0.5);
  overflow: hidden;
}

.hero-inner {
  width: 100%;
  text-align: center;
}

.eyebrow,
.section-label {
  color: #efaa41;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 900;
}

.hero-logo {
  width: min(100%, 1500px);
  display: block;
  margin: 0 auto;
}

.section {
  padding: 4.5rem 1.25rem;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
}

.narrow {
  max-width: 980px;
}

.centered {
  text-align: center;
}

h1,
h2 {
  margin: 0.4rem 0 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.about {
  background:
    radial-gradient(circle at center, rgba(239, 170, 65, 0.09), transparent 42%),
    #11100f;
}

.shows {
  background: #0b0a09;
}

.media {
  background: #11100f;
}

.booking {
  background: #17120d;
}

.button-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.button {
  display: inline-block;
  background: #efaa41;
  color: #11100f;
  border: 1px solid #efaa41;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.9rem 1.25rem;
  border-radius: 0.35rem;
}

.button.outline {
  background: transparent;
  color: #efaa41;
}

footer {
  background: #050505;
  text-align: center;
  padding: 1.5rem;
  color: rgba(248, 241, 232, 0.75);
}

/* Private promoter pages */
.private-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background:
    radial-gradient(circle at top, rgba(239, 170, 65, 0.18), transparent 34%),
    #080706;
}

.login-card,
.private-card {
  width: min(960px, 100%);
  background: #15110e;
  border: 1px solid rgba(239, 170, 65, 0.32);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.login-card {
  max-width: 480px;
}

.login-card input {
  width: 100%;
  padding: 0.9rem;
  margin: 1rem 0;
  border-radius: 0.5rem;
  border: 1px solid rgba(248, 241, 232, 0.2);
  background: #080706;
  color: #fff;
  font-size: 1rem;
}

.error {
  color: #ffb4a8;
  min-height: 1.5rem;
}

.private-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.private-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
}

.resource {
  background: #080706;
  border: 1px solid rgba(248, 241, 232, 0.1);
  border-radius: 1rem;
  padding: 1.25rem;
}

.resource h3 {
  color: #efaa41;
}

.resource ul {
  padding-left: 1.2rem;
}

.muted {
  color: rgba(248, 241, 232, 0.72);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    right: 1rem;
    top: 0.85rem;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .nav.open {
    display: flex;
  }

  .hero {
    min-height: auto;
  }

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