/* ============================================================
   Now Enough — nowenough.css
   Palet: #04070c (achtergrond) · #e6ecf5 (tekst) · #8fc2ff (accent)
   Fonts: Unbounded (koppen) · Space Mono (body)
   ============================================================ */

/* ---------- Basis ---------- */
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #04070c;
  color: #e6ecf5;
  font-family: 'Space Mono', monospace;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

a { color: #e6ecf5; text-decoration: none; }
a:hover { color: #8fc2ff; }
::selection { background: #8fc2ff; color: #04070c; }

/* ---------- Keyframes ---------- */
@keyframes spin    { to { transform: rotate(360deg); } }
@keyframes fadeup  { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse   { 0%, 100% { opacity: 0.9; } 50% { opacity: 0.5; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes twinkle { 0%, 100% { opacity: 0.9; } 50% { opacity: 0.1; } }

/* ---------- Reveal-on-scroll (JS voegt .visible toe) ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
}

.nav-links { display: flex; gap: 30px; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; }
.nav-links a { color: rgba(230, 236, 245, 0.75); }

.nav-cta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(230, 236, 245, 0.5);
  padding: 10px 22px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  background: rgba(4, 7, 12, 0.3);
}
.nav-cta:hover { background: #e6ecf5; color: #04070c; border-color: #e6ecf5; }

.nav-right { display: flex; align-items: center; gap: 18px; }

.nav-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(230, 236, 245, 0.6);
  white-space: nowrap;
}
.nav-back:hover { color: #8fc2ff; }

/* Hamburger (alleen mobiel) */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0 auto;
  background: #e6ecf5;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobiel menu-overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 7, 12, 0.92);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
}
.mobile-menu-links a {
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e6ecf5;
}
.mobile-menu-links a:hover { color: #8fc2ff; }

.mobile-cta {
  margin-top: 8px;
  padding: 12px 34px;
  border: 1px solid rgba(230, 236, 245, 0.5);
  border-radius: 999px;
  font-size: 18px !important;
}

.mobile-back {
  margin-top: 20px;
  padding-top: 26px;
  border-top: 1px solid rgba(143, 194, 255, 0.22);
  width: 240px;
  font-size: 15px !important;
  color: rgba(230, 236, 245, 0.6) !important;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Geblurde vulling achter de scherpe video */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(34px) brightness(0.55);
  transform: scale(1.12);
}

/* Scherpe video op native resolutie, gecentreerd */
.hero-video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: auto;
  object-fit: contain;
  filter: contrast(1.07) saturate(1.08);
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,7,12,0.55) 0%, rgba(4,7,12,0.08) 34%, rgba(4,7,12,0.05) 60%, rgba(4,7,12,0.94) 100%);
}

.hero-vignette { position: absolute; inset: 0; box-shadow: inset 0 0 180px rgba(4, 7, 12, 0.85); }

.hero-bottom {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 24px 64px;
  text-align: center;
}

.spark { position: absolute; color: #cfe4ff; }
.spark-1 { top: 22%; left: 12%; font-size: 18px; animation: twinkle 3.4s ease-in-out infinite; }
.spark-2 { top: 32%; right: 10%; font-size: 13px; animation: twinkle 2.7s 1.2s ease-in-out infinite; }

.hero-meta {
  margin: 0 0 18px;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(230, 236, 245, 0.85);
  animation: fadeup 0.9s 0.2s both;
}

.hero-title {
  margin: 0;
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 8.5vw, 128px);
  line-height: 0.98;
  letter-spacing: 0.01em;
  background: linear-gradient(180deg, #ffffff 0%, #dfe8f5 32%, #5c7fa8 50%, #f2f7ff 66%, #7d9cc4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 40px rgba(70, 130, 220, 0.5));
  animation: fadeup 0.9s 0.35s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: #e6ecf5;
  color: #04070c;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 0 44px rgba(150, 195, 255, 0.45);
  animation: fadeup 0.9s 0.55s both;
}
.btn-primary:hover { background: #8fc2ff; color: #04070c; }

/* ============================================================
   Marquee
   ============================================================ */
.marquee {
  border-top: 1px solid rgba(143, 194, 255, 0.22);
  border-bottom: 1px solid rgba(143, 194, 255, 0.22);
  overflow: hidden;
  padding: 13px 0;
  background: rgba(143, 194, 255, 0.04);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(230, 236, 245, 0.75);
}
.marquee-track span { padding-right: 10px; }

/* ============================================================
   Secties (gedeeld)
   ============================================================ */
.section { padding: 120px 56px; max-width: 1180px; margin: 0 auto; }

.section-head { display: flex; align-items: center; gap: 18px; margin-bottom: 56px; }
.section-head-center { justify-content: center; }
.section-num { font-size: 12px; letter-spacing: 0.26em; color: #6fa8e8; }
.section-line { flex: 0 0 60px; height: 1px; background: rgba(143, 194, 255, 0.4); }
.section-head h2 {
  margin: 0;
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: clamp(24px, 3.4vw, 44px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ============================================================
   Releases
   ============================================================ */
.releases .section-head { margin-bottom: 64px; }

.releases-split { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: center; }

.track {
  display: grid;
  grid-template-columns: 90px 1fr 150px 120px;
  align-items: center;
  gap: 24px;
  padding: 30px 8px;
  border-top: 1px solid rgba(143, 194, 255, 0.22);
  cursor: pointer;
  transition: background 0.3s ease;
}
.track:last-child { border-bottom: 1px solid rgba(143, 194, 255, 0.22); }
.track:hover { background: rgba(143, 194, 255, 0.05); }

.disc { position: relative; width: 76px; height: 76px; }

.disc-inner {
  position: absolute;
  inset: 0;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.track:hover .disc-inner,
.track.active .disc-inner { transform: scale(1.35) translateX(10px); }

.disc-face {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 26px rgba(150, 195, 255, 0.4);
  animation: spin 7s linear infinite;
}
.disc-face-1 { background: conic-gradient(from 20deg,  #eaf2fc, #8fb4dd 12%, #ffffff 25%, #4d719c 40%, #dce9f8 55%, #7d9cc4 70%, #ffffff 82%, #6c8fb8 94%, #eaf2fc); }
.disc-face-2 { background: conic-gradient(from 140deg, #eaf2fc, #8fb4dd 12%, #ffffff 25%, #4d719c 40%, #dce9f8 55%, #7d9cc4 70%, #ffffff 82%, #6c8fb8 94%, #eaf2fc); }
.disc-face-3 { background: conic-gradient(from 260deg, #eaf2fc, #8fb4dd 12%, #ffffff 25%, #4d719c 40%, #dce9f8 55%, #7d9cc4 70%, #ffffff 82%, #6c8fb8 94%, #eaf2fc); }

.disc-label {
  position: absolute;
  inset: 34%;
  border-radius: 50%;
  background: #04070c;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.track-title {
  margin: 0;
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: clamp(26px, 4.4vw, 58px);
  line-height: 1.05;
  background: linear-gradient(180deg, #ffffff, #cfe0f2 44%, #5c7fa8 54%, #eef5fd);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.track-meta { font-size: 12px; letter-spacing: 0.22em; color: rgba(230, 236, 245, 0.5); text-align: right; }

.track-play {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(143, 194, 255, 0.45);
  color: #b7d6fb;
  padding: 9px 0;
  border-radius: 999px;
  text-align: center;
}

.release-video { position: relative; }
.release-video-glow {
  position: absolute;
  inset: -14%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(150, 195, 255, 0.28) 0%, transparent 70%);
  filter: blur(30px);
}
.release-video video {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(143, 194, 255, 0.3);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
}

/* ============================================================
   Over
   ============================================================ */
.over {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(143, 194, 255, 0.22);
  border-bottom: 1px solid rgba(143, 194, 255, 0.22);
  background: linear-gradient(180deg, #060b14 0%, #0a1322 100%);
  padding: 130px 56px;
}

.over-glow {
  position: absolute;
  top: -35%;
  right: -12%;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90, 150, 230, 0.3) 0%, rgba(60, 100, 170, 0.12) 45%, transparent 70%);
  filter: blur(50px);
  animation: pulse 9s ease-in-out infinite;
}

.over-grid {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.over-photo { position: relative; }
.over-photo-glow {
  position: absolute;
  inset: -10% -6%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 170, 240, 0.35) 0%, rgba(70, 120, 200, 0.1) 50%, transparent 72%);
  filter: blur(30px);
}
.over-photo img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  filter: grayscale(1) contrast(1.12) brightness(1.05);
  mask-image: linear-gradient(to bottom, #000 76%, transparent 99%);
  -webkit-mask-image: linear-gradient(to bottom, #000 76%, transparent 99%);
}

.over-text .section-head { margin-bottom: 36px; }

.over-quote {
  margin: 0 0 28px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.4;
  background: linear-gradient(180deg, #ffffff, #cfe0f2 42%, #6c8fb8 54%, #eef5fd);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.over-body { margin: 0 0 16px; font-size: 15px; line-height: 1.9; color: rgba(230, 236, 245, 0.68); max-width: 540px; }
.over-body:last-of-type { margin-bottom: 44px; }

.stats { display: flex; gap: 52px; }
.stat-num {
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: 30px;
  background: linear-gradient(180deg, #ffffff, #7d9cc4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label { margin-top: 6px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(230, 236, 245, 0.5); }

/* ============================================================
   Optredens
   ============================================================ */
.event-list { display: grid; border-top: 1px solid rgba(143, 194, 255, 0.22); }

.event {
  display: grid;
  grid-template-columns: 160px 1fr 160px 140px;
  align-items: center;
  gap: 20px;
  padding: 28px 8px;
  border-bottom: 1px solid rgba(143, 194, 255, 0.22);
  transition: background 0.25s ease, padding-left 0.25s ease;
}
.event:hover { background: rgba(143, 194, 255, 0.05); padding-left: 22px; }

.event-date { font-size: 12px; letter-spacing: 0.2em; color: #8fc2ff; }
.event-name { font-family: 'Unbounded', sans-serif; font-weight: 600; font-size: clamp(18px, 2.2vw, 26px); }
.event-city { font-size: 12px; letter-spacing: 0.2em; color: rgba(230, 236, 245, 0.5); }

.btn-pill {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(143, 194, 255, 0.45);
  color: #b7d6fb;
  padding: 10px 0;
  border-radius: 999px;
  text-align: center;
}
.btn-pill:hover { background: #8fc2ff; color: #04070c; border-color: #8fc2ff; }

/* ============================================================
   Contact
   ============================================================ */
.contact {
  position: relative;
  overflow: hidden;
  padding: 150px 56px;
  text-align: center;
  border-top: 1px solid rgba(143, 194, 255, 0.22);
  max-width: none;
}

.contact-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: saturate(1.1);
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(4,7,12,0.55) 0%, rgba(4,7,12,0.92) 100%);
}

.contact-glow {
  position: absolute;
  bottom: -260px;
  left: 50%;
  width: 660px;
  height: 660px;
  margin-left: -330px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(150, 195, 255, 0.55) 0%, rgba(90, 140, 210, 0.18) 45%, transparent 70%);
  filter: blur(50px);
  animation: pulse 8s ease-in-out infinite;
}

.contact-inner { position: relative; max-width: 860px; margin: 0 auto; }
.contact-inner .section-head { margin-bottom: 40px; }
.contact-body { margin: 0 auto 46px; max-width: 520px; font-size: 15px; line-height: 1.9; color: rgba(230, 236, 245, 0.68); }

.mail-btn {
  display: inline-block;
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 2.6vw, 30px);
  background: linear-gradient(180deg, #ffffff, #cfe0f2 46%, #8fb4dd 54%, #eef5fd);
  color: #04070c;
  padding: 20px 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 56px rgba(150, 195, 255, 0.45);
  transition: transform 0.25s ease;
}
.mail-btn:hover { transform: scale(1.05); color: #000000; }

/* ============================================================
   Socials / footer
   ============================================================ */
.footer { padding: 90px 56px 44px; border-top: 1px solid rgba(143, 194, 255, 0.22); max-width: none; }
.footer-inner { max-width: 1180px; margin: 0 auto; }
.footer .section-head { margin-bottom: 46px; }

.socials { display: flex; flex-wrap: wrap; gap: 20px; }

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  border-radius: 999px;
  border: 1px solid rgba(143, 194, 255, 0.4);
  background: linear-gradient(160deg, rgba(143, 194, 255, 0.1), rgba(143, 194, 255, 0.02));
  font-family: 'Unbounded', sans-serif;
  font-size: 15px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.social-btn:hover { border-color: #8fc2ff; transform: translateY(-3px); color: #ffffff; }

.social-handle { font-family: 'Space Mono', monospace; font-size: 12px; opacity: 0.6; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(230, 236, 245, 0.4);
}

/* ============================================================
   Grain-overlay
   ============================================================ */
.grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   Mobiel
   ============================================================ */
@media (max-width: 900px) {
  .nav { padding: 14px 18px; }
  .nav-links { display: none; }
  .nav-back { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .hero-bottom { padding-bottom: 44px; }

  .section { padding: 80px 22px; }
  .over { padding: 80px 22px; }
  .footer { padding: 80px 22px 44px; }

  .section-head { gap: 12px; margin-bottom: 40px; }
  .section-line { flex-basis: 28px; }

  .releases-split { grid-template-columns: 1fr; gap: 48px; }
  .release-video { max-width: 420px; margin: 0 auto; width: 100%; }

  .track { grid-template-columns: 64px 1fr; gap: 16px; padding-top: 22px; padding-bottom: 22px; }
  .track-meta, .track-play { display: none; }
  .disc { width: 56px; height: 56px; }

  .over-grid { grid-template-columns: 1fr; gap: 44px; }
  .over-photo { max-width: 420px; margin: 0 auto; width: 100%; }

  .event { grid-template-columns: 1fr; gap: 8px; padding-top: 22px; padding-bottom: 22px; }
  .event .btn-pill { justify-self: start; margin-top: 6px; padding-left: 26px; padding-right: 26px; }

  .mail-btn { font-size: 17px; padding: 16px 24px; max-width: 100%; overflow-wrap: anywhere; }

  .socials { width: 100%; justify-content: center; }
}
