/* ============================================================
   LAYOUT — Nav · Hero · About · Sound · Mood · Shows ·
             Press · Booking · Footer · Responsive
   ============================================================ */

/* ================================================================
   NAV
   ================================================================ */

.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--pad);
  height: var(--nav-h);
  transition:
    background-color var(--t-med),
    border-color     var(--t-med),
    backdrop-filter  var(--t-med);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(8, 9, 12, 0.78);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border-color: rgba(255, 255, 255, 0.045);
}

.nav-logo {
  font-family: var(--f-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--t-fast);
  z-index: 901;
}

.nav-logo:hover { color: var(--magenta); }

/* Links */

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color var(--t-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--magenta);
  transition: width var(--t-med);
}

.nav-link:hover,
.nav-link.active     { color: var(--white); }
.nav-link:hover::after { width: 100%; }
.nav-link.active::after { width: 100%; }

/* Booking CTA in nav */

.nav-cta {
  color: var(--magenta);
  padding: 0.38rem 1rem;
  border: 1px solid rgba(255, 46, 160, 0.35);
  border-radius: 2px;
  transition: background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
}

.nav-cta:hover {
  background: var(--magenta);
  color: var(--black);
  box-shadow: 0 0 22px rgba(255, 46, 160, 0.35);
}

.nav-cta::after,
.nav-cta.active::after { display: none; }

/* Mobile hamburger */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: transform var(--t-med), opacity var(--t-fast);
  transform-origin: center;
}

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


/* ================================================================
   HERO
   ================================================================ */

.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--sp-xl);
  padding-top: var(--nav-h);
  overflow: hidden;
}

/* Background stack */

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

.hero-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

/* When hero image fails to load → blue-neon gradient */
.hero-img.no-image {
  background:
    radial-gradient(ellipse 70% 100% at 72% 30%, rgba(61, 107, 255, 0.30) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80%  at 25% 65%, rgba(122, 60, 255, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 90% 50%  at 50% 110%,rgba(255, 46, 160, 0.07) 0%, transparent 55%),
    var(--night);
}

/* Main overlay — dark vignette for text readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      158deg,
      rgba(8, 9, 12, 0.50)  0%,
      rgba(8, 9, 12, 0.18) 40%,
      rgba(8, 9, 12, 0.82) 100%
    );
}

/* Breathing glows */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: glow-pulse 7s ease-in-out infinite;
}

.hero-glow--1 {
  width: min(650px, 50vw);
  height: min(650px, 50vw);
  top: 5%;
  right: 12%;
  background: radial-gradient(circle, rgba(61, 107, 255, 0.20) 0%, transparent 70%);
}

.hero-glow--2 {
  width: min(400px, 35vw);
  height: min(400px, 35vw);
  bottom: 15%;
  right: 35%;
  background: radial-gradient(circle, rgba(255, 46, 160, 0.13) 0%, transparent 70%);
  animation-delay: -3.5s;
  animation-duration: 9s;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.65; transform: scale(1);    }
  50%       { opacity: 1;    transform: scale(1.09); }
}

/* Content */

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.hero-title {
  font-size: clamp(3.2rem, 7.5vw, 8rem);
  color: var(--white);
  margin-bottom: var(--sp-m);
  max-width: 14ch;
  line-height: 0.98;
}

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(244, 241, 236, 0.70);
  max-width: 44ch;
  line-height: 1.75;
  margin-bottom: var(--sp-l);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.5rem;
}

/* Animated scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 2.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  overflow: hidden;
  background: rgba(255, 46, 160, 0.18);
  z-index: 1;
}

.scroll-cue::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--magenta));
  animation: scroll-drop 2.2s ease-in-out infinite;
}

@keyframes scroll-drop {
  0%   { transform: translateY(-100%); opacity: 0;   }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translateY(100%);  opacity: 0;   }
}


/* ================================================================
   ABOUT
   ================================================================ */

.about { background: var(--black); }

.about-inner {
  display: grid;
  grid-template-columns: 42fr 58fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}

.about-name {
  font-size: clamp(3.5rem, 7.5vw, 7rem);
  line-height: 0.95;
  margin-bottom: var(--sp-m);
  color: var(--white);
}

