/* ==========================================================================
   ULTRALOWFI — site stylesheet
   One file, used by every page. Search for "COLORS" below to re-theme.
   ========================================================================== */

:root {
  /* COLORS — change these 3 to re-theme the whole site */
  --accent: #c1442d;        /* rust red — buttons, links, highlights */
  --accent-2: #d9a441;      /* amber — sparing use, tags */
  --bg: #0b0b0d;             /* page background */

  --bg-alt: #131316;
  --bg-card: #17171a;
  --line: rgba(255, 255, 255, 0.09);
  --fg: #f3f1ec;
  --fg-dim: #a39d93;
  --fg-mute: #6d675f;
  --accent-soft: rgba(193, 68, 45, 0.14);
  --radius: 10px;
  --maxw: 1120px;
  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; }

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

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.02;
  margin: 0;
  text-transform: uppercase;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin: 0 0 14px;
}

.eyebrow.on-accent { color: var(--accent-2); }

p { color: var(--fg-dim); margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.15s, border-color 0.15s, background 0.15s;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { opacity: 0.87; }
.btn-ghost { border-color: rgba(255,255,255,0.25); color: var(--fg); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); }
.btn-light { background: #fff; color: #111; }
.btn-light:hover { opacity: 0.87; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Nav ─────────────────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 9, 10, 0.98);
  border-bottom: 1px solid var(--line);
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--fg);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--fg-dim);
  font-weight: 600;
  transition: color 0.15s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--fg); }
.nav-links a.active { color: var(--accent-2); }
.nav-cta {
  margin-left: 8px;
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  width: 42px;
  height: 42px;
  color: var(--fg);
  font-size: 18px;
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 72px;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
    gap: 22px;
    transform: translateX(100%);
    transition: transform 0.2s ease;
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 16px; }
  .nav-cta { margin-left: 0; }
}

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: flex-end;
  background: #000 url("../images/hero-band.jpg") center 30% / cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(11,11,13,1) 0%, rgba(11,11,13,0.55) 40%, rgba(11,11,13,0.25) 70%),
    linear-gradient(120deg, rgba(193,68,45,0.18), transparent 55%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 80px 0 56px;
  width: 100%;
}
.hero-title {
  font-size: clamp(56px, 11vw, 128px);
  color: #fff;
}
.hero-sub {
  color: var(--fg-dim);
  font-size: 18px;
  margin: 14px 0 30px;
  font-style: italic;
}

/* smaller page-header hero for interior pages */
.page-header {
  padding: 64px 0 40px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg-alt), var(--bg));
}
.page-header h1 { font-size: clamp(44px, 8vw, 80px); }
.page-header .sub { font-size: 17px; color: var(--fg-dim); margin-top: 10px; max-width: 640px; }

/* ── Sections ────────────────────────────────────────────────────────── */
section { padding: 64px 0; }
section.alt { background: var(--bg-alt); }
.divider { border: none; border-top: 1px solid var(--line); margin: 0; }

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 800px) {
  .two-col { grid-template-columns: 1fr; gap: 36px; }
}

.sec-title { font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
.sec-body { max-width: 62ch; }

/* ── Tags ────────────────────────────────────────────────────────────── */
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tag {
  font-size: 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 6px 14px;
  color: var(--fg-dim);
}
.tag.hot { border-color: rgba(193,68,45,0.5); color: #e5a08f; background: var(--accent-soft); }

/* ── Cards / grids ───────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
}

.member-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (max-width: 620px) { .member-grid { grid-template-columns: 1fr; } }
.member h3 { font-size: 22px; letter-spacing: 0.02em; margin-bottom: 4px; }
.member .role { font-size: 12px; color: var(--accent-2); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 10px; }
.member p { font-size: 14px; }

.venue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 20px;
}
@media (max-width: 760px) { .venue-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .venue-grid { grid-template-columns: 1fr; } }
.venue-badge {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--fg-dim);
  text-align: center;
}
.venue-badge.highlight { border-color: rgba(217,164,65,0.45); color: var(--accent-2); background: rgba(217,164,65,0.06); }

/* ── Show rows ───────────────────────────────────────────────────────── */
.show-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.show-row:last-child { border-bottom: none; }
.show-date {
  min-width: 92px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--fg);
  letter-spacing: 0.02em;
}
.show-info { flex: 1; }
.show-venue { font-weight: 700; font-size: 16px; }
.show-meta { font-size: 13px; color: var(--fg-mute); margin-top: 2px; }

.empty-state {
  text-align: center;
  padding: 56px 24px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}
.empty-state p { max-width: 46ch; margin: 10px auto 22px; }

/* ── Placeholder media blocks (swap these for real photos/video) ──────── */
.media-placeholder {
  background: repeating-linear-gradient(135deg, #1a1a1e, #1a1a1e 10px, #1e1e22 10px, #1e1e22 20px);
  border: 1px dashed rgba(255,255,255,0.18);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: var(--fg-mute);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.media-placeholder .fname {
  display: block;
  margin-top: 6px;
  font-family: monospace;
  color: var(--accent-2);
  font-size: 12px;
}
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.gallery-grid .media-placeholder { aspect-ratio: 4/3; }
.gallery-grid .real-photo { aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius); }
.gallery-grid .real-photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 700px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

.video-embed-wrap { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.video-embed-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.clip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 14px; }
@media (max-width: 700px) { .clip-grid { grid-template-columns: 1fr; } }

/* ── Spec grid (EPK technical) ──────────────────────────────────────── */
.spec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 26px 0; }
@media (max-width: 700px) { .spec-grid { grid-template-columns: repeat(2, 1fr); } }
.spec { background: var(--bg-card); border: 1px solid var(--line); border-radius: 8px; padding: 16px; text-align: center; }
.spec .val { font-family: var(--font-display); font-size: 20px; color: var(--fg); letter-spacing: 0.02em; }
.spec .label { font-size: 10px; color: var(--fg-mute); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

/* ── Booking box ─────────────────────────────────────────────────────── */
.booking-box {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
}

/* ── Contact form (static — mailto fallback) ────────────────────────── */
.form-grid { display: grid; gap: 16px; max-width: 560px; }
label { display: block; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fg-mute); margin-bottom: 6px; }
input, select, textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 14px;
}
textarea { resize: vertical; min-height: 120px; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent); }
.form-note { font-size: 12px; color: var(--fg-mute); margin-top: 10px; }

.contact-direct { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 10px; }

/* ── Footer ──────────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  background: #08080a;
}
.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-tagline { font-size: 13px; color: var(--fg-mute); font-style: italic; }
.footer-copy { font-size: 12px; color: #48453f; margin-top: 4px; }
.footer-socials { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-socials a {
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--fg-mute);
  transition: color 0.15s;
}
.footer-socials a:hover { color: var(--fg); }

/* ── Utility ─────────────────────────────────────────────────────────── */
.mt-lg { margin-top: 40px; }
.text-center { text-align: center; }
.center-wrap { max-width: 720px; margin: 0 auto; }
