@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;700&family=Inter:wght@300;400;500&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:        #0a0a0a;
  --bg-alt:    #111111;
  --bg-card:   #1a1a1a;
  --text:      #e8e4de;
  --muted:     #717171;
  --accent:    #b91c3a;
  --accent-hi: #d9264a;
  --nav-h:     68px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.75;
}

section { scroll-margin-top: var(--nav-h); }

/* ─── NAV ─────────────────────────────────────────── */

#nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 2.5rem;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  z-index: 200;
  transition: box-shadow 0.3s;
}

#nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.55); }

.nav-logo { display: flex; align-items: center; }
.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.25rem;
  margin-left: auto;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-social {
  display: flex;
  align-items: center;
  color: var(--muted);
  transition: color 0.2s;
}

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

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
}

.lang-sep { color: rgba(255,255,255,0.15); }

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 0;
  transition: color 0.2s;
}

.lang-btn:hover  { color: var(--text); }
.lang-btn.active { color: var(--accent); }

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 28px;
  height: 28px;
}

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

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ─── HERO ────────────────────────────────────────── */

#hero {
  position: relative;
  height: 100svh;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  transform: scale(1.04);
}

#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(10,10,10,0.4) 0%,
      rgba(10,10,10,0.0) 35%,
      rgba(10,10,10,0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-logo {
  display: block;
  width: min(1840px, 95vw);
  max-height: 75vh;
  object-fit: contain;
  margin: 0 auto 1.75rem;
}

.hero-tagline {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: clamp(0.9rem, 2.2vw, 1.2rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-scroll {
  position: absolute;
  z-index: 1;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  text-decoration: none;
  animation: bounce 2s ease-in-out infinite;
  transition: color 0.2s;
}

.hero-scroll:hover { color: var(--text); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}


/* ─── SECTIONS ────────────────────────────────────── */

.section {
  padding: 6.5rem 1.5rem;
}

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

.container {
  max-width: 940px;
  margin: 0 auto;
}

.section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2.25rem;
  line-height: 1.1;
}

.section h2::after {
  content: '';
  display: block;
  width: 2.75rem;
  height: 3px;
  background: var(--accent);
  margin-top: 0.7rem;
  border-radius: 2px;
}

.section-text {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 680px;
  margin-bottom: 1.1rem;
}

.section-text:last-child { margin-bottom: 0; }


/* ─── PHOTO SLIDER ────────────────────────────────── */

.photo-slider {
  position: relative;
  height: max(300px, 30vw);
  overflow: hidden;
  background: var(--bg);
  cursor: pointer;
}

.slider-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(40%) brightness(0.55);
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.slider-img.active { opacity: 1; }


/* ─── MEMBERS ─────────────────────────────────────── */

.members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 0.5rem;
}

.member-card { text-align: center; }

.member-photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 3px;
  background: var(--bg-card);
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(25%);
  transition: filter 0.4s, transform 0.5s;
}

.member-card:hover .member-photo img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.member-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 1.1rem 0 0.2rem;
}

.member-role {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.85rem;
}

.member-bio {
  color: var(--muted);
  font-size: 0.92rem;
  text-align: left;
  line-height: 1.65;
}


/* ─── SHOWS ───────────────────────────────────────── */

.shows-list {
  list-style: none;
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.shows-list li {
  padding: 1rem 1.4rem;
  border-left: 3px solid var(--accent);
  background: var(--bg-card);
  color: var(--muted);
  font-size: 0.98rem;
  border-radius: 0 3px 3px 0;
}


/* ─── CONTACT ─────────────────────────────────────── */

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.contact-name {
  color: var(--text);
  font-size: 1.05rem;
}

.contact-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 1.05rem;
  transition: color 0.2s;
}

.contact-link:hover { color: var(--accent); }


/* ─── FOOTER ──────────────────────────────────────── */

footer {
  background: #060606;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 3rem 1.5rem;
}

.footer-inner {
  max-width: 940px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  height: 48px;
  width: auto;
  opacity: 0.55;
}

.footer-copy {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}


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

@media (max-width: 768px) {
  #nav { padding: 0 1.25rem; gap: 0; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--bg-alt);
    flex-direction: column;
    padding: 1.5rem 1.75rem 2rem;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-left: 0;
  }

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

  .nav-links li + li { border-top: 1px solid rgba(255,255,255,0.05); }

  .nav-links a {
    display: block;
    padding: 0.85rem 0;
    font-size: 1rem;
    letter-spacing: 0.1em;
  }

  .nav-toggle { display: flex; }

  .members-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0.5rem auto 0;
  }

  .member-photo { aspect-ratio: 4 / 3; }

  .member-bio { text-align: center; }

}

@media (max-width: 480px) {
  .section { padding: 4.5rem 1.25rem; }
  .hero-tagline { letter-spacing: 0.12em; }
}
