@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #050509;
  --panel: rgba(255,255,255,0.06);
  --panel-strong: rgba(255,255,255,0.12);
  --text: #ffffff;
  --muted: rgba(255,255,255,0.68);
  --line: rgba(255,255,255,0.16);
  --pink: #ff2d6d;
  --orange: #ff7a1a;
  --blue: #1769ff;
  --red: #e33434;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,45,109,0.25), transparent 34%),
    radial-gradient(circle at 80% 35%, rgba(23,105,255,0.22), transparent 30%),
    radial-gradient(circle at 60% 85%, rgba(255,122,26,0.14), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body.en .nl-content { display: none; }
body:not(.en) .en-content { display: none; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px clamp(20px, 5vw, 72px);
  background: linear-gradient(to bottom, rgba(0,0,0,0.72), transparent);
}

.logo {
  font-family: 'Anton', Impact, sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0.08em;
  color: var(--text);
  text-decoration: none;
}

.desktop-nav {
  display: flex;
  gap: 26px;
  align-items: center;
}

.desktop-nav a,
.social-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.social-links a:hover { color: var(--text); }

.header-actions {
  display: flex;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0,0,0,0.25);
}

.lang-toggle {
  border: 0;
  color: var(--muted);
  background: transparent;
  border-radius: 999px;
  padding: 7px 10px;
  cursor: pointer;
  font-weight: 800;
}

.lang-toggle.active {
  color: #050509;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 130px clamp(20px, 6vw, 86px) 44px;
}

.hero-video-wrap {
  position: absolute;
  inset: -10%;
  z-index: 0;
  overflow: hidden;
  background: url('assets/images/orange-jacket.jpeg') center / cover no-repeat;
}

.hero-youtube {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130vw;
  height: 73.125vw;
  min-width: 177.78vh;
  min-height: 100vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.76;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.9), rgba(0,0,0,0.34), rgba(0,0,0,0.72)),
    linear-gradient(to top, #050509 0%, transparent 46%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  padding-bottom: 120px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 900;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  font-family: 'Anton', Impact, sans-serif;
  font-size: clamp(86px, 17vw, 230px);
  line-height: 0.82;
  letter-spacing: 0.045em;
  margin-bottom: 24px;
  text-shadow: 0 0 40px rgba(0,0,0,0.6);
}

h2 {
  font-family: 'Anton', Impact, sans-serif;
  font-size: clamp(44px, 8vw, 104px);
  line-height: 0.92;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}

.hero-subtitle {
  max-width: 720px;
  color: var(--text);
  font-size: clamp(20px, 3vw, 34px);
  line-height: 1.18;
  font-weight: 800;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 14px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn.primary {
  color: #050509;
  background: linear-gradient(135deg, #fff, #ffcfdd);
}

.btn.secondary {
  border-color: rgba(255,255,255,0.36);
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(16px);
}

.btn.ghost { background: rgba(0,0,0,0.22); }

.hero-stats {
  position: absolute;
  z-index: 3;
  left: clamp(20px, 6vw, 86px);
  right: clamp(20px, 6vw, 86px);
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero-stats div,
.press-card,
.track-card,
.booking-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,0.065);
  backdrop-filter: blur(18px);
}

.hero-stats div {
  padding: 18px;
}

.hero-stats strong,
.press-card strong {
  display: block;
  font-family: 'Anton', Impact, sans-serif;
  font-size: clamp(26px, 4vw, 48px);
  letter-spacing: 0.04em;
}

.hero-stats span,
.press-card span {
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: clamp(76px, 11vw, 150px) clamp(20px, 6vw, 86px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 6vw, 86px);
  align-items: center;
}

.section-copy p:not(.eyebrow),
.section-heading p,
.about-text p,
.booking-section p {
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.68;
}

.live-video-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid var(--line);
  min-height: 540px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  background: #111;
}

.live-video-card video {
  width: 100%;
  height: 100%;
  min-height: 540px;
  display: block;
  object-fit: cover;
}

.video-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--line);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.photo-strip img,
.gallery-section img,
.about-image img,
.video-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-strip img {
  height: clamp(180px, 24vw, 360px);
  border-radius: 24px;
  border: 1px solid var(--line);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.track-card {
  min-height: 220px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.track-card.highlight {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(255,45,109,0.28), rgba(23,105,255,0.10)),
    rgba(255,255,255,0.08);
}

.track-card span {
  color: var(--pink);
  font-weight: 900;
}

.track-card h3 {
  font-size: 28px;
  margin-bottom: 6px;
}

.track-card p {
  color: var(--muted);
}

.track-card a {
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.video-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-auto-rows: 320px;
  gap: 14px;
}

.video-tile {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  color: #fff;
  text-decoration: none;
  background: #111;
}

.video-tile.large {
  grid-row: span 2;
}

.video-tile img {
  transition: transform 0.45s ease, opacity 0.45s ease;
  opacity: 0.82;
}

.video-tile:hover img {
  transform: scale(1.06);
  opacity: 1;
}

.video-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent 56%);
}

.video-tile div {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 20px;
}

.video-tile span {
  display: block;
  font-family: 'Anton', Impact, sans-serif;
  font-size: 36px;
  letter-spacing: 0.04em;
}

.video-tile small {
  color: var(--muted);
  font-weight: 800;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 6vw, 90px);
  align-items: center;
}

.about-image {
  overflow: hidden;
  border-radius: 38px;
  border: 1px solid var(--line);
  height: min(760px, 80vh);
  min-height: 520px;
}

.about-text .statement {
  color: #fff;
  font-weight: 900;
  font-size: clamp(18px, 2vw, 26px);
}

.press-section {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  padding-top: 0;
}

.press-card {
  padding: 22px;
  min-height: 150px;
}

.gallery-section {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 14px;
  padding-top: 0;
}

.gallery-section img {
  height: clamp(260px, 38vw, 560px);
  border-radius: 28px;
  border: 1px solid var(--line);
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 34px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255,45,109,0.16), rgba(23,105,255,0.14)),
    transparent;
}

.booking-card {
  padding: clamp(24px, 4vw, 46px);
}

.mail-link {
  display: block;
  color: #fff;
  font-size: clamp(22px, 4vw, 54px);
  font-family: 'Anton', Impact, sans-serif;
  letter-spacing: 0.025em;
  text-decoration: none;
  word-break: break-word;
  margin-bottom: 28px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 6vw, 86px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
  .desktop-nav { display: none; }

  .hero {
    padding-top: 110px;
  }

  .hero-content {
    padding-bottom: 190px;
  }

  .hero-stats,
  .section-grid,
  .about-section,
  .booking-section,
  .press-section,
  .gallery-section {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: -150px;
  }

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

  .video-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

  .video-tile.large {
    grid-row: span 1;
  }

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

  .about-image {
    height: 560px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 16px 18px;
  }

  .logo {
    font-size: 28px;
  }

  .hero-buttons,
  .social-links {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-stats,
  .music-grid,
  .photo-strip {
    grid-template-columns: 1fr;
  }

  .track-card.highlight {
    grid-column: span 1;
  }

  .live-video-card,
  .live-video-card video {
    min-height: 420px;
  }

  .site-footer {
    flex-direction: column;
  }
}
