/* ============================================================
   SELECTIVE HEARING - shared stylesheet.
   Bold flat cartoon look with motion. Palette pulled from the
   official logo (navy + gold + cream). Every page links this file.
   Edit the :root variables to retune the whole site. No em-dashes.
============================================================ */

:root {
  /* Brand palette, sampled from the logo */
  --navy:   #2b3990;   /* logo circle - primary loud color */
  --navy-d: #212c72;   /* darker navy for depth */
  --gold:   #e4c06c;   /* logo lettering */
  --gold-d: #d3aa50;   /* deeper gold for hovers */
  --ink:    #141210;   /* outlines / text */
  --paper:  #f7efdf;   /* warm cream base */
  --cream:  #fffaf0;   /* lighter cream */
  --max: 1160px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.cartoon { font-family: "Titan One", "Inter", sans-serif; font-weight: 400; letter-spacing: 0.5px; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 22px; }

/* ---------- chunky comic buttons ---------- */
.btn {
  display: inline-block; font-weight: 800; font-size: 15px; text-transform: uppercase;
  letter-spacing: 0.5px; text-decoration: none; cursor: pointer; font-family: inherit;
  background: var(--navy); color: #fff; padding: 14px 24px;
  border: 3px solid var(--ink); border-radius: 8px; box-shadow: 5px 5px 0 var(--ink);
  transition: transform .08s ease, box-shadow .08s ease;
}
.btn:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.btn.gold { background: var(--gold); color: var(--ink); }
.btn.ink  { background: var(--ink); color: #fff; }
.btn.white{ background: #fff; color: var(--ink); }
.btn.navy, .btn.blue { background: var(--navy); color: #fff; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- scrolling ticker ---------- */
.ticker { background: var(--ink); color: var(--gold); overflow: hidden; }
.ticker__row { display: flex; white-space: nowrap; will-change: transform; animation: slide 22s linear infinite; }
.ticker__row span { padding: 8px 0; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; font-size: 13px; }
.ticker__row span b { color: #fff; margin: 0 18px; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- sticky nav ---------- */
header { position: sticky; top: 0; z-index: 40; background: var(--cream); border-bottom: 3px solid var(--ink); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 16px; }
.brandlink { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.navlogo { width: 46px; height: 46px; }
.brandword { font-family: "Baloo 2", "Titan One", sans-serif; font-weight: 800; font-size: 19px; color: var(--navy); line-height: 1; letter-spacing: 0.5px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a { font-weight: 800; text-transform: uppercase; font-size: 14px; letter-spacing: 0.5px; text-decoration: none; color: var(--ink); }
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a.pill { background: var(--navy); color: #fff; padding: 9px 16px; border-radius: 7px; }
.nav-links a.pill:hover { background: var(--gold); color: var(--ink); }

/* ---------- home hero ---------- */
.hero { background: var(--paper); border-bottom: 3px solid var(--ink); padding: 46px 0 54px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(52% 60% at 22% 40%, rgba(43,57,144,0.10), transparent 60%),
    radial-gradient(46% 55% at 85% 70%, rgba(228,192,108,0.20), transparent 60%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero-inner { display: grid; grid-template-columns: 360px 1fr; gap: 40px; align-items: center; }
.hero-logo img { width: 100%; max-width: 360px; margin: 0 auto; animation: float 4.5s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0) rotate(-1.2deg); } 50% { transform: translateY(-12px) rotate(1.2deg); } }
.hero h1 { font-size: clamp(30px, 4.6vw, 56px); line-height: 1.03; margin: 0 0 14px; text-transform: uppercase; }
.hero h1 em { color: var(--navy); font-style: normal; }
.hero p { font-size: clamp(16px, 2vw, 20px); max-width: 46ch; margin: 0 0 24px; font-weight: 600; }

/* ---------- interior page hero band ---------- */
.page-hero { border-bottom: 3px solid var(--ink); padding: 36px 0 32px; }
.page-hero.gold, .page-hero.red { background: var(--gold); color: var(--ink); }
.page-hero.blue, .page-hero.navy { background: var(--navy); color: #fff; }
.page-hero.cream{ background: var(--cream); }
.page-hero .crumb { font-weight: 800; text-transform: uppercase; font-size: 12px; letter-spacing: 1px; margin-bottom: 10px; }
.page-hero .crumb a { color: inherit; }
.page-hero h1 { font-size: clamp(34px, 7vw, 72px); margin: 0; text-transform: uppercase; }
.page-hero p { font-weight: 600; max-width: 62ch; margin: 12px 0 0; font-size: 18px; }
.page-hero .btn-row { margin-top: 22px; }

/* ---------- section blocks ---------- */
.block { border-bottom: 3px solid var(--ink); padding: 56px 0; }
.block.cream { background: var(--cream); }
.block.gold, .block.red { background: var(--gold); color: var(--ink); }
.block.blue, .block.navy { background: var(--navy); color: #fff; }
.tagline { font-weight: 800; text-transform: uppercase; letter-spacing: 1px; font-size: 14px; color: var(--navy); margin-bottom: 8px; }
.block.blue .tagline, .block.navy .tagline { color: var(--gold); }
.block.gold .tagline, .block.red .tagline { color: var(--navy); }
.block h3.head { font-size: clamp(30px, 5vw, 56px); margin: 0 0 8px; text-transform: uppercase; }
.block .sub { font-size: 18px; font-weight: 600; max-width: 62ch; margin: 0 0 26px; }
.note { font-size: 13px; font-weight: 700; opacity: 0.75; margin-top: 16px; }

/* home: next-shindig card */
.show-card {
  background: #fff; color: var(--ink); border: 3px solid var(--ink); border-radius: 12px;
  box-shadow: 8px 8px 0 var(--ink); padding: 26px; display: grid; grid-template-columns: 150px 1fr auto;
  gap: 22px; align-items: center;
}
.show-card .poster { width: 150px; height: 150px; background: var(--gold); border: 3px solid var(--ink); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 800; text-transform: uppercase; text-align: center; font-size: 12px; }
.show-card h4 { font-size: 30px; margin: 0 0 4px; text-transform: uppercase; }
.show-card .meta { font-weight: 600; color: #555; }

/* what-we-do grid */
.do-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.do { background: var(--paper); color: var(--ink); border: 3px solid var(--ink); border-radius: 12px; padding: 20px; box-shadow: 6px 6px 0 var(--ink); transition: transform .12s ease; }
.do:hover { transform: translateY(-6px); }
.do .n { font-size: 26px; color: var(--navy); }
.do h5 { font-size: 18px; margin: 8px 0 6px; text-transform: uppercase; }
.do p { font-size: 14px; margin: 0; font-weight: 500; }

/* split layout */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
.badge-box { background: var(--navy); color: var(--gold); border: 4px solid var(--ink); border-radius: 14px; box-shadow: 10px 10px 0 var(--ink); aspect-ratio: 3/2; display: flex; align-items: center; justify-content: center; text-align: center; padding: 24px; }
.badge-box b { font-size: clamp(28px, 4vw, 46px); line-height: 0.95; }
.badge-box.logo { background: #fff; padding: 18px; }
.badge-box.logo img { max-width: 100%; max-height: 100%; display: block; }

/* ---------- calendar list ---------- */
.cal { display: grid; gap: 16px; }
.cal-row {
  display: grid; grid-template-columns: 110px 1fr auto; gap: 22px; align-items: center;
  background: #fff; border: 3px solid var(--ink); border-radius: 12px; box-shadow: 6px 6px 0 var(--ink); padding: 18px 22px;
}
.cal-row .date { background: var(--navy); color: var(--gold); border-radius: 8px; text-align: center; padding: 12px 8px; font-weight: 800; text-transform: uppercase; line-height: 1.1; }
.cal-row .date .big { font-size: 24px; display: block; }
.cal-row h4 { font-size: 24px; margin: 0 0 4px; text-transform: uppercase; }
.cal-row .meta { font-weight: 600; color: #555; font-size: 15px; }

/* ---------- band card grid (alumni / roster / lineup) ---------- */
.band-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 20px; }
.band-card { display: flex; flex-direction: column; text-decoration: none; color: var(--ink); background: #fff; border: 3px solid var(--ink); border-radius: 12px; box-shadow: 6px 6px 0 var(--ink); overflow: hidden; transition: transform .12s ease; }
.band-card:hover { transform: translateY(-6px); }
.band-card .ph { aspect-ratio: 4/3; background: var(--gold); border-bottom: 3px solid var(--ink); display: flex; align-items: center; justify-content: center; font-weight: 800; text-transform: uppercase; font-size: 12px; color: var(--ink); overflow: hidden; }
.band-card .ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.band-card .bc { padding: 15px; display: flex; flex-direction: column; gap: 5px; flex: 1; }
.band-card .bn { font-size: 22px; text-transform: uppercase; line-height: 1; }
.band-card .bt { font-weight: 800; text-transform: uppercase; font-size: 12px; color: var(--navy); letter-spacing: 1px; }
.band-card .bd { font-size: 14px; font-weight: 500; }
.band-card .grow { flex: 1; }
.band-card .more { font-weight: 800; text-transform: uppercase; font-size: 13px; color: var(--navy); margin-top: 8px; }

/* cartoon "under construction" notice */
.notice { border: 3px dashed var(--ink); background: var(--gold); color: var(--ink); border-radius: 12px; padding: 26px; text-align: center; margin-top: 26px; }
.notice .big { font-size: clamp(24px, 4vw, 40px); text-transform: uppercase; }
.notice p { font-weight: 600; max-width: 48ch; margin: 8px auto 0; }

/* ---------- who-we-are story ---------- */
.story p { font-size: 18px; margin: 0 0 14px; max-width: 64ch; }
.founders { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 10px; }
.founder { background: #fff; border: 3px solid var(--ink); border-radius: 12px; box-shadow: 6px 6px 0 var(--ink); padding: 22px; }
.founder .pf { width: 110px; height: 110px; border-radius: 50%; background: var(--navy); color: var(--gold); border: 3px solid var(--ink); display: flex; align-items: center; justify-content: center; font-weight: 800; text-transform: uppercase; margin-bottom: 14px; overflow: hidden; }
.founder .pf img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder h5 { font-size: 22px; margin: 0 0 6px; text-transform: uppercase; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.contact-card { background: #fff; color: var(--ink); border: 3px solid var(--ink); border-radius: 12px; box-shadow: 6px 6px 0 var(--ink); padding: 24px; text-align: center; }
.contact-card .ic { font-size: 30px; color: var(--navy); }
.contact-card h5 { font-size: 20px; margin: 8px 0 6px; text-transform: uppercase; }
.contact-card p { font-size: 14px; font-weight: 500; margin: 0 0 14px; }

/* ---------- signup form ---------- */
.signup-form { display: flex; gap: 12px; flex-wrap: wrap; max-width: 540px; margin-top: 6px; }
.signup-form input { flex: 1; min-width: 220px; padding: 15px 16px; border: 3px solid var(--ink); border-radius: 8px; font-size: 16px; font-family: inherit; font-weight: 600; background: #fff; color: var(--ink); }
.signup-form input:focus { outline: 3px solid var(--navy); outline-offset: 1px; }
.msg-form { max-width: 620px; display: grid; gap: 14px; margin-top: 6px; }
.msg-form input, .msg-form textarea { width: 100%; padding: 14px 16px; border: 3px solid var(--ink); border-radius: 8px; font-size: 16px; font-family: inherit; font-weight: 600; background: #fff; color: var(--ink); }
.msg-form textarea { min-height: 140px; resize: vertical; }
.msg-form input:focus, .msg-form textarea:focus { outline: 3px solid var(--navy); outline-offset: 1px; }
.msg-form button { justify-self: start; }
.perk-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; margin-top: 30px; }
.perk { background: #fff; border: 3px solid var(--ink); border-radius: 12px; box-shadow: 6px 6px 0 var(--ink); padding: 20px; }
.perk .n { font-size: 24px; color: var(--navy); }
.perk h5 { font-size: 17px; margin: 6px 0; text-transform: uppercase; }
.perk p { font-size: 14px; font-weight: 500; margin: 0; }

/* ---------- artist page ---------- */
.artist-top { display: grid; grid-template-columns: 280px 1fr; gap: 32px; align-items: start; padding: 40px 0 26px; }
.artist-top .pic { aspect-ratio: 1/1; background: var(--gold); border: 3px solid var(--ink); border-radius: 12px; box-shadow: 8px 8px 0 var(--ink); display: flex; align-items: center; justify-content: center; font-weight: 800; text-transform: uppercase; text-align: center; overflow: hidden; }
.artist-top .pic img { width: 100%; height: 100%; object-fit: cover; display: block; }
.artist-top h1 { font-size: clamp(36px, 6vw, 64px); text-transform: uppercase; margin: 0; }
.artist-facts { font-weight: 700; margin: 14px 0; line-height: 1.9; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
.tag-row span { font-weight: 800; text-transform: uppercase; font-size: 12px; padding: 6px 12px; background: var(--paper); border: 3px solid var(--ink); border-radius: 100px; }
.link-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.link-row a { font-weight: 800; text-transform: uppercase; font-size: 13px; text-decoration: none; padding: 10px 16px; background: #fff; border: 3px solid var(--ink); border-radius: 8px; box-shadow: 4px 4px 0 var(--ink); color: var(--ink); transition: transform .08s, box-shadow .08s; }
.link-row a:hover { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--ink); }
.gig-list { list-style: none; padding: 0; margin: 14px 0 0; }
.gig-list li { font-weight: 600; padding: 12px 0; border-bottom: 2px solid var(--ink); }

/* ---------- footer ---------- */
footer { background: var(--navy); color: var(--cream); padding: 0 0 30px; }
.foot-marquee { overflow: hidden; border-bottom: 3px solid var(--gold); background: var(--ink); }
.foot-marquee .ticker__row { animation-duration: 26s; }
.foot-marquee span { color: var(--gold); }
.foot-inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-top: 30px; align-items: flex-start; }
.foot-brand { display: flex; align-items: center; gap: 12px; }
.foot-brand img { width: 60px; height: 60px; }
.foot-inner a { color: var(--gold); font-weight: 700; text-decoration: none; }
.foot-links { display: flex; gap: 20px; flex-wrap: wrap; text-transform: uppercase; font-size: 14px; }
.foot-legal { margin-top: 22px; font-size: 12px; color: #c9cbe0; }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .hero-inner, .split, .artist-top, .founders { grid-template-columns: 1fr; }
  .hero-logo img { max-width: 260px; }
  .do-grid { grid-template-columns: 1fr 1fr; }
  .show-card, .cal-row { grid-template-columns: 1fr; text-align: center; }
  .show-card .poster { margin: 0 auto; }
  .nav { height: auto; padding: 9px 0; flex-wrap: wrap; row-gap: 8px; }
  .nav-links { gap: 10px 14px; flex-wrap: wrap; }
}
@media (max-width: 520px) { .do-grid { grid-template-columns: 1fr; } .brandword { display: none; } }
@media (prefers-reduced-motion: reduce) {
  .ticker__row, .hero-logo img { animation: none; }
  * { transition: none !important; }
}
