/* ─────────────────────────────────────────
   SELF-HOSTED FONTS
───────────────────────────────────────── */
@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/bebas-neue-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/inter-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/inter-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/inter-latin.woff2') format('woff2');
}

/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #0a0a0a;
  --dark:    #111111;
  --card:    #1a1a1a;
  --border:  #2a2a2a;
  --accent:  #4a7c4e;
  --accent2: #c8b89a;
  --white:   #f0ead8;
  --muted:   #888;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;
  --max-w: 1100px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  overflow-x: clip; /* prevents iOS Safari touch-offset bug when scrolled */
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; object-fit: cover; }

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

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn--primary:hover { background: #2d5c32; border-color: #2d5c32; transform: translateY(-1px); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--ghost:hover { background: var(--white); color: var(--black); }

.btn--sm { padding: 8px 18px; font-size: 0.8rem; }
.btn--full { width: 100%; text-align: center; }
.btn--sold { background: var(--border); border-color: var(--border); color: var(--muted); cursor: default; }
.btn--sold:hover { transform: none; }

/* ─────────────────────────────────────────
   TYPOGRAPHY HELPERS
───────────────────────────────────────── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.section-title span { color: var(--accent); }
.section-sub { color: var(--muted); margin-bottom: 48px; }

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  transition: background 0.3s ease, padding 0.3s ease;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  padding: 14px 32px;
  border-bottom: 1px solid var(--border);
}
.nav__logo {
  display: flex;
  align-items: center;
}
.nav__logo img {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.85));
}
.nav__links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}
.nav__links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--white); }
.nav__cta {
  background: var(--accent);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 4px;
  transition: background 0.2s !important;
}
.nav__cta:hover { background: #2d5c32 !important; color: #fff !important; }
.nav__burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 10px; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('Photos/Bushkill Background.jpg') center/cover no-repeat;
  overflow: hidden;
  padding-bottom: 100px;
}

/* Animated grain / noise texture */
.hero::before {
  content: '';
  position: absolute;
  inset: -50%;
  width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.15;
  pointer-events: none;
  animation: grain 0.5s steps(2) infinite;
}

@keyframes grain {
  0%  { transform: translate(0, 0); }
  25% { transform: translate(-2%, -3%); }
  50% { transform: translate(3%, 2%); }
  75% { transform: translate(-1%, 3%); }
  100%{ transform: translate(0, 0); }
}

/* Red glow orbs */
.hero::after {
  content: '';
  position: absolute;
  top: 20%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(74,124,78,0.22) 0%, transparent 70%);
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.6) 60%, var(--black) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px 120px;
}
.hero__logo {
  width: 320px;
  max-width: 80%;
  margin: 0 auto 32px;
  display: block;
  filter: drop-shadow(0 2px 12px rgba(255,255,255,0.9));
}

.hero__band-name {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 8rem);
  letter-spacing: 0.2em;
  color: var(--white);
  margin-bottom: 0;
  line-height: 1;
}
.hero__formerly {
  font-size: 0.95rem;
  color: var(--muted);
  font-style: italic;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}

.hero__eyebrow {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--white);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 12rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
  text-shadow: 0 0 80px rgba(74,124,78,0.4);
  margin-bottom: 24px;
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2s infinite;
}
.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: var(--muted);
  margin: 8px auto 0;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ─────────────────────────────────────────
   LISTEN / EP SECTION
───────────────────────────────────────── */
.listen {
  padding: 100px 0;
  background: var(--dark);
}

.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 60px;
}

.platform-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s;
  color: var(--muted);
}
.platform-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.platform-btn:hover { border-color: var(--accent); color: var(--white); background: rgba(74,124,78,0.1); }

.player-placeholder {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  flex-wrap: wrap;
}

.player-art {
  flex-shrink: 0;
  width: 180px; height: 180px;
  background: linear-gradient(135deg, #0a1a0b, #0d2b0e, #0a0f0a);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.player-art__inner {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.player-tracks { flex: 1; min-width: 260px; }
.player-tracks__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 16px;
}

.songlist { list-style: none; }
.songlist__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.2s;
  cursor: default;
}
.songlist__item:last-child { border-bottom: none; }
.songlist__item:hover, .songlist__item.active { color: var(--white); }
.songlist__item.active .song-name { color: var(--accent); }
.song-num { font-size: 0.75rem; width: 24px; color: var(--border); }
.song-name { flex: 1; }
.song-dur { font-size: 0.8rem; }

