/* =======================================================================================
   $Id: style.css 1 2026-05-25 00:00:00Z ralf $ RELEASE-1.1.0 -> SVN 000
   style.css  –  Better Gigs public + preview
   ======================================================================================= */

@import url('https://fonts.googleapis.com/css2?family=VT323&family=Courier+Prime:wght@400;700&family=Special+Elite&display=swap');

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

:root {
  --red:    #b81c1c;
  --bg:     #1a1a1a;
  --paper:  #f0ead6;
  --paper2: #e2d9c0;
  --ink:    #111111;
  --orange: #e8890c;
  --muted:  #666666;
  --fh: 'VT323', monospace;
  --fb: 'Courier Prime', monospace;
  --fa: 'Special Elite', monospace;
}

body {
  background: var(--bg);
  font-family: var(--fb);
  color: var(--paper);
  min-height: 100vh;
}

/* ── NAV ─────────────────────────────────────────────────── */
#topnav {
  background: #0d0d0d;
  display: flex;
  align-items: stretch;
  border-bottom: 3px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 200;
}
.nav-logo {
  padding: 3px 8px;
  border-right: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  cursor: pointer;
}
.nav-logo img { height: 36px; display: block; }

.nav-tabs { display: flex; align-items: stretch; flex: 1; }
.nav-tab {
  font-family: var(--fb);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ccc;
  background: none;
  border: none;
  border-right: 1px solid #2a2a2a;
  padding: 0 0.85rem;
  cursor: pointer;
  transition: background 0.1s, color 0.1s;
  position: relative;
  white-space: nowrap;
}
.nav-tab:hover  { background: #1e1e1e; color: #fff; }
.nav-tab.active { color: var(--red); }
.nav-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}

/* Social icons — top right, icon only, no background */
.nav-social {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  margin-left: auto;
  border-left: 1px solid #2a2a2a;
}
.soc-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.12s;
}
.soc-btn:hover { opacity: 1; }
.soc-btn img   { width: 22px; height: 22px; display: block; object-fit: contain; }

.soc-tooltip {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  color: #eee;
  font-family: var(--fb);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 7px;
  white-space: nowrap;
  border: 1px solid #333;
  border-radius: 3px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
}
.soc-tooltip::after {
  content: '';
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: #111;
}
.soc-btn:hover .soc-tooltip { opacity: 1; }

