/* ============================================
   INTERNAL LINKING: BREADCRUMBS + FOOTER HUB NAV
   Shared across all pages for SEO/crawlability
   ============================================ */

/* ── Breadcrumbs ── */
.breadcrumbs {
  margin: 70px 0 14px;
  padding: 0 20px;
  text-align: left;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  max-width: var(--kfr-max, 1200px);
}

.breadcrumbs a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.breadcrumbs a:hover {
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.45);
}

.crumb-sep {
  margin: 0 8px;
  opacity: 0.5;
}

.breadcrumbs [aria-current="page"] {
  color: rgba(255,255,255,0.9);
}

/* Single release pages inject breadcrumbs into a flex layout;
   float them so they do not become a flex item that shifts the card. */
.breadcrumbs--floating-release {
  position: fixed;
  left: 50%;
  bottom: max(12px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  z-index: 90;
  margin: 0;
  padding: 10px 14px;
  width: fit-content;
  max-width: calc(100vw - 20px);
  text-align: center;
  line-height: 1.35;
  color: rgba(255,255,255,0.78);
  background: rgba(0, 0, 0, 0.58);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  backdrop-filter: blur(8px) saturate(130%);
  -webkit-backdrop-filter: blur(8px) saturate(130%);
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
  white-space: normal;
  overflow-wrap: anywhere;
  pointer-events: auto;
}

.breadcrumbs--floating-release a,
.breadcrumbs--floating-release [aria-current="page"] {
  white-space: nowrap;
}

/* Hero-hub pages: keep breadcrumb inside hero content without creating a top strip */
.artists-hero-content > .breadcrumbs,
.disco-hero-content > .breadcrumbs,
.videos-hero-content > .breadcrumbs,
.timeline-hero-content > .breadcrumbs {
  margin: 0 0 16px;
  padding: 0;
}

/* ── Footer Hub Nav ── */
.kfr-footer-nav {
  margin-top: 70px;
  padding: 26px 16px 40px;
  text-align: center;
}

.kfr-footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  justify-content: center;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.55;
}

.kfr-footer-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  transition: opacity 0.2s, border-color 0.2s;
}

.kfr-footer-links a:hover {
  opacity: 1;
  border-bottom-color: rgba(255,255,255,0.45);
}

/* ── Experience Page Exit Links ── */
.kfr-exit-links {
  margin-top: 48px;
  padding: 20px 16px 10px;
  text-align: center;
}

.kfr-exit-links a {
  display: inline-block;
  margin: 6px 10px;
  padding: 8px 18px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,0.04);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.kfr-exit-links a:hover {
  color: rgba(255,255,255,0.95);
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
}

/* ── Black Page: Lights-On Gating for exit links ── */
.kfr-lights-gated {
  pointer-events: none;
}

body.kfr-lights-on .kfr-lights-gated,
body.lights-on .kfr-lights-gated {
  pointer-events: auto;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .breadcrumbs {
    margin-top: 64px;
    font-size: 12px;
  }

  .breadcrumbs--floating-release {
    margin: 0;
    font-size: 11px;
    padding: 8px 10px;
    max-width: calc(100vw - 12px);
    bottom: max(8px, env(safe-area-inset-bottom));
    letter-spacing: 0.06em;
  }

  .kfr-footer-links {
    font-size: 11px;
  }

  .kfr-exit-links a {
    font-size: 11px;
    padding: 7px 14px;
  }
}