/* ─────────────────────────────────────────
   ABOUT
───────────────────────────────────────── */
.about {
  padding: 100px 0;
  background: var(--black);
}
.about__text { max-width: 100%; }
.about__text p {
  color: #aaa;
  margin-bottom: 16px;
  font-size: 1.05rem;
}
.about__text em { color: var(--white); font-style: normal; font-weight: 600; }

.members {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.member { text-align: center; flex: 1; min-width: 100px; max-width: 140px; }
.member__avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 10px;
  border: 2px solid var(--accent);
}
.member__avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.member:nth-child(1) .member__avatar img { object-position: center 28%; }
.member:nth-child(3) .member__avatar img { object-position: center 18%; }
.member__name { font-weight: 600; font-size: 0.9rem; margin-bottom: 2px; }
.member__role { font-size: 0.8rem; color: var(--muted); }

/* ─────────────────────────────────────────
   COLLAGE
───────────────────────────────────────── */
.collage {
  background: var(--black);
}

.collage__grid {
  column-count: 3;
  column-gap: 6px;
}

.collage__item {
  break-inside: avoid;
  margin-bottom: 6px;
  overflow: hidden;
}

.collage__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.collage__item:hover img { transform: scale(1.04); }

/* ─────────────────────────────────────────
   TOUR
───────────────────────────────────────── */
.tour {
  padding: 100px 0;
  background: var(--black);
}

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

.tour-item {
  display: grid;
  grid-template-columns: 70px 1fr 160px 110px;
  align-items: center;
  gap: 0 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.tour-item:first-child { border-top: 1px solid var(--border); }
.tour-item--soldout { opacity: 0.5; }

.tour-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
}
.tour-date__day {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--accent);
}
.tour-date__month {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
}

.tour-info {}
.tour-venue { font-weight: 600; font-size: 1rem; }
.tour-location { font-size: 0.85rem; color: var(--muted); }

.tour-support {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
}

/* ─────────────────────────────────────────
   MERCH
───────────────────────────────────────── */
.merch {
  padding: 100px 0;
  background: var(--dark);
}

.merch-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.merch-card {
  flex: 0 1 280px;
}

.merch-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}
.merch-card:hover { transform: translateY(-4px); border-color: var(--accent); }

.merch-card__img {
  height: 260px;
  overflow: hidden;
  background: #e8e8e8;
}
.merch-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.3s ease;
}
.merch-card:hover .merch-card__img img {
  transform: scale(1.04);
}
.merch-card:nth-child(2) .merch-card__img img {
  object-position: center center;
}
.merch-card:nth-child(3) .merch-card__img img {
  object-fit: contain;
  object-position: center center;
}

.merch-card__info { padding: 16px; }
.merch-card__name { font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; }
.merch-card__price { color: var(--accent); font-weight: 600; margin-bottom: 12px; }

.merch-store-link { text-align: center; }

