@font-face {
  font-family: 'Epidemia';
  src: url('../fonts/Epidemia.woff2') format('woff2'),
       url('../fonts/Epidemia.woff') format('woff'),
       url('../fonts/Epidemia.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --header-height: 90px;
  --accent: #c8862a;
  --text: #e0e0e0;
  --text-dim: #999;
  --overlay: rgba(0, 0, 0, 0.62);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: #0e0e0e;
  color: var(--text);
  line-height: 1.7;
}

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 500;
  background: rgba(0, 0, 0, 0.90);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo {
  position: absolute;
  left: 2rem;
  font-family: 'Epidemia', serif;
  font-size: 1rem;
  letter-spacing: 0.25em;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0.85;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Epidemia', serif;
  font-weight: lighter;
  text-decoration: none;
  color: #bbb;
  font-size: 3rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.nav-toggle-checkbox { display: none; }

.nav-toggle-label {
  display: none;
  position: absolute;
  right: 2rem;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle-label span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ccc;
  border-radius: 2px;
  transition: background 0.2s;
}

.nav-toggle-label:hover span { background: white; }

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

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.97);
    flex-direction: column;
    gap: 0;
    align-items: center;
    padding: 1rem 0;
    display: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links li a {
    display: block;
    padding: 0.85rem 2rem;
    font-size: 2rem;
  }

  .nav-toggle-checkbox:checked ~ nav .nav-links {
    display: flex;
  }
}

section {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  scroll-margin-top: var(--header-height);
}

.section-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  pointer-events: none;
}

.section-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 3rem 5rem;
}

.section-title {
  font-family: 'Epidemia', serif;
  font-size: clamp(3rem, 4vw, 6rem);
  font-weight: lighter;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: white;
  margin-bottom: 3rem;
}

#welcome {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
  scroll-margin-top: 0;
}

#welcome video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}

.welcome-content {
  position: relative;
  z-index: 1;
  text-align: center;
  pointer-events: none;
}

.welcome-content h1 {
  font-family: 'Epidemia', serif;
  font-size: clamp(4rem, 9vw, 12rem);
  font-weight: lighter;
  color: white;
  text-transform: uppercase;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

#music {
  background-image: url('../imgs/backgrounds/music.jpg');
}

.platforms {
  display: flex;
  flex-wrap: nowrap;
  gap: 2.5rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto 5rem;
  background: rgba(55, 35, 15, 0.60);
  padding: 1.3rem 2.5rem;
  border-radius: 3px;
}

.platforms a {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.platforms a img {
  height: 40px;
  width: auto;
  filter: brightness(0.85) grayscale(0.1);
  transition: filter 0.25s, transform 0.25s;
}

.platforms a:hover img {
  filter: brightness(1.2) grayscale(0);
  transform: scale(1.08);
}

.albums {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.album {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  height: 500px;
  max-width: 1080px;
  margin: 0 auto;
  box-shadow: 0 8px 50px rgba(0, 0, 0, 0.65);
}

.album .cover {
  width: 500px;
  height: 500px;
  object-fit: cover;
  flex-shrink: 0;
}

.album iframe {
  border: 0;
  width: 500px;
  height: 500px;
  flex-shrink: 0;
}

.album-subtext {
  margin-top: 4rem;
  text-align: center;
  color: var(--text-dim);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  border: none;
  padding: 0;
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 2.5rem;
  line-height: 0;
  vertical-align: -0.5rem;
  color: var(--accent);
  font-style: normal;
  margin: 0 0.15em;
}

#biography {
  background-image: url('../imgs/backgrounds/biography.jpg');
}

#biography .section-overlay {
  background: rgba(0, 0, 0, 0.35);
}

.bio-text {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  font-size: 0.97rem;
  color: var(--text);
}

.members {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3.5rem;
}

.member {
  text-align: center;
  flex: 1 1 220px;
  max-width: 280px;
}

.member img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
  margin-bottom: 0.8rem;
}

.member-name {
  font-size: 0.95rem;
  color: white;
  margin-bottom: 0.2rem;
  letter-spacing: 0.05em;
}

.member-role {
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

#videos {
  background-image: url('../imgs/backgrounds/videos.jpg');
  background-position: center 80%;
}

.video-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
}

.video-wrapper {
  width: min(70vw, 70vw);
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

#photos {
  background-image: url('../imgs/backgrounds/biography.jpg');
}

#photos .section-overlay {
  background: rgba(0, 0, 0, 0.35);
}

#photos .section-inner {
  padding-left: 0;
  padding-right: 0;
  max-width: 100%;
}

#photos .section-title {
  padding: 0 3rem;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.photo-gallery img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  cursor: pointer;
  transition: filter 0.2s;
}

.photo-gallery img:hover { filter: brightness(1.15); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox.hidden { display: none; }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  cursor: default;
  box-shadow: 0 8px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox-close:hover { opacity: 1; }

#tour {
  background-image: url('../imgs/backgrounds/tour.jpg');
}

.tour-table-wrap {
  max-width: 820px;
  margin: 0 auto;
  background: rgba(10, 8, 6, 0.78);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tour-table {
  width: 100%;
  border-collapse: collapse;
}

.tour-table th,
.tour-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.tour-table thead tr {
  background: rgba(0, 0, 0, 0.4);
}

.tour-table th {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 600;
}

.tour-table td { font-size: 0.9rem; }

.tour-table tbody tr:last-child td { border-bottom: none; }

.tour-table tbody tr:hover td { background: rgba(255, 255, 255, 0.04); }

.tour-table td:first-child {
  color: var(--text-dim);
  font-size: 0.85rem;
  white-space: nowrap;
}

#contact {
  background-image: url('../imgs/backgrounds/contact.jpg');
  background-position: center 40%;
}

.contact-inner {
  text-align: center;
}

.contact-inner p {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.contact-email {
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  color: white;
  text-decoration: none;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 3px;
  transition: color 0.2s;
}

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

footer {
  background: #080808;
  text-align: center;
  padding: 1.5rem 2rem;
  font-size: 0.75rem;
  color: var(--text-dim);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  line-height: 1.9;
}

.footer-thanks {
  margin-top: 0.25rem;
  font-size: 0.72rem;
}

.footer-thanks a {
  color: var(--text-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.footer-thanks a:hover { color: var(--accent); }

@media (max-width: 1100px) {
  .album {
    flex-direction: column;
    height: auto;
    max-width: 520px;
  }

  .album .cover {
    width: 100%;
    height: 320px;
  }

  .album iframe {
    width: 100%;
    height: 500px;
  }
}

@media (max-width: 820px) {
  .platforms {
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    overflow-x: auto;
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .section-inner { padding: 4rem 1.2rem 3.5rem; }

  .photo-gallery { grid-template-columns: repeat(2, 1fr); }

  .tour-table th,
  .tour-table td { padding: 0.75rem 0.8rem; }
}
