/* ===================================================
   THE CON ARTISTS — CLEAN EDITORIAL EPK
   Authentic, direct, zero-nonsense live music one-sheet
   =================================================== */

:root {
  --bg-main: #0B0C0E;
  --bg-subtle: #121418;
  --bg-card: #181B22;
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.2);

  --text-main: #F3F4F6;
  --text-muted: #94A3B8;
  --text-dim: #64748B;

  --accent-yellow: #FACC15;
  --accent-blue: #38BDF8;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===================================================
   HEADER
   =================================================== */
.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(11, 12, 14, 0.95);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
}
.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-brand {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.brand-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #FFFFFF;
}
.brand-loc {
  font-size: 0.85rem;
  color: var(--text-dim);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nav-social {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s;
}
.nav-social:hover {
  color: var(--text-main);
}
.nav-book-btn {
  background: #FFFFFF;
  color: #000000;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 4px;
  transition: opacity 0.15s;
}
.nav-book-btn:hover {
  opacity: 0.9;
}

/* ===================================================
   HERO SECTION
   =================================================== */
.hero-section {
  padding: 4rem 0 3.5rem;
  border-bottom: 1px solid var(--border);
}
.hero-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}
.meta-tag {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-yellow);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}
.hero-bio {
  font-size: 1.15rem;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}
.hero-bio-sub {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.hero-btn-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.btn-primary {
  background: var(--accent-yellow);
  color: #000000;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.75rem 1.4rem;
  border-radius: 6px;
  transition: opacity 0.15s;
}
.btn-primary:hover {
  opacity: 0.92;
}
.btn-secondary {
  background: var(--bg-card);
  color: var(--text-main);
  border: 1px solid var(--border-strong);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 1.1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-secondary:hover {
  background: #222733;
}

.roster-meta {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.roster-meta strong {
  color: #FFFFFF;
}
.roster-meta a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.roster-meta a:hover {
  color: var(--text-main);
}
.roster-sep {
  color: var(--text-dim);
}

.hero-photo-wrap {
  position: relative;
}
.hero-photo {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--border-strong);
  display: block;
}
.photo-caption {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 0.5rem;
  text-align: right;
}

/* ===================================================
   SECTION HEADINGS
   =================================================== */
.section-heading {
  margin-bottom: 2rem;
}
.section-heading h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}
.section-heading p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 0.25rem;
}

/* ===================================================
   LIVE CLIPS SECTION
   =================================================== */
.clips-section {
  padding: 4rem 0;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
}
.clips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}
.clip-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.clip-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-yellow);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.75rem 1rem 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--border);
}
.clip-embed {
  background: #000000;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.clip-embed blockquote {
  width: 100% !important;
  margin: 0 !important;
}
.clip-details {
  padding: 1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: auto;
}
.clip-details h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
}
.clip-details p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.clip-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-blue);
  text-decoration: none;
  margin-top: 0.4rem;
  display: inline-block;
}
.clip-link:hover {
  text-decoration: underline;
}

/* ===================================================
   LOGISTICS SECTION (FOR VENUES)
   =================================================== */
.logistics-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.logistics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.logistics-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
}
.logistics-item h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}
.logistics-item p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.logistics-item a {
  color: var(--accent-yellow);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===================================================
   VENUE SET MODES (THREE WAYS TO BOOK US)
   =================================================== */
.modes-section {
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-main);
}
.modes-container {
  margin-top: 2rem;
}
.modes-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.mode-tab {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.15rem;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  transition: all 0.15s ease;
  font-family: inherit;
  color: inherit;
}
.mode-tab:hover {
  border-color: var(--border-strong);
  background: #1D212A;
}
.mode-tab.active {
  border-color: var(--accent-yellow);
  background: rgba(250, 204, 21, 0.05);
}
.tab-index {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-yellow);
  padding: 0.15rem 0.45rem;
  background: rgba(250, 204, 21, 0.12);
  border-radius: 4px;
}
.tab-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.2rem;
}
.tab-sub {
  display: block;
  font-size: 0.78rem;
  color: var(--text-dim);
}

.mode-content-wrap {
  position: relative;
}
.mode-panel {
  display: none;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 2rem;
  animation: fadeIn 0.2s ease-in-out;
}
.mode-panel.active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}
.panel-header {
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.panel-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent-yellow);
  background: rgba(250, 204, 21, 0.12);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  margin-bottom: 0.65rem;
}
.panel-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
.panel-lead {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 850px;
  line-height: 1.6;
}
.panel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.panel-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.25rem;
}
.panel-card h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-blue);
  margin-bottom: 0.5rem;
}
.panel-card p {
  font-size: 0.88rem;
  color: var(--text-main);
  line-height: 1.5;
}
.flow-tracklist {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.flow-tracklist span {
  color: #FFFFFF;
  font-weight: 600;
}

/* ===================================================
   REPERTOIRE SECTION
   =================================================== */
.repertoire-section {
  padding: 4rem 0;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
}
.repertoire-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.rep-column {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
}
.rep-column h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}
.rep-note {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
}
.rep-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.rep-column li {
  font-size: 0.92rem;
  color: var(--text-main);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}
.rep-column li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-yellow);
}

/* ===================================================
   BOOKING SECTION
   =================================================== */
.booking-section {
  padding: 4.5rem 0 5rem;
}
.booking-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.booking-panel h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}
.booking-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto 1.75rem;
}
.btn-primary-large {
  display: inline-block;
  background: var(--accent-yellow);
  color: #000000;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.85rem 1.8rem;
  border-radius: 6px;
  transition: opacity 0.15s;
}
.btn-primary-large:hover {
  opacity: 0.92;
}
.booking-links {
  margin-top: 1.75rem;
  font-size: 0.9rem;
  color: var(--text-dim);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.booking-links a {
  color: var(--text-muted);
  text-decoration: none;
}
.booking-links a:hover {
  color: var(--text-main);
}

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  font-size: 0.85rem;
  color: var(--text-dim);
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-row a {
  color: var(--text-dim);
  text-decoration: none;
}
.footer-row a:hover {
  color: var(--text-muted);
}

/* ===================================================
   TOAST
   =================================================== */
.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #FFFFFF;
  color: #000000;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 100;
}
.toast.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 860px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-photo-wrap {
    order: -1;
    max-width: 440px;
  }
  .modes-tabs {
    grid-template-columns: 1fr;
  }
  .booking-panel {
    padding: 2rem 1.25rem;
  }
}
