/* ============================================================================
   LUCENTO — STYLES
   Look: "Neon Club" — zwart + oranje/amber, Space Grotesk + Inter.
   Kleuren pas je makkelijk aan in de :root variabelen hieronder.
   ========================================================================== */

:root {
  /* --- Kleuren (pas hier aan) --- */
  --bg:        #08080b;   /* hoofd-achtergrond (bijna zwart) */
  --bg-2:      #101015;   /* iets lichtere blokken */
  --bg-3:      #17171e;   /* kaarten / hover */
  --line:      rgba(255,255,255,0.08); /* dunne lijntjes */

  --accent:    #ff7a00;   /* oranje */
  --accent-2:  #ffb020;   /* amber */
  --accent-glow: rgba(255,122,0,0.55);

  --text:      #f5f5f7;   /* hoofdtekst */
  --muted:     #9a9aa5;   /* gedimde tekst */

  /* --- Layout --- */
  --maxw: 1180px;
  --radius: 16px;
  --nav-h: 76px;

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--accent); color: #000; }

/* --- Helpers --- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 110px 0; position: relative; }
.eyebrow {
  font-family: var(--font-display);
  font-size: 13px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content:""; width: 26px; height: 1px; background: var(--accent); display:inline-block; }
h1,h2,h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; letter-spacing: -0.01em; }
.section-title { font-size: clamp(30px, 5vw, 56px); margin-bottom: 16px; }
.section-intro { color: var(--muted); max-width: 620px; font-size: 18px; margin-bottom: 54px; }

.grad-text {
  background: linear-gradient(100deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Knoppen */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  padding: 15px 28px; border-radius: 100px; cursor: pointer;
  border: 1px solid transparent; transition: transform .25s ease, box-shadow .25s ease, background .25s;
  will-change: transform;
}
.btn-primary {
  background: linear-gradient(100deg, var(--accent), var(--accent-2));
  color: #100c00; box-shadow: 0 8px 30px -8px var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 44px -8px var(--accent-glow); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================================
   NAVIGATIE
   ========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h); z-index: 100;
  display: flex; align-items: center;
  transition: background .3s ease, backdrop-filter .3s ease, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8,8,11,0.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.logo { font-family: var(--font-display); font-weight: 700; font-size: 24px; letter-spacing: .04em; }
.logo .dot { color: var(--accent); }
.logo-tag { display:block; font-family: var(--font-body); font-size: 10px; letter-spacing:.22em; text-transform:uppercase; color: var(--muted); font-weight: 500; margin-top: -2px; }

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  font-family: var(--font-display); font-weight: 500; font-size: 15px;
  padding: 10px 16px; border-radius: 100px; color: var(--muted);
  transition: color .2s, background .2s; position: relative;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.cta { color: var(--accent); }
.nav-links a.cta:hover { background: rgba(255,122,0,0.1); }

.nav-toggle { display: none; background: none; border: 0; color: var(--text); cursor: pointer; font-size: 26px; }

/* Rechterkant van de nav: menu + taalknop + hamburger */
.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  background: var(--bg-3); border: 1px solid var(--line); border-radius: 100px;
  padding: 7px 13px 7px 9px; color: var(--muted);
  font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: .05em;
  transition: border-color .2s, color .2s, transform .2s;
}
.lang-toggle:hover { border-color: var(--accent); color: var(--text); transform: translateY(-1px); }
.flag { width: 22px; height: 15px; border-radius: 3px; display: block; box-shadow: 0 0 0 1px rgba(255,255,255,.14); }

