/* ── pages.css – shared styles for inner pages ── */

body {
  overflow-y: auto;
}

/* Solid dark background for inner pages (no canvas/particles) */
.fixed-bg {
  background: #000;
}

/* On inner pages, nav also shows a "Home" link — same spacing */
.nav-inner {
  gap: clamp(20px, 5vw, 60px);
}

/* Active nav link — underline stays visible permanently */
.nav-link--active {
  color: rgba(255, 255, 255, 1) !important;
}

.nav-link--active::after {
  transform: scaleX(1) !important;
  opacity: 1 !important;
}

/* ── Page content ── */

.page-content {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px clamp(24px, 8vw, 120px) 80px;
  text-align: center;
}

.page-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: clamp(2rem, 6vw, 4rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.2em;
  /* Subtle blue glow to match the site's snow/particle color */
  text-shadow: 0 0 60px rgba(140, 200, 255, 0.25);
}

.page-description {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: clamp(0.85rem, 2vw, 1.2rem);
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
  margin: -0.6em 0 1.8em;
}


.page-body {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: clamp(0.85rem, 1.8vw, 1.05rem);
  letter-spacing: 0.08em;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.5);
  max-width: 640px;
  margin: 0;
}



/* ── About page two-column layout ── */

.about-layout {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 7vw, 100px);
  text-align: left;
  padding: 100px clamp(24px, 8vw, 120px) 80px;
}

.about-text {
  flex: 1 1 0;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 1.4em;
}

.about-title {
  margin: 0;
  text-align: left;
}

.about-body {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  letter-spacing: 0.07em;
  line-height: 2;
  color: rgba(255, 255, 255, 0.58);
  margin: 0;
}

.about-image-wrap {
  flex: 0 0 auto;
  width: clamp(220px, 34vw, 440px);
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 20px 60px rgba(0, 0, 0, 0.7),
    0 0 80px rgba(140, 200, 255, 0.05);
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.88) saturate(0.9);
  transition: filter 0.5s ease, transform 0.6s ease;
}

.about-image-wrap:hover .about-image {
  filter: brightness(1) saturate(1);
  transform: scale(1.03);
}

/* ── Set List ── */

.setlist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.setlist li {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: clamp(0.85rem, 1.6vw, 1rem);
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.55em 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.setlist li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.setlist li.featured {
  color: rgba(200, 230, 255, 0.9);
}

.setlist li.hidden {
  display: none;
}

.show-more-btn {
  display: block;
  margin: 1.6em auto 0;
  background: none;
  border: none;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: clamp(0.7rem, 1.3vw, 0.85rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(180, 220, 255, 0.75);
  cursor: pointer;
  padding-bottom: 5px;
  position: relative;
  transition: color 0.3s ease;
}

.show-more-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(180, 220, 255, 0.7) 40%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(180, 220, 255, 0.7) 60%,
    transparent
  );
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.8;
}

.show-more-btn:hover {
  color: rgba(255, 255, 255, 1);
}

.show-more-btn:hover::after {
  transform: scaleX(1);
}

/* Stack vertically on narrow screens */
@media (max-width: 700px) {
  .about-layout {
    flex-direction: column;
    text-align: center;
    gap: 36px;
  }
  .about-title {
    text-align: center;
  }
  .about-image-wrap {
    width: 80vw;
    aspect-ratio: 4 / 3;
  }
}