/* ==========================================================================
   Dizasterpiece — site styles
   Rebuilt from dizasterpiece.com (was GoDaddy Website Builder 8.0)
   Design tokens taken from the original: font "Cabin", black/dark-grey
   surfaces, white/grey text, electric-blue accent.
   ========================================================================== */

:root {
  --bg:          #000000;
  --bg-elev:     #0c0c0c;   /* page sections                         */
  --bg-card:     #161616;   /* cards / inputs  (orig rgb(22,22,22))  */
  --bg-card-2:   #1b1b1b;   /* hover           (orig rgb(27,27,27))  */
  --line:        #2a2a2a;   /* hairline borders                      */
  --line-soft:   rgba(255,255,255,.08);

  --text:        #ffffff;
  --text-dim:    #dcdcdc;
  --muted:       #9a9a9a;   /* secondary copy  (orig rgb(127,128,128))*/

  --accent:      #2b2bff;   /* electric blue   (orig rgb(5,0,255))   */
  --accent-bright:#5b5bff;
  --accent-ink:  #ffffff;

  --maxw:        1200px;
  --gutter:      clamp(18px, 5vw, 56px);
  --radius:      10px;
  --header-h:    68px;

  --font: 'Cabin', system-ui, Arial, sans-serif;
  --shadow: 0 18px 50px rgba(0,0,0,.55);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--accent-bright); outline-offset: 3px; }

/* ---------- layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 8vw, 110px); }
.section--alt { background: var(--bg-elev); }
.eyebrow {
  font-size: .8rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--accent-bright); font-weight: 700; margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.9rem, 5vw, 3.1rem);
  font-weight: 700; line-height: 1.05; text-transform: uppercase;
  letter-spacing: .01em; margin-bottom: clamp(26px, 4vw, 46px);
}
.section-title span { color: var(--accent-bright); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  padding: 13px 26px; border-radius: 999px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; font-size: .92rem;
  border: 1.5px solid transparent; transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--accent); color: var(--accent-ink); }
.btn--primary:hover { background: var(--accent-bright); }
.btn--ghost { border-color: rgba(255,255,255,.55); color: #fff; }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* ==========================================================================
   Header / nav
   ========================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  background: transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: rgba(0,0,0,.86);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.brand img { height: 38px; width: auto; }
.brand .brand-name { font-size: 1.05rem; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  padding: 9px 14px; font-weight: 600; font-size: .95rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-dim); border-radius: 6px;
  transition: color .15s ease, background .15s ease;
}
.nav a:hover, .nav a[aria-current="page"] { color: #fff; background: rgba(255,255,255,.06); }
.nav .nav-cart { display: inline-flex; align-items: center; }

.nav-toggle {
  display: none; width: 44px; height: 44px; background: none; border: 0;
  flex-direction: column; justify-content: center; gap: 6px; padding: 0;
}
.nav-toggle span { display: block; height: 2px; width: 26px; background: #fff; margin-inline: auto; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(0,0,0,.97); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    padding: 10px var(--gutter) 22px;
    transform: translateY(-120%); transition: transform .3s ease; pointer-events: none;
  }
  .nav.is-open { transform: translateY(0); pointer-events: auto; }
  .nav a { padding: 15px 6px; border-bottom: 1px solid var(--line-soft); font-size: 1.05rem; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  padding-top: var(--header-h);
  background: #000 center/cover no-repeat;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.15) 38%, rgba(0,0,0,.92) 100%);
}
.hero__inner { position: relative; z-index: 2; padding-block: clamp(40px, 9vw, 96px); width: 100%; }
.hero__kicker { color: var(--accent-bright); font-weight: 700; letter-spacing: .3em; text-transform: uppercase; font-size: .82rem; margin-bottom: 14px; }
.hero__title {
  font-size: clamp(3rem, 13vw, 8.5rem); font-weight: 700; line-height: .9;
  text-transform: uppercase; letter-spacing: -.01em;
  text-shadow: 0 6px 40px rgba(0,0,0,.6);
}
.hero__tagline { margin-top: 16px; max-width: 50ch; color: var(--text-dim); font-size: clamp(1rem, 2.4vw, 1.25rem); }
.hero__cta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; }

/* ==========================================================================
   News (horizontal rail)
   ========================================================================== */
.rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(270px, 1fr);
  gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 14px; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter);
  scrollbar-width: thin; scrollbar-color: var(--accent) transparent;
}
.rail::-webkit-scrollbar { height: 8px; }
.rail::-webkit-scrollbar-thumb { background: var(--line); border-radius: 99px; }
.rail::-webkit-scrollbar-thumb:hover { background: var(--accent); }

.news-card {
  scroll-snap-align: start; background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .18s ease, border-color .18s ease;
}
.news-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.news-card__media { aspect-ratio: 16/10; overflow: hidden; background: #000; }
.news-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.news-card:hover .news-card__media img { transform: scale(1.05); }
.news-card__body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.news-card__outlet { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--accent-bright); font-weight: 700; }
.news-card__title { font-size: 1.02rem; font-weight: 600; line-height: 1.35; color: var(--text); }
.news-card__more { margin-top: auto; font-size: .82rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.news-card:hover .news-card__more { color: #fff; }

/* ==========================================================================
   Merch
   ========================================================================== */
.merch-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.merch-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .18s ease, border-color .18s ease; }
.merch-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.merch-card__media { aspect-ratio: 1; background: #0a0a0a; overflow: hidden; }
.merch-card__media img { width: 100%; height: 100%; object-fit: cover; }
.merch-card__body { padding: 16px 18px; }
.merch-card__name { font-weight: 600; }
.merch-card__price { color: var(--muted); margin-top: 4px; font-size: .92rem; }
.merch-cta { margin-top: 36px; text-align: center; }

/* ==========================================================================
   Embeds (responsive iframes)
   ========================================================================== */
.embed { position: relative; width: 100%; background: #000; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.embed--video { aspect-ratio: 16/9; }
.embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.embed--spotify { border: 0; border-radius: 12px; }
.embed--spotify iframe { position: static; height: 600px; }

.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.video-item__title { margin-top: 12px; font-weight: 600; color: var(--text-dim); font-size: .98rem; }

/* Bandsintown widget surface */
.bit-wrap { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 8px clamp(8px,2vw,20px); min-height: 120px; }

/* ==========================================================================
   Booking / contact
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.contact-block h3 { font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: var(--accent-bright); margin-bottom: 10px; }
.contact-block p { color: var(--text-dim); }
.contact-block a { color: #fff; text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 3px; word-break: break-word; }
.contact-block a:hover { color: var(--accent-bright); }
.contact-block .role { color: var(--muted); font-size: .92rem; }

/* ==========================================================================
   Partners
   ========================================================================== */
.partners { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(24px, 6vw, 70px); }
.partners img { height: clamp(54px, 9vw, 88px); width: auto; opacity: 1; filter: none; transition: opacity .2s ease, transform .15s ease; }
.partners a:hover img { opacity: 1; }

/* ==========================================================================
   Newsletter
   ========================================================================== */
.newsletter { text-align: center; max-width: 620px; margin-inline: auto; }
.newsletter p { color: var(--text-dim); margin-top: 8px; }
.newsletter form { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; justify-content: center; }
.newsletter input[type="email"] {
  flex: 1 1 260px; min-width: 0; padding: 14px 18px; border-radius: 999px;
  background: var(--bg-card); border: 1px solid var(--line); color: #fff; font-size: 1rem;
}
.newsletter input::placeholder { color: var(--muted); }
.newsletter input:focus { outline: none; border-color: var(--accent-bright); }
.form-note { margin-top: 14px; font-size: .82rem; color: var(--muted); }

/* ==========================================================================
   Long-form (about / legal)
   ========================================================================== */
.prose { max-width: 820px; }
.prose p { color: var(--text-dim); margin-bottom: 1.2em; }
.prose p strong, .prose em { color: #fff; }
.page-hero { padding-top: calc(var(--header-h) + clamp(40px, 8vw, 90px)); padding-bottom: clamp(24px,5vw,50px); }
.page-hero h1 { font-size: clamp(2.4rem, 8vw, 5rem); text-transform: uppercase; font-weight: 700; line-height: .95; }
.page-hero .eyebrow { margin-bottom: 14px; }

.about-feature { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
@media (min-width: 900px) { .about-feature { grid-template-columns: 1.1fr .9fr; } }
.about-feature img { width: 100%; border-radius: var(--radius); border: 1px solid var(--line); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: #050505; border-top: 1px solid var(--line); padding-block: clamp(40px, 6vw, 64px); }
.site-footer .container { display: grid; gap: 30px; }
.footer-top { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { height: 46px; }
.footer-brand strong { letter-spacing: .14em; text-transform: uppercase; }
.socials { display: flex; gap: 14px; }
.socials a {
  width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%;
  display: grid; place-items: center; color: var(--text-dim);
  transition: border-color .2s ease, color .2s ease, transform .15s ease;
}
.socials a:hover { border-color: var(--accent); color: #fff; transform: translateY(-2px); }
.socials svg { width: 19px; height: 19px; fill: currentColor; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 8px 22px; align-items: center; justify-content: space-between; border-top: 1px solid var(--line-soft); padding-top: 22px; color: var(--muted); font-size: .88rem; }
.footer-bottom nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom a:hover { color: #fff; }

/* ---------- misc ---------- */
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--accent); color: #fff; padding: 10px 16px; z-index: 200; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }
.center { text-align: center; }
@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; transition: none !important; animation: none !important; } }


/* ---------- post-review tweaks ---------- */
.hero__title { margin: 0; }
.hero__logo {
  width: min(640px, 82vw);
  height: auto;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,.6));
}
/* partner logo wall — show in colour, height-normalised */
.partners { gap: clamp(22px, 5vw, 64px); }
.partners img {
  height: clamp(46px, 7vw, 74px);
  width: auto;
  max-width: 220px;
  object-fit: contain;
  opacity: 1;
  filter: none;
  transition: opacity .2s ease, transform .15s ease;
}
.partners a:hover img, .partners img:hover { opacity: 1; transform: translateY(-2px); }
/* visible keyboard focus on the newsletter field */
.newsletter input:focus-visible { outline: 2px solid var(--accent-bright); outline-offset: 2px; }
/* merch "view full store" CTA tile */
.merch-card__media--cta {
  display: grid; place-items: center; text-align: center;
  background: linear-gradient(135deg, var(--accent) 0%, #14148f 100%);
  color: #fff; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  font-size: 1.1rem; line-height: 1.2;
}
/* keep Spotify embed from getting too tall on small phones */
@media (max-width: 560px) { .embed--spotify iframe { height: 480px; } }


/* upcoming shows */
.shows { display: flex; flex-direction: column; gap: 10px; }
.shows-loading, .shows-empty { color: var(--muted); padding: 18px 4px; }
.shows-empty a { color: var(--accent-bright); }
.show-row {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px;
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 14px 18px; transition: border-color .18s ease, transform .15s ease;
}
.show-row:hover { border-color: var(--accent); transform: translateY(-2px); }
.show-date { display: grid; justify-items: center; min-width: 52px; line-height: 1.05; }
.show-mon { font-size: .72rem; letter-spacing: .12em; color: var(--accent-bright); font-weight: 700; }
.show-day { font-size: 1.6rem; font-weight: 700; }
.show-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.show-venue { font-weight: 600; }
.show-loc { color: var(--text-dim); font-size: .92rem; }
.show-tour { color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; margin-top: 2px; }
.show-cta {
  white-space: nowrap; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  font-size: .82rem; padding: 9px 18px; border-radius: 999px; background: var(--accent); color: #fff;
}
.show-row:hover .show-cta { background: var(--accent-bright); }
.show-cta.is-sold { background: transparent; border: 1px solid var(--line); color: var(--muted); }
.shows-all { margin-top: 10px; align-self: flex-start; }
@media (max-width: 560px) {
  .show-row { grid-template-columns: auto 1fr; gap: 12px 14px; }
  .show-cta { grid-column: 2; justify-self: start; margin-top: 2px; }
}