.about-body {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.78;
  color: rgba(244, 241, 236, 0.72);
  max-width: 42ch;
  margin-bottom: var(--sp-m);
}

.about-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-family: var(--f-mono);
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.meta-dot { color: var(--magenta); }

/* Portrait figure */
.about-img {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 1px;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.86) contrast(1.08) saturate(1.1);
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-img:hover img { transform: scale(1.03); }

/* Fallback gradient */
.about-img.no-image {
  background:
    radial-gradient(ellipse at 55% 25%, rgba(255, 122, 61, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse at 30% 80%, rgba(122, 60, 255, 0.18) 0%, transparent 55%),
    #1a1612;
}

/* Subtle pink tint on hover */
.about-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 46, 160, 0.08);
  opacity: 0;
  transition: opacity var(--t-med);
  z-index: 1;
  pointer-events: none;
}
.about-img:hover::before { opacity: 1; }

/* "Pioneer DJ" badge */
.about-img-tag {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-family: var(--f-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, 0.45);
  z-index: 2;
}


/* ================================================================
   SOUND
   ================================================================ */

.sound {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

/* Layered blurred backgrounds */
.sound-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sound-layer {
  position: absolute;
  inset: -15%;
  background-size: cover;
  filter: blur(18px) brightness(0.25) saturate(1.6);
  will-change: transform;
}

.sound-layer--2 {
  filter: blur(28px) brightness(0.18) saturate(2);
  mix-blend-mode: screen;
  opacity: 0.6;
}

.sound-layer--3 {
  filter: blur(10px) brightness(0.14) saturate(1.9);
  mix-blend-mode: overlay;
}

/* Top / bottom fade-to-black */
.sound-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      var(--black)    0%,
      transparent    18%,
      transparent    82%,
      var(--black)  100%
    );
}

.sound-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
}

.sound-text {
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  line-height: 1.82;
  color: rgba(244, 241, 236, 0.78);
  max-width: 56ch;
  margin-inline: auto;
  margin-bottom: var(--sp-l);
}


/* ================================================================
   VISUAL MOOD
   ================================================================ */

.mood-section {
  padding-block: var(--sp-xl);
  background: var(--black);
}

.mood-header {
  margin-bottom: var(--sp-m);
}

.mood-intro {
  font-family: var(--f-mono);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}

/* CSS columns masonry */
.mood-grid {
  columns: 4;
  column-gap: 5px;
  padding-inline: 5px;
}

.mood-item {
  break-inside: avoid;
  display: block;
  position: relative;
  overflow: hidden;
  margin-bottom: 5px;
  cursor: pointer;
  height: 270px;
  background: var(--charcoal);
}

.mood-item--tall  { height: 420px; }
.mood-item--short { height: 195px; }

.mood-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78) contrast(1.1) saturate(1.1);
  transition:
    filter    0.45s ease,
    transform 0.7s  cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mood-item:hover img {
  filter: brightness(0.95) contrast(1.14) saturate(1.2);
  transform: scale(1.025);
}

/* Caption on hover */
.mood-item::before {
  content: attr(data-caption);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 1rem 0.9rem;
  background: linear-gradient(to top, rgba(8, 9, 12, 0.88) 0%, transparent 100%);
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: rgba(244, 241, 236, 0.75);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.mood-item:hover::before { opacity: 1; }

/* Flash overlay — toggled by JS */
.mood-item.flash::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.16);
  pointer-events: none;
  z-index: 3;
  animation: photo-flash 240ms ease forwards;
}

@keyframes photo-flash {
  0%   { opacity: 0; }
  28%  { opacity: 1; }
  100% { opacity: 0; }
}


/* ================================================================
   SHOWS
   ================================================================ */

.shows { background: var(--charcoal); }

.shows-empty {
  padding-top: var(--sp-m);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-m);
}

.shows-empty-line {
  width: 3rem;
  height: 1px;
  background: rgba(255, 46, 160, 0.35);
}

.shows-empty p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--muted);
  max-width: 44ch;
  line-height: 1.7;
}

/* Template for future shows list */
.shows-list {
  padding-top: var(--sp-m);
  display: flex;
  flex-direction: column;
}

