/* Often Easy — site.css */
@import url('https://use.typekit.net/zup7pyq.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ─── Tokens ──────────────────────────────────────────────── */
:root {
  --bg:       #0D0B0F;
  --surface:  #171412;
  --ash:      #252020;
  --text:     #E8DFC8;
  --muted:    #9a9080;
  --gold:     #B8943B;
  --gold-lt:  #c8a96e;
  --border:   rgba(184, 148, 59, 0.14);
  --font-d:   'anzeigen-grotesk', 'Arial Narrow', sans-serif;
  --font-b:   'Inter', system-ui, sans-serif;
  --nav-h:    62px;
  --max-w:    1080px;
  --pad:      clamp(1.2rem, 5vw, 3rem);
}

/* ─── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  line-height: 1.65;
  min-height: 100svh;
}

/* ─── Grain overlay ───────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9900;
  opacity: 0.055;
  background-image: radial-gradient(rgba(255,255,255,.22) 1px, transparent 1px);
  background-size: 3px 3px;
}

/* ─── NAV ─────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  background: rgba(13, 11, 15, 0.88);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
}

.nav-wink {
  height: 32px;
  width: auto;
  color: var(--gold);
  flex-shrink: 0;
}

.nav-wordmark {
  font-family: var(--font-d);
  font-size: 1.2rem;
  color: var(--text);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 0.88;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links a {
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-lt);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  z-index: 9100;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 8900;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.nav-overlay.open { display: flex; }

.nav-overlay a {
  font-family: var(--font-d);
  font-size: clamp(2.8rem, 9vw, 4.5rem);
  color: var(--text);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.nav-overlay a:hover { color: var(--gold-lt); }

.nav-overlay-close {
  position: absolute;
  top: 1.2rem;
  right: var(--pad);
  background: none;
  border: none;
  color: var(--muted);
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.nav-overlay-close:hover { color: var(--text); }

@media (max-width: 680px) {
  .nav-links  { display: none; }
  .nav-toggle { display: flex; }
}

/* ─── Page body offset ────────────────────────────────────── */
.page-body { padding-top: var(--nav-h); }

/* ─── Section wrapper ─────────────────────────────────────── */
.section {
  padding: clamp(3rem, 8vw, 5.5rem) var(--pad);
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-d);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.5rem;
  font-size: 0.72rem;
  font-family: var(--font-b);
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg);
}

.btn-primary:hover { background: var(--gold-lt); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-lt);
}

.btn-outline:hover {
  background: rgba(184,148,59,0.1);
  color: var(--text);
}

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: var(--pad);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to top, rgba(13,11,15,1) 0%, rgba(13,11,15,0.55) 55%, rgba(13,11,15,0.35) 100%),
    url("assets/band.JPG");
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}

.hero-wink {
  height: 80px;
  width: auto;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-band-name {
  font-family: var(--font-d);
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.hero-tagline {
  font-size: clamp(0.78rem, 1.5vw, 0.92rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ─── RELEASE CARD ────────────────────────────────────────── */
.release-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.release-art {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

.release-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.release-title {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.release-desc {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 480px;
  margin-bottom: 0.5rem;
}

.release-platforms {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  font-size: 0.7rem;
  font-family: var(--font-b);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--ash);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--muted);
  transition: all 0.2s;
}

.platform-btn:hover {
  color: var(--text);
  border-color: rgba(184,148,59,0.35);
}

.platform-btn img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}

@media (max-width: 600px) {
  .release-grid {
    grid-template-columns: 1fr;
  }
  .release-art { max-width: 200px; }
}

/* ─── PHOTO BACKGROUNDS ──────────────────────────────────── */
/* Same treatment as the homepage hero: photo shows at the top, fades to --bg at the bottom. */
.photo-band {
  position: relative;
  overflow: hidden;
}

.photo-band-bg,
.photo-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 12%;
  z-index: 0;
}

.photo-band-bg::after,
.photo-header-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,11,15,1) 0%, rgba(13,11,15,0.55) 55%, rgba(13,11,15,0.35) 100%);
}

/* Homepage band also fades in from the section above */
.photo-band-bg::after {
  background:
    linear-gradient(to bottom, rgba(13,11,15,1) 0%, rgba(13,11,15,0) 18%),
    linear-gradient(to top, rgba(13,11,15,1) 0%, rgba(13,11,15,0.72) 50%, rgba(13,11,15,0.4) 100%);
}