/* ============================================================================
   HERO
   ========================================================================== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-canvas, .hero-visuals { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-canvas { z-index: 0; }
.hero-visuals { z-index: 1; }
.hero-visuals .slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.6s ease; mix-blend-mode: screen; filter: saturate(1.1);
}
.hero-visuals .slide.active { opacity: .55; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% 0%, transparent 40%, rgba(8,8,11,.7) 100%),
    linear-gradient(180deg, rgba(8,8,11,.55) 0%, rgba(8,8,11,.2) 40%, var(--bg) 100%);
}
.hero-scanlines {
  position: absolute; inset: 0; z-index: 3; pointer-events: none; opacity: .35;
  background-image: repeating-linear-gradient(0deg, rgba(0,0,0,.25) 0, rgba(0,0,0,.25) 1px, transparent 1px, transparent 3px);
  mix-blend-mode: overlay;
}
.hero .wrap { position: relative; z-index: 4; width: 100%; padding-top: var(--nav-h); }
.hero-title {
  font-size: clamp(48px, 10vw, 132px); line-height: .92; letter-spacing: -0.02em;
  text-transform: uppercase; white-space: pre-line; margin: 18px 0 24px;
}
.hero-sub { font-size: clamp(17px, 2.2vw, 22px); color: var(--text); max-width: 540px; margin-bottom: 38px; }
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.scroll-hint {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 4;
  color: var(--muted); font-family: var(--font-display); font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-hint .line { width: 1px; height: 40px; background: linear-gradient(var(--accent), transparent); animation: scrollpulse 2s infinite; }
@keyframes scrollpulse { 0%,100%{opacity:.3; transform:scaleY(.6)} 50%{opacity:1; transform:scaleY(1)} }

/* Glitch op het logo-woord in de hero */
.glitch { position: relative; display: inline-block; }
.glitch::before, .glitch::after {
  content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; overflow: hidden; opacity: .85;
}
.glitch::before { color: var(--accent);   transform: translate(-2px,0); clip-path: inset(0 0 55% 0); animation: glitch1 3.5s infinite steps(2); }
.glitch::after  { color: var(--accent-2); transform: translate(2px,0);  clip-path: inset(55% 0 0 0); animation: glitch2 3.7s infinite steps(2); }
@keyframes glitch1 { 0%,92%,100%{transform:translate(0,0)} 93%{transform:translate(-4px,-2px)} 96%{transform:translate(3px,1px)} }
@keyframes glitch2 { 0%,92%,100%{transform:translate(0,0)} 94%{transform:translate(4px,2px)} 97%{transform:translate(-3px,-1px)} }

/* ============================================================================
   OVER MIJ
   ========================================================================== */
.about-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin: 8px 0 60px; }
.about-h { font-size: clamp(24px, 3vw, 34px); margin-bottom: 22px; position: relative; padding-left: 18px; }
.about-h::before { content:""; position:absolute; left:0; top:6px; bottom:6px; width:3px; border-radius:3px; background: linear-gradient(var(--accent), var(--accent-2)); }
.about-block p { color: #c9c9d2; font-size: 17px; margin-bottom: 16px; }
.about-block p:first-of-type { color: var(--text); }
.about-block p:last-child { margin-bottom: 0; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.stat {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 20px; text-align: center; transition: border-color .3s, transform .3s;
}
.stat:hover { border-color: var(--accent); transform: translateY(-4px); }
.stat .num { font-family: var(--font-display); font-size: 42px; font-weight: 700; }
.stat .lbl { color: var(--muted); font-size: 14px; margin-top: 4px; }

/* ============================================================================
   PROJECTEN (video's)
   ========================================================================== */
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.video-grid.single { grid-template-columns: 1fr; max-width: 800px; }
.video-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .3s, transform .3s; }
.video-card:hover { border-color: rgba(255,122,0,.4); transform: translateY(-4px); }
.video-frame { position: relative; aspect-ratio: 16/9; background: #000; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-meta { padding: 22px 24px; }
.video-meta h3 { font-size: 22px; margin-bottom: 6px; }
.video-meta p { color: var(--muted); font-size: 15px; }

/* ============================================================================
   VISUAL PACKS
   ========================================================================== */
.packs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pack-card {
  position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer;
  border: 1px solid var(--line); background: var(--bg-2); aspect-ratio: 4/5;
  transition: transform .35s ease, border-color .35s;
}
.pack-card:hover { transform: translateY(-6px); border-color: var(--accent); }
.pack-media { position: absolute; inset: 0; }
.pack-media img, .pack-media iframe { width: 100%; height: 100%; object-fit: cover; border: 0; }
.pack-media .teaser-img { transition: transform .6s ease, filter .4s; filter: saturate(1) brightness(.85); }
.pack-card:hover .teaser-img { transform: scale(1.06); filter: saturate(1.2) brightness(1); }
.pack-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, transparent 30%, rgba(8,8,11,.55) 65%, rgba(8,8,11,.96) 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 26px;
}
.pack-play {
  position: absolute; top: 20px; right: 20px; width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,122,0,.15); border: 1px solid var(--accent); color: var(--accent);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  backdrop-filter: blur(4px); transition: background .3s, transform .3s;
}
.pack-card:hover .pack-play { background: var(--accent); color: #000; transform: scale(1.08); }
.pack-overlay h3 { font-size: 24px; margin-bottom: 4px; }
.pack-overlay .tag { color: var(--muted); font-size: 14px; }
.pack-overlay .more { color: var(--accent); font-family: var(--font-display); font-size: 14px; font-weight: 600; margin-top: 12px; display: inline-flex; gap: 8px; align-items: center; opacity: 0; transform: translateY(8px); transition: .3s; }
.pack-card:hover .pack-overlay .more { opacity: 1; transform: translateY(0); }

/* ============================================================================
   CONTACT / FOOTER
   ========================================================================== */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-top: 100px; position: relative; overflow: hidden; }
