:root {
  --bg: #121214;
  --bg-alt: #1a1a1d;
  --gold: #f5a623;
  --gold-bright: #ffc94d;
  --green: #4ade80;
  --red: #e8544c;
  --text: #f2f0ea;
  --text-dim: #b8b5ad;
  --max-width: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: var(--gold-bright); }

img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(18, 18, 20, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #2a2a2e;
}

header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  height: 44px;
  width: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 0.95rem;
}

nav a:hover { color: var(--gold-bright); }

.nav-book {
  background: var(--gold);
  color: #1a1204 !important;
  padding: 8px 16px;
  border-radius: 999px;
}

.nav-book:hover {
  background: var(--gold-bright);
  color: #1a1204 !important;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: #0c0c0d;
  padding: 0;
}

.hero-banner {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: cover;
  display: block;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px 20px;
}

.btn-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--gold);
  color: #1a1204;
}
.btn-primary:hover { background: var(--gold-bright); }

.btn-secondary {
  border: 1px solid var(--gold);
  color: var(--gold-bright);
}
.btn-secondary:hover { background: rgba(245, 166, 35, 0.12); }

.btn-book {
  background: var(--green);
  color: #0c2313;
}
.btn-book:hover { background: #6ee89b; }

/* Section headings */
section {
  padding: 64px 0;
}

.section-alt { background: var(--bg-alt); }

.section-title {
  text-align: center;
  font-size: 2rem;
  color: var(--gold-bright);
  margin: 0 0 8px;
}

.section-sub {
  text-align: center;
  color: var(--text-dim);
  margin: 0 0 40px;
}

/* Info (Shows + About side by side) */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.info-col .section-title,
.info-col .section-sub {
  text-align: left;
}

.info-col .shows-list,
.info-col .about-content {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  text-align: left;
}

/* About */
.about-content {
  max-width: 720px;
  margin: 0 auto 20px;
  text-align: center;
  color: var(--text-dim);
  font-size: 1.08rem;
}

.about-content:last-child {
  margin-bottom: 0;
}

/* Shows */
.shows-list {
  max-width: 700px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.shows-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  background: var(--bg);
  border: 1px solid #2a2a2e;
  border-radius: 8px;
  margin-bottom: 14px;
}

.show-date {
  font-weight: 800;
  color: #0c0c0d;
  background: var(--gold);
  border-radius: 6px;
  padding: 8px 12px;
  min-width: 84px;
  text-align: center;
  line-height: 1.1;
}

.show-details {
  flex: 1;
}

.show-venue {
  font-weight: 700;
  font-size: 1.05rem;
}

.show-venue a {
  color: var(--text);
  text-decoration: none;
}

.show-venue a:hover {
  color: var(--gold-bright);
  text-decoration: underline;
}

.shows-empty {
  color: var(--text-dim);
  padding: 18px 22px;
  background: var(--bg);
  border: 1px solid #2a2a2e;
  border-radius: 8px;
}

.show-location {
  color: var(--text-dim);
  font-size: 0.92rem;
}

.show-time {
  color: var(--green);
  font-weight: 700;
  white-space: nowrap;
}

/* Videos */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.video-card {
  background: var(--bg);
  border: 1px solid #2a2a2e;
  border-radius: 8px;
  overflow: hidden;
}

.video-frame-wrap {
  position: relative;
  padding-top: 56.25%;
  background: #000;
}

.video-frame-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-title {
  padding: 12px 14px;
  font-size: 0.95rem;
  color: var(--text-dim);
}

.video-more {
  text-align: center;
  margin-top: 28px;
}

/* Footer / social */
footer {
  padding: 48px 0 32px;
  text-align: center;
  border-top: 1px solid #2a2a2e;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 18px 0;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
}

.social-links a:hover {
  background: rgba(245, 166, 35, 0.12);
  color: var(--gold-bright);
}

footer .fine-print {
  color: var(--text-dim);
  font-size: 0.85rem;
}

@media (max-width: 800px) {
  .btn-row { justify-content: center; }
  nav ul { gap: 14px; }
  .shows-list li { flex-wrap: wrap; }
  .info-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 520px) {
  nav ul { font-size: 0.85rem; gap: 10px; }
  .brand span.wordmark { display: none; }
}