/* ── NAV USER LINKS ─────────────────────────────────────────── */
.nav-divider {
  width: 1px;
  height: 22px;
  background: #333;
  margin: 0 6px;
  flex-shrink: 0;
}
.nav-username {
  font-family: var(--fb);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #aaa;
  white-space: nowrap;
  max-width: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 2px;
}
.nav-user-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  text-decoration: none;
  font-size: 1rem;
  color: #aaa;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.1s, background 0.1s;
  flex-shrink: 0;
  border-radius: 3px;
}
.nav-user-link:hover { color: #fff; background: #222; }
.nav-logout { color: #666; }
.nav-logout:hover { color: var(--red); background: #1a0000; }
/* Login-Link wenn nicht eingeloggt */
.nav-login-link {
  font-family: var(--fb);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #555;
  text-decoration: none;
  padding: 0 8px;
  transition: color 0.1s;
}
.nav-login-link:hover { color: #888; }

/* ── HEADER IMAGE — flush, no gap ────────────────────────── */
#site-header {
  width: 100%;
  line-height: 0;
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  background: #000;
}
#site-header img {
  width: 100%;
  height: auto;
  max-height: 146px;
  display: block;
  object-fit: cover;
  vertical-align: top;
  margin: 0;
  padding: 0;
}

/* ── SECTIONS ────────────────────────────────────────────── */
.section        { display: none; padding: 1.2rem 1rem; }
.section.active { display: block; }

.sec-head {
  font-family: var(--fh);
  font-size: 2rem;
  color: var(--paper);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border-bottom: 1px solid #2a2a2a;
  padding-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.stamp {
  display: inline-block;
  border: 2px solid var(--red);
  font-family: var(--fh);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  padding: 1px 7px;
  transform: rotate(-2deg);
}

/* ── FILTER BAR ──────────────────────────────────────────── */
.filter-bar { display: flex; gap: 6px; margin-bottom: 1rem; flex-wrap: wrap; }
.filter-btn {
  font-family: var(--fb);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: none;
  border: 1.5px solid #444;
  color: #aaa;
  padding: 3px 10px;
  cursor: pointer;
  transition: all 0.1s;
}
.filter-btn:hover,
.filter-btn.active { background: var(--red); border-color: var(--red); color: #fff; }

/* ── EVENT CARDS ─────────────────────────────────────────── */
.events-grid { display: flex; flex-direction: column; gap: 0.7rem; }

.event-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 #000;
  display: grid;
  grid-template-columns: 84px 1fr;  /* date | info */
  overflow: hidden;
  color: var(--ink);
  transition: transform 0.1s, box-shadow 0.1s;
  cursor: pointer;
  text-decoration: none;
}
.event-card:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 #000; }

.event-date {
  background: var(--red);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0.4rem;
  font-family: var(--fh);
  border-right: 2px solid var(--ink);
  flex-shrink: 0;
}
.event-date .weekday { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; opacity: 0.85; }
.event-date .day     { font-size: 2.4rem; line-height: 1; }
.event-date .month   { font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; }
.event-date .year    { font-size: 0.7rem; opacity: 0.7; margin-top: 2px; }

.event-info {
  padding: 0.7rem 0.8rem;
  position: relative;
  min-width: 0;
}
.event-info::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 22px,
    rgba(0,0,0,0.05) 22px, rgba(0,0,0,0.05) 23px
  );
}
.event-title  { font-family: var(--fa); font-size: 1.05rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.2rem; }
.event-bands      { font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #444; margin-bottom: 0.2rem; }
.event-short-desc { font-size: 0.75rem; color: #555; font-style: italic; margin-bottom: 0.3rem; line-height: 1.4; }
.event-meta   { font-size: 0.72rem; color: #666; display: flex; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 0.3rem; }
.event-meta a { color: #555; text-decoration: none; }
.event-meta a:hover { color: var(--red); }

.tags  { margin-top: 0.3rem; display: flex; gap: 4px; flex-wrap: wrap; }
.tag   { font-size: 0.58rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; background: var(--ink); color: var(--paper); padding: 1px 5px; }
.tag.red { background: var(--red); }
.tag.ak  { background: #555; }
.tag.planned { background: #336; }

.vvk-links  { margin-top: 0.4rem; display: flex; gap: 4px; flex-wrap: wrap; }
.vvk-link   { font-size: 0.6rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; background: var(--red); color: #fff; padding: 2px 7px; text-decoration: none; border: 1px solid var(--ink); }
.vvk-link:hover { filter: brightness(1.2); }

/* Price column kept for backward compat but hidden */
.event-price { display: none; }

/* Flyer thumbnails on card */
.event-flyers { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 0.5rem; }
.event-flyer-thumb { max-height: 80px; max-width: 120px; object-fit: contain; border: 1px solid #ccc; cursor: pointer; transition: opacity 0.1s; }
.event-flyer-thumb:hover { opacity: 0.8; }

/* ── EVENT DETAIL PAGE ───────────────────────────────────── */
.event-detail {
  max-width: 760px;
  margin: 1.5rem auto;
  padding: 0 1rem;
}
.event-detail-header {
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 #000;
  display: grid;
  grid-template-columns: 90px 1fr;
  overflow: hidden;
  margin-bottom: 1rem;
}
.event-detail-date {
  background: var(--red);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.5rem;
  font-family: var(--fh);
  border-right: 2px solid var(--ink);
}
.event-detail-date .weekday { font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; opacity: 0.85; }
.event-detail-date .day     { font-size: 3rem; line-height: 1; }
.event-detail-date .month   { font-size: 1rem; letter-spacing: 2px; text-transform: uppercase; }
.event-detail-date .year    { font-size: 0.8rem; opacity: 0.7; margin-top: 3px; }
.event-detail-info          { padding: 1rem 1.2rem; position: relative; color: var(--ink); }
.event-detail-info::before  {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(0deg,transparent,transparent 22px,rgba(0,0,0,0.05) 22px,rgba(0,0,0,0.05) 23px);
}
.event-detail-title { font-family: var(--fa); font-size: 1.4rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; position: relative; }
.event-detail-meta  { font-size: 0.82rem; color: #555; display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 0.5rem; position: relative; }
.event-detail-meta a { color: #444; text-decoration: none; }
.event-detail-meta a:hover { color: var(--red); }

.detail-section { background: var(--paper); border: 2px solid var(--ink); box-shadow: 3px 3px 0 #000; margin-bottom: 1rem; color: var(--ink); position: relative; overflow: hidden; }
.detail-section::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: repeating-linear-gradient(0deg,transparent,transparent 22px,rgba(0,0,0,0.04) 22px,rgba(0,0,0,0.04) 23px); }
.detail-section-head { font-family: var(--fh); font-size: 1.2rem; letter-spacing: 3px; text-transform: uppercase; padding: 0.6rem 1rem; border-bottom: 2px solid var(--ink); position: relative; }
.detail-section-body { padding: 0.8rem 1rem; position: relative; }

.band-row       { display: flex; align-items: center; gap: 0.8rem; padding: 0.4rem 0; border-bottom: 1px solid rgba(0,0,0,0.07); }
.band-row:last-child { border-bottom: none; }
.band-row-name  { font-family: var(--fa); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; }
.band-row-genre { font-size: 0.65rem; color: #666; letter-spacing: 1px; text-transform: uppercase; }
.band-row-links { margin-left: auto; display: flex; gap: 4px; }
.band-row-link  { font-size: 0.58rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; background: var(--ink); color: var(--paper); padding: 1px 5px; text-decoration: none; }
.band-row-link:hover { background: var(--red); }

.age-note        { font-size: 0.75rem; color: #666; line-height: 1.5; }
.age-note a      { color: var(--red); }

/* Long description */
.event-long-desc {
  font-size: 0.85rem;
  color: #444;
  line-height: 1.7;
  white-space: pre-line;
}

/* Calendar buttons */
.cal-links { margin-top: 0.6rem; display: flex; gap: 6px; flex-wrap: wrap; }
.cal-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--fb);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 4px 10px;
  border: 1.5px solid var(--ink);
  background: var(--paper2);
  color: var(--ink);
  transition: background 0.1s;
}
.cal-btn:hover { background: #d8cfb4; }
.cal-btn-google { background: #e8f0fe; border-color: #4285f4; color: #1a56cc; }
.cal-btn-google:hover { background: #d2e3fc; }
.cal-btn-fb { background: #e8eeff; border-color: #1877f2; color: #1877f2; }
.cal-btn-fb:hover { background: #dce5ff; }
.age-note a { color: var(--red); }

.detail-flyers  { display: flex; gap: 10px; flex-wrap: wrap; padding: 0.8rem 1rem; position: relative; }
.detail-flyer   { max-height: 200px; max-width: 100%; object-fit: contain; border: 2px solid var(--ink); cursor: pointer; transition: opacity 0.1s; }
.detail-flyer:hover { opacity: 0.85; }

.back-link { display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #aaa; text-decoration: none; margin-bottom: 1rem; }
.back-link:hover { color: var(--paper); }

/* ── BANDS ───────────────────────────────────────────────── */
.bands-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 0.8rem; }
.band-card  { background: var(--paper); border: 2px solid var(--ink); box-shadow: 3px 3px 0 #000; overflow: hidden; cursor: pointer; transition: transform 0.1s; color: var(--ink); }
.band-card:hover { transform: translate(-2px,-2px); }
.band-img   { height: 120px; background: var(--ink); display: flex; align-items: center; justify-content: center; font-family: var(--fh); font-size: 2.5rem; border-bottom: 2px solid var(--ink); position: relative; overflow: hidden; }
.band-body  { padding: 0.7rem; position: relative; }
.band-body::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: repeating-linear-gradient(0deg,transparent,transparent 22px,rgba(0,0,0,0.05) 22px,rgba(0,0,0,0.05) 23px); }
.band-name   { font-family: var(--fa); font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.band-genre  { font-size: 0.62rem; color: #666; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }
.band-origin { font-size: 0.7rem; color: #555; }
.band-links  { margin-top: 0.4rem; display: flex; gap: 4px; flex-wrap: wrap; }
.band-link   { font-size: 0.58rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; background: var(--ink); color: var(--paper); padding: 1px 5px; text-decoration: none; }
.band-link:hover { background: var(--red); }

/* ── ARCHIVE ─────────────────────────────────────────────── */
.archive-year { font-family: var(--fh); font-size: 1.6rem; color: var(--red); letter-spacing: 3px; margin-bottom: 0.6rem; margin-top: 1.2rem; border-left: 4px solid var(--red); padding-left: 0.7rem; }
.archive-year:first-child { margin-top: 0; }
.archive-list { display: flex; flex-direction: column; gap: 4px; margin-bottom: 0.5rem; }
.archive-item { background: var(--paper); color: var(--ink); border: 2px solid var(--ink); padding: 0.5rem 0.8rem; display: grid; grid-template-columns: 65px 1fr auto; align-items: center; gap: 0.8rem; box-shadow: 2px 2px 0 #000; position: relative; text-decoration: none; }
.archive-item::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: repeating-linear-gradient(0deg,transparent,transparent 22px,rgba(0,0,0,0.04) 22px,rgba(0,0,0,0.04) 23px); }
.archive-item:hover { transform: translate(-1px,-1px); box-shadow: 3px 3px 0 #000; }
.arch-date  { font-family: var(--fh); font-size: 1.05rem; color: #888; }
.arch-title { font-family: var(--fa); font-size: 0.82rem; text-transform: uppercase; font-weight: 700; }
.arch-bands { font-size: 0.68rem; color: #666; text-transform: uppercase; letter-spacing: 1px; }
.arch-count { font-family: var(--fh); font-size: 1.05rem; color: #aaa; text-align: right; white-space: nowrap; }

/* ── FLYER GALLERY ───────────────────────────────────────── */
.flyer-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px,1fr)); gap: 1rem; }
.flyer-item { background: var(--paper); border: 2px solid var(--ink); box-shadow: 3px 3px 0 #000; overflow: hidden; cursor: pointer; transition: transform 0.1s; color: var(--ink); }
.flyer-item:hover { transform: translate(-2px,-2px) rotate(-0.5deg); }
.flyer-img  { height: 210px; display: flex; align-items: center; justify-content: center; border-bottom: 2px solid var(--ink); overflow: hidden; background: var(--ink); }
.flyer-img img { max-height: 210px; max-width: 100%; object-fit: contain; display: block; }
.flyer-cap  { padding: 0.5rem 0.6rem; font-size: 0.65rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #666; }

/* ── LIGHTBOX ────────────────────────────────────────────── */
#lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 1000; align-items: center; justify-content: center; cursor: pointer; }
#lightbox.open { display: flex; }
#lightbox img  { max-width: 90vw; max-height: 90vh; object-fit: contain; }

/* ── NEWSLETTER ──────────────────────────────────────────── */
.nl-wrap  { max-width: 500px; }
.nl-paper { background: var(--paper); border: 2px solid var(--ink); box-shadow: 5px 5px 0 #000; padding: 1.5rem; position: relative; color: var(--ink); }
.nl-paper::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: repeating-linear-gradient(0deg,transparent,transparent 22px,rgba(0,0,0,0.05) 22px,rgba(0,0,0,0.05) 23px); }
.nl-title { font-family: var(--fh); font-size: 1.8rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 0.2rem; position: relative; }
.nl-sub   { font-size: 0.72rem; color: #666; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1rem; position: relative; }
.nl-mode  { display: flex; gap: 6px; margin-bottom: 1rem; position: relative; }
.nl-field { margin-bottom: 0.8rem; position: relative; }
.nl-field label { display: block; font-size: 0.62rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #666; margin-bottom: 3px; }
.nl-field input { width: 100%; background: rgba(255,255,255,0.6); border: 2px solid var(--ink); font-family: var(--fb); font-size: 0.88rem; padding: 0.4rem 0.6rem; color: var(--ink); outline: none; }
.nl-field input:focus { background: rgba(255,255,255,0.85); }
.nl-btn { background: var(--red); border: 2px solid var(--ink); color: #fff; font-family: var(--fb); font-size: 0.75rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; padding: 0.5rem 1.2rem; cursor: pointer; box-shadow: 3px 3px 0 #000; transition: all 0.1s; position: relative; }
.nl-btn:hover  { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 #000; }
.nl-btn:active { transform: translate(1px,1px);   box-shadow: 1px 1px 0 #000; }
.nl-note { font-size: 0.65rem; color: #888; margin-top: 0.7rem; letter-spacing: 1px; position: relative; }

/* ── PREVIEW BAR ─────────────────────────────────────────── */
.preview-bar { background: #2a1a00; border-bottom: 2px solid var(--orange); padding: 5px 1rem; font-size: 0.65rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); text-align: center; }
.badge-planned { display: inline-block; background: #336; color: #aaf; font-size: 0.55rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 1px 5px; vertical-align: middle; margin-left: 4px; }
.badge-draft   { display: inline-block; background: #553; color: #ffd; font-size: 0.55rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 1px 5px; vertical-align: middle; margin-left: 4px; }

/* ── LOADING / ERROR ─────────────────────────────────────── */
.loading   { color: #555; font-family: var(--fh); font-size: 1.2rem; letter-spacing: 3px; text-transform: uppercase; padding: 2rem 0; text-align: center; }
.error-msg { background: #2a0000; border: 1px solid var(--red); color: #ff9999; font-size: 0.8rem; padding: 0.8rem 1rem; margin: 1rem 0; }

/* ── BAND DETAIL PAGE ───────────────────────────────────── */
.band-detail-wrap { max-width: 760px; margin: 1.5rem auto; padding: 0 1rem; }

.band-detail-header {
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 #000;
  display: grid;
  grid-template-columns: 220px 1fr;
  overflow: hidden;
  margin-bottom: 1rem;
  color: var(--ink);
}
.band-detail-image {
  border-right: 2px solid var(--ink);
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  overflow: hidden;
}
.band-detail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.band-detail-placeholder {
  font-family: var(--fh);
  font-size: 4rem;
  color: #333;
  letter-spacing: 4px;
}
.band-detail-info    { padding: 1.2rem 1.4rem; position: relative; }
.band-detail-info::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(0deg,transparent,transparent 22px,rgba(0,0,0,0.05) 22px,rgba(0,0,0,0.05) 23px);
}
.band-detail-name   { font-family: var(--fa); font-size: 1.5rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.3rem; position: relative; }
.band-detail-genre  { font-size: 0.72rem; color: #666; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0.3rem; position: relative; }
.band-detail-origin { font-size: 0.78rem; color: #555; margin-bottom: 0.6rem; position: relative; }
.band-detail-links  { display: flex; flex-wrap: wrap; gap: 5px; position: relative; }
.band-detail-link {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  background: var(--ink); color: var(--paper); padding: 2px 7px; text-decoration: none;
}
.band-detail-link:hover { background: var(--red); }

/* Band event rows */
.band-event-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 0.8rem;
  padding: 0.55rem 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  text-decoration: none;
  color: var(--ink);
  transition: background 0.1s;
}
.band-event-row:hover   { background: #f5eed8; }
.band-event-row:last-child { border-bottom: none; }
.band-event-past        { opacity: 0.6; }
.band-event-date        { font-family: var(--fh); font-size: 1.05rem; color: #888; white-space: nowrap; }
.band-event-wd          { color: var(--red); font-size: 0.9rem; }
.band-event-title       { font-family: var(--fa); font-size: 0.88rem; font-weight: 700; text-transform: uppercase; }
.band-event-loc         { font-size: 0.7rem; color: #888; text-align: right; }

/* ── PRICE LINE (on event card) ──────────────────────────── */
.event-price-line {
  font-size: 0.72rem;
  color: #555;
  margin-top: 0.3rem;
  letter-spacing: 0.5px;
}
.event-price-line strong { color: var(--ink); }

/* ── FOOTER ──────────────────────────────────────────────── */
footer { background: #0a0a0a; border-top: 3px solid var(--red); padding: 0.7rem 1rem; text-align: center; font-size: 0.62rem; color: #444; letter-spacing: 2px; text-transform: uppercase; }
footer a { color: #555; text-decoration: none; }
footer a:hover { color: #888; }