.footer::before {
  content:""; position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px; background: radial-gradient(closest-side, var(--accent-glow), transparent 70%);
  opacity: .25; filter: blur(30px); pointer-events: none;
}
.footer-cta { text-align: center; margin-bottom: 70px; position: relative; z-index: 1; }
.footer-cta h2 { font-size: clamp(34px, 6vw, 68px); margin-bottom: 16px; }
.footer-cta p { color: var(--muted); font-size: 19px; margin-bottom: 32px; }
.socials { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.social {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--bg-3); border: 1px solid var(--line); border-radius: 100px;
  padding: 13px 22px; font-family: var(--font-display); font-weight: 500; font-size: 15px;
  transition: border-color .25s, color .25s, transform .25s, background .25s;
}
.social:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }
.social svg { width: 18px; height: 18px; fill: currentColor; }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 80px; padding: 30px 0; display: flex; justify-content: space-between; align-items: center; color: var(--muted); font-size: 14px; flex-wrap: wrap; gap: 12px; }
.footer-bottom .logo { font-size: 18px; }

/* ============================================================================
   PACK DETAIL PAGINA (pack.html)
   ========================================================================== */
.detail-header { padding-top: calc(var(--nav-h) + 70px); padding-bottom: 40px; }
.back-link { color: var(--muted); font-family: var(--font-display); font-size: 14px; display: inline-flex; gap: 8px; align-items: center; margin-bottom: 28px; transition: color .2s; }
.back-link:hover { color: var(--accent); }
.detail-title { font-size: clamp(40px, 8vw, 92px); text-transform: uppercase; line-height: .95; }
.detail-tagline { color: var(--accent); font-family: var(--font-display); font-size: 20px; margin-top: 10px; }
.detail-desc { color: #c9c9d2; font-size: 19px; max-width: 680px; margin-top: 22px; }
.media-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.media-item { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--bg-2); aspect-ratio: 16/10; }
.media-item img, .media-item video, .media-item iframe { width: 100%; height: 100%; object-fit: cover; border: 0; }
.media-item .cap { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px 16px; background: linear-gradient(transparent, rgba(0,0,0,.8)); font-family: var(--font-display); font-size: 14px; }

/* ============================================================================
   SCROLL-REVEAL ANIMATIE
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* Muis-glow (volgt de cursor op desktop) */
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(closest-side, var(--accent-glow), transparent 70%);
  pointer-events: none; z-index: 5; opacity: 0; transform: translate(-50%, -50%);
  transition: opacity .4s ease; mix-blend-mode: screen; filter: blur(20px);
}

/* ============================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .about-cols { grid-template-columns: 1fr; gap: 44px; }
  .video-grid { grid-template-columns: 1fr; }
  .packs-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 80px 0; }
}
@media (max-width: 640px) {
  .nav-links {
    position: fixed; inset: var(--nav-h) 0 auto 0; flex-direction: column; align-items: stretch;
    background: rgba(8,8,11,.97); backdrop-filter: blur(14px); padding: 16px 24px 24px; gap: 4px;
    border-bottom: 1px solid var(--line); transform: translateY(-120%); transition: transform .35s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 16px; font-size: 17px; }
  .nav-toggle { display: block; }
  .logo-tag { display: none; }            /* tagline verbergen op telefoon -> logo blijft strak */
  .nav-actions { gap: 8px; }
  .lang-toggle { padding: 6px 10px 6px 8px; font-size: 12px; }
  .packs-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .cursor-glow { display: none; }
  .section { padding: 64px 0; }
}

/* Respecteer 'reduce motion' voorkeur */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
