/* ============================================================
   DON LOW — EPK v2 — Subpages (Music / Shows / Press / Contact)
   Shared styles for all pages except hero (index.html)
   ============================================================ */

/* --- Solid bg overlay (no video on subpages) -------------- */
.bg-overlay--solid {
  position: fixed;
  inset: 0;
  background: #080808;
  z-index: 0;
}

/* --- Scrollable frame variant ----------------------------- */
.frame--scroll {
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
.frame--scroll .sig-bar--top { position: sticky; }
.frame--scroll .sig-bar--bottom { position: relative; }

/* Dark frame variant (contact) */
.frame--dark { background: #0a0a0a; }
.body--dark { background: #080808; }

/* --- Page content wrapper --------------------------------- */
.page-content {
  position: relative;
  padding-top: 60px; /* space for nav */
}

/* --- Nav active state ------------------------------------- */
.nav__active {
  opacity: 1 !important;
  color: #9B7A1E !important;
}

/* --- Page title (hero overlay) ---------------------------- */
.page-title {
  font-family: 'JRK', 'Teko', sans-serif;
  font-size: 56px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #E8E0D0;
  position: relative;
  z-index: 3;
}
.page-title--gold {
  color: #9B7A1E;
}
.page-subtitle {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #E8E0D0;
  opacity: 0.8;
  margin-top: 4px;
  position: relative;
  z-index: 3;
}

/* --- Sections --------------------------------------------- */
.section { position: relative; }

.section--padded {
  padding: 40px 24px;
}
.section--centered {
  text-align: center;
}

/* Hero sections with background image */
.section--hero-music,
.section--hero-shows,
.section--hero-press {
  position: relative;
  height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.section__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.55);
  z-index: 2;
}
.section__overlay--light {
  background: rgba(8, 8, 8, 0.4);
}

/* Full-bleed image section */
.section--image {
  width: 100%;
  line-height: 0;
}
.section__full-img {
  width: 100%;
  display: block;
}

/* --- Section title ---------------------------------------- */
.section-title {
  font-family: 'JRK', 'Teko', sans-serif;
  font-size: 28px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #080808;
  margin-bottom: 20px;
}
.frame--dark .section-title {
  color: #E8E0D0;
}

/* --- Bio text --------------------------------------------- */
.bio-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: #080808;
  margin-bottom: 16px;
}
.bio-text--secondary { opacity: 0.7; }
.bio-text--accent {
  color: #4A6B2A;
  font-weight: 700;
}
.frame--dark .bio-text { color: #E8E0D0; }

/* --- Embed wrapper ---------------------------------------- */
.embed-wrap {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}

/* --- Link grid (Music platforms) -------------------------- */
.link-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.link-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #080808;
  border-radius: 10px;
  transition: background 0.2s;
}
.link-card:hover { background: #1a1a1a; }
.link-card__icon {
  width: 28px; height: 28px;
  object-fit: contain;
}
.link-card span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #E8E0D0;
}

/* --- Gallery horizontal scroll (Shows) -------------------- */
.gallery-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
}
.gallery-scroll::-webkit-scrollbar { display: none; }
.gallery-scroll__item {
  flex: 0 0 70%;
  scroll-snap-align: center;
  border-radius: 10px;
  overflow: hidden;
  line-height: 0;
}
.gallery-scroll__item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* --- Booking CTA ------------------------------------------ */
.booking-cta {
  padding: 32px 0;
}
.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 36px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #E8E0D0;
  background: #A83030;
  border-radius: 6px;
  transition: background 0.2s, transform 0.2s;
}
.cta-button:hover {
  background: #c43838;
  transform: translateY(-1px);
}

/* --- Region grid (Shows) ---------------------------------- */
.region-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.region-card {
  padding: 18px 14px;
  background: #080808;
  border-radius: 8px;
  text-align: center;
}
.region-card__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9B7A1E;
}

/* --- Stats bar (Press) ------------------------------------ */
.stats-bar {
  display: flex;
  justify-content: space-between;
  padding: 28px 0 8px;
  border-top: 1px solid rgba(8,8,8,0.1);
  margin-top: 24px;
}
.stats-bar__item {
  text-align: center;
}
.stats-bar__number {
  display: block;
  font-family: 'Teko', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #9B7A1E;
  line-height: 1;
}
.stats-bar__label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #080808;
  opacity: 0.5;
  margin-top: 4px;
}

/* --- Press photo grid ------------------------------------- */
.press-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.press-grid__item {
  border-radius: 6px;
  overflow: hidden;
  line-height: 0;
  transition: transform 0.2s;
}
.press-grid__item:hover {
  transform: scale(1.02);
}
.press-grid__item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.press-note {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: #080808;
  opacity: 0.4;
  text-align: center;
  margin-top: 12px;
}

/* --- Collab list (Press) ---------------------------------- */
.collab-list {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: #080808;
  opacity: 0.6;
  line-height: 2;
  text-align: center;
}

/* --- Contact page ----------------------------------------- */
.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.contact-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.contact-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 24px 40px;
  min-height: calc(100vh - 120px);
  min-height: calc(100dvh - 120px);
  justify-content: center;
}
.contact-mask {
  width: 100px;
  height: auto;
  margin-bottom: 24px;
  opacity: 0.9;
}
.contact-block {
  margin: 24px 0 0;
}
.contact-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #E8E0D0;
  opacity: 0.4;
  margin-bottom: 6px;
}
.contact-email {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #9B7A1E;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.contact-email:hover { color: #E8E0D0; }

.social-row {
  display: flex;
  gap: 20px;
  margin-top: 36px;
}
.social-row a {
  display: block;
  width: 32px; height: 32px;
  opacity: 0.6;
  transition: opacity 0.2s, transform 0.2s;
}
.social-row a:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.social-row img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: brightness(10); /* make white on dark bg */
}

.contact-availability {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E8E0D0;
  opacity: 0.3;
  margin-top: 40px;
}

/* --- Page footer ------------------------------------------ */
.page-footer {
  display: flex;
  justify-content: space-between;
  padding: 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #080808;
  opacity: 0.3;
  border-top: 1px solid rgba(8,8,8,0.08);
}
.page-footer a:hover { opacity: 0.8; }
.page-footer--dark {
  color: #E8E0D0;
  border-top-color: rgba(232,224,208,0.08);
}
