/* === CUSTOM PROPERTIES === */
:root {
  --bg: #080808;
  --bg-alt: #0e0e0e;
  --text: #e0e0e0;
  --text-dim: #888;
  --accent: #ff006e;
  --accent-dim: rgba(255, 0, 110, 0.2);
  --nav-h: 64px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

/* === LAYOUT === */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* === ACCENT === */
.accent {
  color: var(--accent);
}

/* ===========================
   NAVIGATION
   =========================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  background: transparent;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--accent-dim);
}

.nav-logo-link {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 30px;
  width: auto;
}

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

.nav-link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  color: rgba(224, 224, 224, 0.7);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.nav-link:hover {
  color: #fff;
}

.nav-link:hover::after {
  width: 100%;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

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

/* ===========================
   HERO — logo on black + full-width photo banner
   =========================== */
.hero {
  display: flex;
  flex-direction: column;
  background: var(--bg);
}

/* Dark zone: logo only, sits above the banner */
.hero-logo-zone {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 2.5rem) 2rem 2.5rem;
}

.hero-logo {
  width: min(540px, 72vw);
  filter: drop-shadow(0 0 40px rgba(255, 0, 110, 0.3));
  animation: fadeUp 0.85s ease forwards;
}

/* Full-width photo banner — true edge to edge */
.hero-banner {
  width: 100%;
  height: 55vw;       /* wide-cinematic proportion */
  max-height: 68vh;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}

/* The actual photo, allowed to bleed full width */
.hero-banner-inner {
  position: absolute;
  inset: 0;
  background: url(img/WebBG4.jpg) center 28% / cover no-repeat;
}

/* Top edge: blends into the dark logo zone */
.hero-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 28%;
  background: linear-gradient(to bottom, var(--bg), transparent);
  z-index: 1;
  pointer-events: none;
}

/* Bottom edge: fades into page background */
.hero-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 38%;
  background: linear-gradient(to bottom, transparent, var(--bg));
  z-index: 1;
  pointer-events: none;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===========================
   SECTIONS
   =========================== */
.section {
  padding: 7rem 0;
}

.section--alt {
  background-color: var(--bg-alt);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1;
  margin-bottom: 3.5rem;
}

/* ===========================
   LIVE VIDEO
   =========================== */
.live-wrap {
  max-width: 860px;
}

.video-ratio {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--accent-dim);
}

.video-ratio iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ===========================
   VIDEO GRID
   =========================== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
}

.video-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.video-card .video-ratio {
  transition: transform 0.2s, border-color 0.2s;
}

.video-card:hover .video-ratio {
  border-color: rgba(255, 0, 110, 0.5);
  transform: translateY(-2px);
}

.video-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #ddd;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.feat {
  color: var(--text-dim);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

/* ===========================
   PHOTO GALLERY
   =========================== */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.photo-item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  background: #111;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(0.9);
}

.photo-item:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
  user-select: none;
}

.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
  line-height: 1;
  padding: 0.5rem;
}

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

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 3.5rem;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.2s;
  padding: 0 1rem;
  line-height: 1;
  user-select: none;
}

.lightbox-prev { left: 0.5rem; }
.lightbox-next { right: 0.5rem; }
.lightbox-prev:hover,
.lightbox-next:hover { opacity: 1; }

/* ===========================
   PLATFORMS
   =========================== */
.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.platform-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1.5rem;
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.15s ease, filter 0.15s ease;
  white-space: nowrap;
}

.platform-link:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
}

.platform-link i {
  font-size: 1.15rem;
}

.platform--spotify   { background: #1db954; color: #000; }
.platform--youtube   { background: #ff0000; color: #fff; }
.platform--ytmusic   { background: #c00; color: #fff; }
.platform--apple     { background: #fc3c44; color: #fff; }
.platform--facebook  { background: #1877f2; color: #fff; }
.platform--instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  padding: 5rem 0 3rem;
  background: #000;
  border-top: 1px solid var(--accent-dim);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 5rem;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #bbb;
  transition: color 0.2s;
}

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

.contact-item i {
  color: var(--accent);
  font-size: 1rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #161616;
}

.backstage-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #2a2a2a;
  transition: color 0.2s;
}

.backstage-link:hover {
  color: #555;
}

.copyright {
  font-size: 0.75rem;
  color: #2a2a2a;
  margin-left: auto;
  letter-spacing: 0.05em;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 960px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 640px) {

  :root {
    --nav-h: 56px;
  }

  /* Mobile nav */
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(8, 8, 8, 0.98);
    flex-direction: column;
    padding: 1.5rem 2rem 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--accent-dim);
  }

  .nav-menu.open {
    display: flex;
  }

  /* Make nav always visible on mobile */
  .nav {
    background: rgba(8, 8, 8, 0.96);
    border-bottom-color: var(--accent-dim);
  }

  .hero-logo {
    width: min(280px, 80vw);
  }

  .hero-banner {
    height: 70vw;
    max-height: 60vh;
  }

  .section {
    padding: 5rem 0;
  }

  .section-title {
    margin-bottom: 2.5rem;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .contact-links {
    flex-direction: column;
    gap: 1.2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .copyright {
    margin-left: 0;
  }
}
