/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg: #ffffff;
  --color-text: #1a1a1a;
  --color-muted: #666666;
  --color-accent: #1a1a1a;
  --font-body: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --nav-height: 100px;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

/* ─── Header / Nav ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-bg);
  border-bottom: 1px solid #e8e8e8;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 40px;
}

.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo img {
  height: 75px;
  width: auto;
}

.site-logo .logo-text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

/* Primary nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  transition: opacity 0.15s;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 0.5;
  text-decoration: none;
}

/* Social icons */
.nav-social {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
}

.nav-social a {
  display: flex;
  align-items: center;
  opacity: 0.85;
  transition: opacity 0.15s;
}

.nav-social a:hover {
  opacity: 0.4;
}

.nav-social svg {
  width: 20px;
  height: 20px;
  fill: var(--color-text);
}

/* ─── Main content ─────────────────────────────────────────── */
main {
  flex: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 40px 120px;
}

/* ─── Page heading ─────────────────────────────────────────── */
.page-heading {
  margin-bottom: 60px;
}

.page-heading h1 {
  font-size: clamp(32px, 5.6vw, 58px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: lowercase;
  color: var(--color-text);
  opacity: 0.35;
}

.page-heading .subtitle {
  margin-top: 16px;
  font-size: 14px;
  color: var(--color-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ─── Gigs / Bandsintown section ───────────────────────────── */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 32px;
}

.bit-widget-wrapper {
  margin-top: 8px;
}

/* Bandsintown widget override: keep it on-brand */
.bit-widget .bit-top-track-button,
.bit-widget .bit-follow-section {
  display: none !important;
}

/* ─── Events list ──────────────────────────────────────────── */
.event-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid #e8e8e8;
}

.event-row:first-child {
  border-top: 1px solid #e8e8e8;
}

.event-date {
  font-size: 14px;
  font-weight: 500;
  min-width: 120px;
  flex-shrink: 0;
}

.event-venue {
  font-size: 14px;
  color: var(--color-muted);
  flex: 1;
}

.event-desc {
  font-size: 12px;
  color: var(--color-muted);
  opacity: 0.6;
}

.event-btn {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--color-text);
  padding: 6px 14px;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}

.event-btn:hover {
  background: var(--color-text);
  color: var(--color-bg);
  text-decoration: none;
}

.event-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.event-tag.sold-out { color: var(--color-muted); }
.event-tag.free { color: var(--color-text); }

.no-events {
  font-size: 14px;
  color: var(--color-muted);
}

/* ─── Contact page ─────────────────────────────────────────── */
.contact-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-item .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.contact-item .value {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

.contact-item a {
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity 0.15s;
}

.contact-item a:hover {
  opacity: 0.5;
  text-decoration: none;
}

/* Description paragraph */
.label-description {
  max-width: 560px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-muted);
  margin-top: 48px;
}

/* ─── Footer ───────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid #e8e8e8;
  padding: 28px 40px;
  text-align: center;
}

.site-footer p {
  font-size: 12px;
  color: var(--color-muted);
  letter-spacing: 0.06em;
}

.site-footer .footer-description {
  margin-bottom: 8px;
}

/* ─── Mobile ───────────────────────────────────────────────── */
@media (max-width: 640px) {
  .site-header {
    padding: 0 20px;
    height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .nav-inner {
    flex-wrap: wrap;
  }

  .site-logo {
    width: 100%;
  }

  .nav-links {
    gap: 20px;
    flex: 1;
  }

  main {
    padding: 48px 20px 80px;
  }

  .site-footer {
    padding: 24px 20px;
  }
}
