/* ═══════════════════════════════════════════════════════════
   Venue Page
   Drop-in stylesheet — matches base.css design tokens.
   Class prefix: vp-
   ═══════════════════════════════════════════════════════════ */

.vp-page {
  max-width: 640px;
  margin: 0 auto;
  padding: 70px 20px 60px;
  position: relative;
  z-index: 5;
  animation: vp-slide-up .45s cubic-bezier(.16, 1, .3, 1) both;
}
@keyframes vp-slide-up {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.vp-loading {
  text-align: center; padding: 120px 24px; color: var(--muted);
}
.vp-hero {
  width: 100%; height: 180px; border-radius: var(--radius); margin-bottom: 16px;
  position: relative; overflow: hidden;
}
.vp-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, transparent 60%);
}
.vp-back {
  position: absolute; top: 82px; left: 12px; z-index: 10;
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(17, 24, 39, .75);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, .7); cursor: pointer;
  transition: all var(--transition); font-size: 18px;
}
.vp-back:hover { color: var(--text); border-color: var(--accent); }
.vp-back-btn {
  margin-top: 12px; padding: 8px 18px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: var(--surface2);
  color: var(--text); cursor: pointer; font: inherit;
}
.vp-back-btn:hover { border-color: var(--accent); }

/* ─── Header ─────────────────────────────────────────────── */

.vp-header { margin-top: 12px; margin-bottom: 24px; }

.vp-eyebrow {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: .12em; color: var(--cyan);
  margin-bottom: 6px; font-weight: 600;
  margin-left: 40px;
}

.vp-name {
  font-size: 30px; font-weight: 700; letter-spacing: -.02em;
  margin: 0 0 8px; color: var(--text);
}

.vp-meta {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  font-size: 13px; margin-bottom: 6px;
}
.vp-meta-chip {
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--text-dim); padding: 3px 10px; border-radius: 999px;
  font-size: 12px;
}
.vp-meta-text { color: var(--muted); font-size: 13px; }

.vp-address {
  color: var(--muted); font-size: 13px;
  margin-top: 4px;
}

/* ─── Vibe summary ─────────────────────────────────────────────── */

.vp-vibe {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--cyan);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 20px;
}
.vp-vibe-text {
  font-size: 14px; line-height: 1.65; color: var(--text-dim); margin: 0;
}

/* ─── Tags ─────────────────────────────────────────────── */

.vp-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
.vp-tag {
  background: var(--surface3); color: var(--text);
  padding: 4px 10px; border-radius: var(--radius-xs);
  font-size: 12px; font-weight: 500;
}

/* ─── Map link ─────────────────────────────────────────────── */

.vp-map-link { margin-bottom: 24px; }
.vp-link {
  display: inline-block;
  background: var(--surface2); border: 1px solid var(--border-light);
  color: var(--text); padding: 8px 14px; border-radius: var(--radius-sm);
  text-decoration: none; font-size: 13px;
  transition: all var(--transition);
}
.vp-link:hover { border-color: var(--accent); color: var(--accent); }

/* ─── Section title ─────────────────────────────────────────────── */

.vp-section-title {
  font-size: 14px; text-transform: uppercase; letter-spacing: .08em;
  color: var(--muted); font-weight: 600; margin-bottom: 12px;
}

/* ─── Upcoming shows ─────────────────────────────────────────────── */

.vp-shows { margin-top: 24px; margin-bottom: 32px; }
.vp-shows-list { display: flex; flex-direction: column; gap: 8px; }
.vp-shows-loading, .vp-no-shows {
  color: var(--muted); font-size: 13px; padding: 12px 0; font-style: italic;
}
.vp-show-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 12px 16px;
  display: flex; gap: 16px; align-items: center;
  cursor: pointer; transition: all var(--transition);
}
.vp-show-card:hover { border-color: var(--accent); background: var(--surface2); }
.vp-show-date {
  flex-shrink: 0; font-size: 12px; font-weight: 600;
  color: var(--accent); min-width: 88px;
  text-transform: uppercase; letter-spacing: .04em;
}
.vp-show-info { flex: 1; min-width: 0; }
.vp-show-title {
  font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.vp-show-lineup {
  font-size: 12px; color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ─── Sources ─────────────────────────────────────────────── */

.vp-sources {
  margin-top: 32px; padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 11px; color: var(--muted);
}
.vp-sources-label {
  text-transform: uppercase; letter-spacing: .08em; margin-right: 6px;
}
.vp-sources a {
  color: var(--muted); text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, .15);
}
.vp-sources a:hover { color: var(--text); }
.vp-source-sep { opacity: .5; }

/* ─── Mobile ─────────────────────────────────────────────── */

@media (max-width: 640px) {
  .vp-page { padding: 70px 16px 60px; }
  .vp-name { font-size: 24px; }
  .vp-vibe { padding: 14px 16px; font-size: 13px; }
  .vp-show-date { min-width: 72px; font-size: 11px; }
}