/* ─────────────────────────────────────────
   MAILING LIST
───────────────────────────────────────── */
.newsletter {
  padding: 80px 0;
  background: linear-gradient(135deg, #071507, #0a0f0a);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.newsletter__inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.newsletter h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.newsletter p { color: var(--muted); margin-bottom: 32px; }
.newsletter__form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.newsletter__form input {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.newsletter__form input::placeholder { color: var(--muted); }
.newsletter__form input:focus { outline: none; border-color: var(--accent); }
.newsletter__note { margin-top: 12px; font-size: 0.85rem; color: #4caf50; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
  padding: 60px 0 40px;
  background: var(--black);
}

.footer__inner { text-align: center; }

.footer__logo img {
  height: 110px;
  width: auto;
  margin-bottom: 28px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.85));
}

.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.social-link {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: var(--muted);
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { border-color: var(--accent); color: var(--accent); background: rgba(74,124,78,0.12); transform: translateY(-2px); }

.footer__copy { font-size: 0.8rem; color: var(--muted); margin-bottom: 8px; }
.footer__contact { font-size: 0.8rem; color: var(--muted); }
.footer__contact a { color: var(--accent); }
.footer__contact a:hover { text-decoration: underline; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */

/* ── Mobile (≤ 768px) ── */
@media (max-width: 768px) {

  /* NAV */
  .nav { padding: 12px 20px; }
  .nav.scrolled {
    padding: 10px 20px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav__logo img { height: 52px; }
  .nav__links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 9998;
  }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 1.1rem; }
  .nav__burger { display: flex; z-index: 10000; position: relative; }

  /* HERO */
  .hero { padding-bottom: 80px; background-position: center top; }
  .hero__content { padding: 80px 20px 80px; }
  .hero__band-name {
    font-size: clamp(2.5rem, 9vw, 6rem);
    letter-spacing: 0.1em;
  }
  .hero__formerly { font-size: 0.85rem; margin-bottom: 20px; }
  .hero__eyebrow { font-size: 0.85rem; letter-spacing: 0.15em; gap: 8px; }
  .hero__eyebrow::before,
  .hero__eyebrow::after { width: 20px; }
  .hero__title { font-size: clamp(3rem, 14vw, 7rem); }
  .hero__sub { font-size: 0.95rem; margin-bottom: 28px; }
  .hero__actions { flex-direction: column; align-items: center; gap: 12px; }
  .hero__actions .btn { width: 100%; max-width: 280px; text-align: center; }

  /* SECTION SPACING */
  .listen     { padding: 72px 0; }
  .about      { padding: 72px 0; }
  .tour       { padding: 72px 0; }
  .merch      { padding: 72px 0; }
  .newsletter { padding: 60px 0; }
  .section-title { font-size: clamp(2rem, 7vw, 3.5rem); }
  .section-sub   { margin-bottom: 32px; font-size: 0.9rem; }

  /* LISTEN */
  .platforms { gap: 8px; }
  .platform-btn { width: 100%; justify-content: center; }
  .player-placeholder { flex-direction: column; padding: 20px; gap: 24px; }
  .player-art { width: 100%; max-width: 220px; height: 220px; margin: 0 auto; }
  .player-tracks { min-width: 0; width: 100%; }
  .songlist__item { gap: 12px; padding: 10px 0; font-size: 0.85rem; }

  /* ABOUT */
  .members { gap: 16px; margin-top: 36px; }
  .member  { flex: 0 0 30%; min-width: 0; max-width: none; }

  /* COLLAGE */
  .collage__grid { column-count: 2; }

  /* TOUR — 2-column mobile layout */
  .tour-item {
    grid-template-columns: 55px 1fr;
    gap: 0 12px;
    padding: 16px 0;
  }
  .tour-date    { grid-column: 1; grid-row: 1 / 3; align-self: center; }
  .tour-info    { grid-column: 2; grid-row: 1; }
  .tour-support { grid-column: 2; grid-row: 2; margin-top: 2px; }
  .tour-item > .btn {
    grid-column: 1 / -1;
    grid-row: 3;
    margin-top: 10px;
    text-align: center;
  }
  .tour-date__day { font-size: 1.8rem; }

  /* MERCH */
  .merch-grid { gap: 24px; }
  .merch-card {
    flex: 0 1 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  .merch-card:nth-child(2) .merch-card__img img {
    object-fit: contain;
    object-position: center center;
  }

  /* NEWSLETTER */
  .newsletter__form { flex-direction: column; }
  .newsletter__form input { min-width: 0; width: 100%; }
  .newsletter__form .btn { width: 100%; }
  .newsletter h2 { font-size: 2rem; }
}

/* ── Small phones (≤ 480px) ── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .nav { padding: 10px 16px; }
  .nav.scrolled { padding: 8px 16px; }
  .nav__logo img { height: 44px; }

  .hero__band-name {
    font-size: clamp(2rem, 8.5vw, 4rem);
    letter-spacing: 0.08em;
  }
  .hero__title { font-size: clamp(2.5rem, 13vw, 5rem); }
  .hero__eyebrow::before,
  .hero__eyebrow::after { display: none; }

  .collage__grid { column-count: 1; }

  .members { gap: 12px; justify-content: center; }
  .member  { flex: 0 0 30%; min-width: 0; max-width: none; }
  .member__avatar { width: 72px; height: 72px; }
  .member__name { font-size: 0.72rem; }
  .member__role { font-size: 0.68rem; }

  .merch-card { max-width: 100%; }
  .merch-card__img { height: 220px; }

  .tour-date__day { font-size: 1.6rem; }
  .tour-venue     { font-size: 0.9rem; }
  .tour-location  { font-size: 0.8rem; }
  .tour-support   { font-size: 0.75rem; }
}
