/* ── Custom Properties ─────────────────────────────────────────────────── */
:root {
  --color-bg:      #0a0a0a;
  --color-surface: #141414;
  --color-border:  #222;
  --color-text:    #e8e8e8;
  --color-muted:   #888;
  --color-accent:  #00e5ff;          /* cyan — change this one value to re-theme */
  --color-accent-hover: #5cfffc;

  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --container-max: 1080px;
  --nav-height: 60px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--color-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent-hover); }

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

/* ── Utility ──────────────────────────────────────────────────────────── */
.container {
  width: 90%;
  max-width: var(--container-max);
  margin: 0 auto;
}

.container--narrow { max-width: 600px; }

/* ── Navigation ───────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid var(--color-border);
}

.nav__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--color-text);
}
.nav__logo:hover { color: var(--color-accent); }

.nav__links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav__links a {
  color: var(--color-muted);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--color-text); }

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__toggle--active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle--active span:nth-child(2) { opacity: 0; }
.nav__toggle--active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────────────────────────── */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 0 5%;
  background: radial-gradient(ellipse at 50% 40%, #1a1a1a 0%, var(--color-bg) 70%);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4rem, 12vw, 10rem);
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--color-text);
}

.hero__tagline {
  margin-top: 1rem;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--color-muted);
  letter-spacing: 0.04em;
}

.hero .btn {
  margin-top: 2.5rem;
}

.hero__socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

/* ── Photos ──────────────────────────────────────────────────────────── */
.photos {
  background: var(--color-bg);
  overflow: hidden;
  padding: 2px 0;
}

.photos__strip {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 5%;
}

.photos__strip::-webkit-scrollbar {
  display: none;
}

.photos__strip img {
  flex: 0 0 auto;
  width: 480px;
  height: 320px;
  object-fit: cover;
  display: block;
  scroll-snap-align: start;
  border-radius: 4px;
  transition: opacity var(--transition);
}

.photos__strip img:hover {
  opacity: 0.85;
}

@media (max-width: 768px) {
  .photos__strip img {
    width: 85vw;
    height: 240px;
  }
}

/* ── Buttons ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
}
.btn--primary:hover {
  background: var(--color-accent-hover);
  color: #fff;
  transform: translateY(-1px);
}

.btn--small {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  background: transparent;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
}
.btn--small:hover {
  background: var(--color-accent);
  color: #fff;
}

/* ── Sections ─────────────────────────────────────────────────────────── */
.section {
  padding: 6rem 0;
}

.section--alt {
  background: var(--color-surface);
}

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  text-align: center;
}

/* ── About ────────────────────────────────────────────────────────────── */
.about__bio {
  max-width: 680px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-muted);
}

.members {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.member-card {
  width: calc(33.333% - 1.34rem);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.member-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-3px);
}

.member-card__photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--color-border);
  margin: 0 auto 1.25rem;
  object-fit: cover;
}

.member-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.member-card__role {
  font-size: 0.85rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.member-card__bio {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.member-card__ig {
  font-size: 0.85rem;
  font-weight: 500;
}

/* ── Music ────────────────────────────────────────────────────────────── */
.video-feature {
  max-width: 860px;
  margin: 0 auto 3rem;
}

.video-feature__embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}

.video-feature__embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.music-embeds {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.embed-placeholder {
  background: var(--color-bg);
  border: 2px dashed var(--color-border);
  border-radius: 8px;
  padding: 4rem 2rem;
  text-align: center;
}

.embed-placeholder p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.embed-placeholder span {
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* ── Social Icons ────────────────────────────────────────────────────── */
.social-icon {
  display: inline-flex;
  align-items: center;
  color: var(--color-muted);
  transition: color var(--transition);
}

.social-icon:hover {
  color: var(--color-accent);
}

.social-icon svg {
  width: 28px;
  height: 28px;
}

/* ── Shows ────────────────────────────────────────────────────────────── */
.shows-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
}

.show-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  transition: border-color var(--transition);
}
.show-card:hover { border-color: var(--color-accent); }

.show-card__date {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  color: var(--color-accent);
  min-width: 120px;
}

.show-card__time {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-accent);
  white-space: nowrap;
  letter-spacing: 0.03em;
  margin-left: auto;
}

.show-card__details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.show-card__venue {
  font-weight: 500;
  font-size: 1rem;
}

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

.shows__empty {
  text-align: center;
  color: var(--color-muted);
}

.section__subtitle {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-muted);
  text-align: center;
  margin: 3rem auto 1.5rem;
}

.show-card.show-card--past {
  opacity: 0.7;
}

.show-card.show-card--hidden {
  display: none !important;
}

.past-shows-toggle-wrap {
  text-align: center;
  margin-top: 1.5rem;
}

/* ── Mailing List ─────────────────────────────────────────────────────── */
.mailing__sub {
  text-align: center;
  color: var(--color-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.mailing-form {
  display: flex;
  gap: 0.75rem;
  max-width: 460px;
  margin: 0 auto;
}

.mailing-form__input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition);
}
.mailing-form__input:focus {
  outline: none;
  border-color: var(--color-accent);
}

.mailing__msg {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  min-height: 1.4em;
}

.mailing__msg--ok { color: var(--color-accent); }
.mailing__msg--err { color: #ff5e5b; }

/* ── Footer ───────────────────────────────────────────────────────────── */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.footer__socials {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer__link {
  font-size: 0.9rem;
  color: var(--color-text);
}
.footer__link span {
  color: var(--color-muted);
  margin-left: 0.25rem;
}
.footer__link:hover { color: var(--color-accent); }
.footer__link:hover span { color: var(--color-accent-hover); }

.footer__copy {
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* ── Member Modal ─────────────────────────────────────────────────────── */
.member-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.member-modal--open {
  opacity: 1;
  pointer-events: auto;
}

.member-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}

.member-modal__content {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 2.5rem;
  max-width: 560px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  z-index: 1;
}

.member-modal__close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--color-muted);
  font-size: 1.75rem;
  cursor: pointer;
  transition: color var(--transition);
}
.member-modal__close:hover { color: var(--color-text); }

.member-modal__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.member-modal__role {
  font-size: 0.85rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}

.member-modal__bio p {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.member-modal__bio p:last-child {
  margin-bottom: 0;
}

.member-modal__ig {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ── Lightbox ─────────────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.lightbox--open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: none;
  border: none;
  color: var(--color-text);
  cursor: pointer;
  font-size: 2rem;
  padding: 0.5rem;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  opacity: 1;
}

.lightbox__close {
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.5rem;
}

.lightbox__prev { left: 1.5rem; }
.lightbox__next { right: 1.5rem; }

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav__toggle { display: flex; }

  .nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    gap: 0;
    background: rgba(10, 10, 10, 0.97);
    border-bottom: 1px solid var(--color-border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .nav__links--open { max-height: 300px; }

  .nav__links li { width: 100%; text-align: center; }

  .nav__links a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  .member-card { width: 100%; }

  .show-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .show-card__date { min-width: auto; }

  .mailing-form {
    flex-direction: column;
  }

  .footer__socials {
    flex-direction: column;
    gap: 1rem;
  }
}
