/* Minimal, modern, accessible styles */
:root {
  --bg: #0b0b10;
  --bg-alt: #121219;
  --card: #1a1a24;
  --text: #e8e8ef;
  --muted: #a9adc0;
  --accent: #ff5a8a;
  --accent-2: #6ee7ff;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; }
.container { width: min(1080px, 92%); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(11,11,16,.7); backdrop-filter: blur(8px); border-bottom: 1px solid #1f2030; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.logo { color: var(--text); text-decoration: none; font-weight: 800; letter-spacing: .4px; }
.nav a { color: var(--muted); text-decoration: none; margin-left: 16px; font-weight: 600; }
.nav a:hover { color: var(--text); }
.btn, .btn-outline { border-radius: 999px; padding: 10px 16px; text-decoration: none; display: inline-block; font-weight: 700; }
.btn { background: var(--accent); color: #111; }
.btn:hover { filter: brightness(1.05); }
.btn-outline { border: 2px solid var(--accent-2); color: var(--text); }
.btn-outline:hover { background: rgba(110,231,255,.1); }

.hero { position: relative; min-height: 60vh; display: grid; align-items: center; overflow: hidden; }
.hero-inner { padding: 6rem 0 4rem; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.6rem); margin: 0 0 .5rem; }
.lead { color: var(--muted); font-size: 1.1rem; max-width: 60ch; }
.cta-group { margin-top: 1.25rem; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 10% 10%, rgba(255,90,138,.35), transparent 70%),
    radial-gradient(70% 60% at 90% 0%, rgba(110,231,255,.25), transparent 70%),
    url('assets/img/bg-stage.jpg') center/cover no-repeat;
  pointer-events: none;
}

.section { padding: 4.5rem 0; }
.section.alt { background: var(--bg-alt); }
.section .sub { color: var(--muted); margin-top: .25rem; }
.tracks { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); margin-top: 1rem; }
.track { padding: 16px; border: 1px solid #26283f; border-radius: 16px; background: var(--card); }
.track h3 { margin-top: 0; }
.links { display: flex; gap: 12px; margin-top: 1rem; flex-wrap: wrap; }

.shows { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: 12px; }
.shows li { display: grid; grid-template-columns: 130px 1fr 1fr; gap: 12px; align-items: center; padding: 12px; border: 1px solid #26283f; border-radius: 14px; background: var(--card); }
.shows time { color: var(--accent); font-weight: 800; }
.shows .title { font-weight: 700; }
.shows .venue, .muted { color: var(--muted); }
@media (max-width:640px){ .shows li{ grid-template-columns: 1fr; align-items: start; } }

.video-embed { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 14px; border: 1px solid #26283f; background: #000; margin-top: 1rem; }
.video-embed iframe { position: absolute; top:0; left:0; width:100%; height:100%; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; margin-top: 1rem; }
.grid img { width: 100%; height: 180px; object-fit: cover; border-radius: 12px; border: 1px solid #26283f; background: #14141d; }

.narrow { max-width: 800px; }
.facts { display: grid; gap: 6px; color: var(--muted); }

.contact .contact-card { border: 1px solid #26283f; background: var(--card); border-radius: 16px; padding: 16px; }
.contact-form { display: grid; gap: 10px; margin-top: .5rem; }
.contact-form input, .contact-form textarea {
  background: #101019; color: var(--text); border: 1px solid #2a2c44; border-radius: 10px; padding: 10px 12px; font: inherit;
}
.contact-form button[aria-disabled="true"] { opacity: .7; cursor: not-allowed; }

.site-footer { border-top: 1px solid #1f2030; padding: 2rem 0; text-align: center; color: var(--muted); }
.small { font-size: .9rem; }