.show-card {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--t-fast);
}

.show-card:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.show-card:hover { background: rgba(255, 255, 255, 0.025); }

.show-date {
  display: flex;
  flex-direction: column;
  font-family: var(--f-mono);
}

.show-day {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
  color: var(--magenta);
  letter-spacing: -0.02em;
}

.show-month {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.show-event {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.show-venue {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.show-cta {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--magenta);
  border: 1px solid rgba(255, 46, 160, 0.3);
  padding: 0.4rem 0.85rem;
  white-space: nowrap;
  transition: all var(--t-fast);
}

.show-cta:hover {
  background: var(--magenta);
  color: var(--black);
}


/* ================================================================
   PRESS / BOOKING KIT
   ================================================================ */

.press { background: var(--black); }

.press-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: var(--sp-l);
  border: 1px solid rgba(255, 255, 255, 0.06);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.press-card {
  background: var(--black);
  padding: 2.2rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: background var(--t-med);
}

.press-card:hover { background: #0e1018; }

.press-num {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: var(--magenta);
  margin-bottom: 0.6rem;
}

.press-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--white);
}

.press-card-desc {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--muted);
  flex: 1;
}

.press-link {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-top: 1.1rem;
  display: inline-block;
  transition: color var(--t-fast);
}

.press-link:hover { color: var(--white); }

.press-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.1rem;
}

.press-row .press-link { margin-top: 0; }


/* ================================================================
   BOOKING / CONTACT
   ================================================================ */

.booking {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding-block: var(--sp-xl);
  background: var(--black);
  overflow: hidden;
}

/* Large ambient glow */
.booking::before {
  content: '';
  position: absolute;
  width: clamp(500px, 70vw, 900px);
  height: clamp(500px, 70vw, 900px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 46, 160, 0.046) 0%, transparent 70%);
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.booking-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.booking-title {
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  line-height: 1;
  margin-bottom: var(--sp-s);
  color: var(--white);
}

.booking-sub {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: var(--muted);
  margin-bottom: var(--sp-l);
}

.booking-email {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: clamp(0.9rem, 2vw, 1.45rem);
  letter-spacing: 0.04em;
  color: var(--magenta);
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 46, 160, 0.38);
  margin-bottom: var(--sp-l);
  transition: color var(--t-med), border-color var(--t-med);
}

.booking-email:hover {
  color: var(--white);
  border-color: rgba(244, 241, 236, 0.5);
}

/* Social icons row */
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  transition: color var(--t-fast);
}

.social-link:hover { color: var(--white); }


/* ================================================================
   FOOTER
   ================================================================ */

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem var(--pad);
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: rgba(138, 139, 145, 0.4);
  text-align: center;
}


/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 1100px) {
  .press-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .mood-grid { columns: 3; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* Nav → full-screen overlay */
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    background: rgba(8, 9, 12, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 899;
    transform: translateX(100%);
    transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-links.open { transform: translateX(0); }

  .nav-link {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
  }

  .nav-cta {
    font-size: 0.9rem;
    padding: 0.75rem 1.8rem;
  }

  /* Hero */
  .hero { padding-bottom: 5rem; }
  .hero-title { font-size: clamp(2.8rem, 12vw, 4.2rem); }
  .br-desk { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 0.75rem; }

  /* About */
  .about-inner { grid-template-columns: 1fr; gap: var(--sp-m); }
  .about-img { aspect-ratio: 4/3; order: -1; }
  .about-name { font-size: clamp(3rem, 12vw, 4.5rem); }

  /* Mood */
  .mood-grid { columns: 2; }
  .mood-item { height: 220px; }
  .mood-item--tall { height: 340px; }
  .mood-item--short { height: 160px; }

  /* Shows */
  .show-card { grid-template-columns: 70px 1fr; }
  .show-cta { display: none; }

  /* Press */
  .press-grid { grid-template-columns: 1fr; }

  /* Booking */
  .booking-title { font-size: clamp(2.2rem, 9vw, 3.5rem); }
}

@media (max-width: 480px) {
  .mood-grid { columns: 2; }
  .mood-item { height: 180px; }
  .mood-item--tall { height: 280px; }
  .mood-item--short { height: 140px; }
}
