/* =========================================================
   Folk Yeah! — shared styles
   Palette: near-black background, brick-red accent, cream text
   Fonts:   Special Elite (typewriter display) + Karla (body)
   ========================================================= */

:root {
  --bg:        #161413;
  --bg-2:      #1e1a18;
  --bg-3:      #262120;
  --text:      #f4f1ec;
  --muted:     #a89f98;
  --red:       #b22a2f;
  --red-bright:#d6363c;
  --cream:     #f4ece0;
  --line:      rgba(255, 255, 255, 0.10);
  --maxw:      1100px;
  --header-h:  72px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Karla", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--red-bright); text-decoration: none; }
a:hover { color: var(--cream); }

h1, h2, h3, .display {
  font-family: "Special Elite", "Courier New", monospace;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* offset anchor targets so titles clear the sticky header */
[id] { scroll-margin-top: calc(var(--header-h) + 12px); }

.section { padding: 80px 0; }
.section--tight { padding: 48px 0; }
.center { text-align: center; }

.eyebrow {
  font-family: "Special Elite", monospace;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red-bright);
  font-size: 0.8rem;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: "Special Elite", monospace;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 14px 34px;
  border: 2px solid var(--red);
  color: var(--cream);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn:hover { background: var(--red); color: #fff; }
.btn--solid { background: var(--red); color: #fff; }
.btn--solid:hover { background: var(--red-bright); border-color: var(--red-bright); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(18, 16, 15, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: 46px; }
.brand .brand-name {
  font-family: "Special Elite", monospace;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 1rem;
  color: var(--cream);
}

.nav {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav a {
  font-family: "Special Elite", monospace;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--cream);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.nav a:hover,
.nav a.active {
  color: var(--red-bright);
  border-bottom-color: var(--red);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--cream);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  background: #000 center / cover no-repeat;
  background-image:
    linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(22,20,19,0.92)),
    url("../images/home-hero.jpg");
  background-position: center 30%;
}
.hero-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 48px 24px 56px;
}
.hero-hashtag {
  color: var(--red-bright);
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  margin: 0 0 0.2em;
}
.hero-tagline {
  color: var(--red-bright);
  font-family: "Special Elite", monospace;
  letter-spacing: 0.05em;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  margin: 0 0 24px;
}
.hero-badge { width: 210px; height: 210px; justify-self: end; }

/* ---------- Full-width photo banner ---------- */
.photo-banner {
  width: 100%;
  height: clamp(280px, 45vw, 520px);
  background: #000 center top / cover no-repeat;
  margin: 56px 0;
  border-top: 4px solid var(--red);
  border-bottom: 4px solid var(--red);
}

/* ---------- Videos grid ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 40px;
}
.video-card { background: var(--bg-2); border: 1px solid var(--line); }
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-frame iframe,
.video-frame .video-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  text-align: center;
  padding: 16px;
}
.video-placeholder .yt-mark {
  font-size: 2.4rem;
  color: var(--red);
}
.video-card .video-title {
  font-family: "Special Elite", monospace;
  letter-spacing: 0.04em;
  font-size: 1rem;
  padding: 16px 18px;
  margin: 0;
}

/* ---------- About ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose p { margin: 0 0 1.4em; color: #e7e1da; }

/* ---------- Shows ---------- */
.shows-list { max-width: 820px; margin: 32px auto 0; }
.show-row {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.show-date {
  font-family: "Special Elite", monospace;
  color: var(--red-bright);
  letter-spacing: 0.06em;
}
.show-date .day { display: block; font-size: 1.6rem; line-height: 1; }
.show-date .mo  { text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.8rem; }
.show-venue { font-family: "Special Elite", monospace; font-size: 1.15rem; }
.show-venue small { display: block; font-family: "Karla", sans-serif; color: var(--muted); letter-spacing: 0; }
.empty-state { color: var(--muted); text-align: center; padding: 24px 0; }

/* ---------- Forms ---------- */
.form { max-width: 760px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.field { margin-bottom: 24px; }
.field label {
  display: block;
  font-family: "Special Elite", monospace;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin-bottom: 8px;
}
.field label .req { color: var(--muted); font-size: 0.8rem; letter-spacing: 0.1em; }
.field input,
.field textarea {
  width: 100%;
  background: #fbf9f4;
  color: #1a1a1a;
  border: 0;
  padding: 14px 16px;
  font-family: "Karla", sans-serif;
  font-size: 1rem;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus,
.field textarea:focus { outline: 3px solid var(--red); }
.form .btn { display: block; margin: 8px auto 0; }
.form-note { text-align: center; color: var(--muted); font-size: 0.85rem; margin-top: 22px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 48px 0;
  text-align: center;
}
.site-footer .badge-sm { width: 70px; height: 70px; margin: 0 auto 18px; }
.social { display: flex; gap: 22px; justify-content: center; margin: 18px 0; }
.social a {
  font-family: "Special Elite", monospace;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--cream);
}
.social a:hover { color: var(--red-bright); }
.copyright { color: var(--muted); font-size: 0.8rem; letter-spacing: 0.04em; }

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(18, 16, 15, 0.98);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav.open { max-height: 360px; }
  .nav a {
    width: 100%;
    text-align: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }
  .hero-band { grid-template-columns: 1fr; text-align: left; }
  .hero-badge { justify-self: start; width: 130px; height: 130px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .show-row { grid-template-columns: 90px 1fr; }
  .show-row .btn { grid-column: 2; justify-self: start; }
}