.photo-band-content {
  position: relative;
  z-index: 1;
  min-height: 80svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.photo-header {
  position: relative;
  overflow: hidden;
  min-height: 65svh;
  display: flex;
  align-items: flex-end;
  border-bottom: none;
}

.photo-header .page-header-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* ─── NEXT SHOW ───────────────────────────────────────────── */
.next-show-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.next-show-date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}

.next-show-month {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.next-show-day {
  font-family: var(--font-d);
  font-size: 3rem;
  line-height: 1;
  color: var(--text);
}

.next-show-info { flex: 1; }

.next-show-venue {
  font-family: var(--font-d);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}

.next-show-location {
  color: var(--muted);
  font-size: 0.85rem;
}

/* ─── SHOWS PAGE ──────────────────────────────────────────── */
.page-header {
  padding: clamp(3rem, 8vw, 5rem) var(--pad) 2rem;
  border-bottom: 1px solid var(--border);
}

.page-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.page-title {
  font-family: var(--font-d);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.event-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.event-date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
  flex-shrink: 0;
}

.event-month {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.event-day {
  font-family: var(--font-d);
  font-size: 2.5rem;
  line-height: 1;
}

.event-info { flex: 1; min-width: 160px; }

.event-venue {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}

.event-location {
  font-size: 0.83rem;
  color: var(--muted);
}

.event-time {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

.no-shows {
  padding: 3rem 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.no-shows a { color: var(--gold-lt); }

/* ─── WATCH PAGE ──────────────────────────────────────────── */
.video-section { margin-bottom: 3rem; }

.video-section-title {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 900px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}

.video-thumb {
  display: block;
  border-radius: 2px;
  overflow: hidden;
  background: var(--ash);
  transition: opacity 0.2s, transform 0.2s;
}

.video-thumb:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.video-thumb-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  background: var(--ash);
}

.video-thumb-label {
  padding: 0.55rem 0.6rem;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.3;
}

/* ─── ABOUT PAGE ──────────────────────────────────────────── */
.about-hero {
  position: relative;
  height: 55vw;
  max-height: 520px;
  min-height: 280px;
  overflow: hidden;
}

.about-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(0.65);
}

.bio-text {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: var(--muted);
  max-width: 660px;
  line-height: 1.8;
}

.bio-text p + p { margin-top: 1.2em; }

.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.member-card {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.member-name {
  font-family: var(--font-d);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--text);
}

.member-role {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ─── CONTACT PAGE ────────────────────────────────────────── */
.contact-block {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 3rem;
}

.contact-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-value {
  font-size: 1.3rem;
  color: var(--text);
  transition: color 0.2s;
}

.contact-value:hover { color: var(--gold-lt); }

.contact-note {
  max-width: 340px;
  font-size: 0.88rem;
  color: var(--muted);
}

.social-grid {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.2s;
}

.social-link:hover { color: var(--text); }

.social-link img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.6;
}

/* ─── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3.5rem var(--pad) 2rem;
  margin-top: 4rem;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
}

.footer-heading {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-mc-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-mc-form input[type="email"] {
  background: var(--ash);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.6rem 0.8rem;
  font-size: 0.82rem;
  font-family: var(--font-b);
  width: 100%;
  border-radius: 2px;
  transition: border-color 0.2s;
}

.footer-mc-form input[type="email"]::placeholder { color: var(--muted); }
.footer-mc-form input[type="email"]:focus {
  outline: none;
  border-color: rgba(184,148,59,0.5);
}

.footer-mc-form button {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-lt);
  padding: 0.55rem 1rem;
  font-size: 0.68rem;
  font-family: var(--font-b);
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s;
  align-self: flex-start;
}

.footer-mc-form button:hover {
  background: rgba(184,148,59,0.12);
  color: var(--text);
}

.footer-link-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-link-list a {
  font-size: 0.82rem;
  color: var(--muted);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-link-list a:hover { color: var(--text); }

.footer-link-list img {
  width: 13px;
  height: 13px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.65;
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: var(--muted);
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom a { color: var(--muted); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold-lt); }

.footer-brand {
  font-family: var(--font-d);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text) !important;
}

@media (max-width: 700px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }
}
