/* =========================
   BASE / RESET
========================= */
*{ box-sizing:border-box; }
html, body{ height:100%; }
body{
  margin:0;
  background:#000;
  color:#fff;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* =========================
   NAVBAR
========================= */
.nav{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:50;
  background: linear-gradient(to bottom, rgba(0,0,0,.75), rgba(0,0,0,.25));
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
}

.nav-inner{
  width:min(1200px, 92vw);
  margin:0 auto;
  padding: 18px 0;
  display:grid;
  grid-template-columns: auto 1fr auto;
  align-items:center;
  gap:24px;
}

.nav-logo{
  font-size:14px;
  letter-spacing:1px;
  color: rgba(255,255,255,.92);
  user-select:none;
  white-space:nowrap;
  line-height: 1;
  display:flex;
  align-items:center;
  height:100%;
  padding-top:1px;
}

.nav-links{
  justify-self:center;
  display:flex;
  align-items:center;
  gap:18px;
}

.nav-links a{
  color: rgba(255,255,255,.75);
  text-decoration:none;
  font-size:13px;
  letter-spacing:1px;
  text-transform:uppercase;
  padding: 6px 2px;
}

.nav-links a:hover{ color:#fff; }
.nav-links a.active{ color:#fff; }

.nav-spacer{
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* =========================
   HOME: STRUCTURE (FOOTER ANCHOR)
========================= */
.page-home{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  background:#000;
}

.home-stack{
  position:relative;
  z-index:1;
  flex: 1 0 auto;
  min-height:0;
  display:flex;
  flex-direction:column;
}

/* =========================
   HOME: VIDEO BACKGROUND (CONTINUOUS)
========================= */
.home-bg{
  position:fixed;
  inset:0;
  z-index:0;
  overflow:hidden;
}

.home-bg-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transform: translateZ(0);
  filter: brightness(0.95) contrast(1.05);
}

.home-bg-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(ellipse at center,
      rgba(0,0,0,.35) 0%,
      rgba(0,0,0,.55) 45%,
      rgba(0,0,0,.82) 100%
    ),
    linear-gradient(to bottom,
      rgba(0,0,0,.20) 0%,
      rgba(0,0,0,.55) 70%,
      rgba(0,0,0,.80) 100%
    );
  pointer-events:none;
}

/* =========================
   HERO (HOME)
========================= */
.page-home .hero{
  flex: 1 0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  padding-top:78px;
}

.page-home .hero-content{
  text-align:center;
  padding: 0 6vw;
  max-width: 1200px;
}

.page-home .hero-title{
  margin:0 0 18px;
  font-weight:500;
  letter-spacing:2px;
  font-size: clamp(42px, 5vw, 86px);
  text-shadow: 0 10px 35px rgba(0,0,0,.55);
}

.page-home .hero-subtitle{
  margin:0 0 22px;
  font-size: clamp(16px, 1.4vw, 22px);
  color: rgba(255,255,255,.88);
  letter-spacing:1px;
  text-shadow: 0 10px 30px rgba(0,0,0,.55);
}

.page-home .hero-soon{
  margin:0;
  font-size: clamp(16px, 1.2vw, 22px);
  letter-spacing: 6px;
  font-weight:700;
  color: rgba(255,255,255,.92);
  text-shadow: 0 10px 30px rgba(0,0,0,.55);
}

/* HERO ANIMATION */
.page-home .hero-title,
.page-home .hero-subtitle,
.page-home .hero-soon{
  opacity:0;
  transform: translateY(10px);
  animation: heroFadeUp .9s ease-out forwards;
  will-change: transform, opacity;
}

.page-home .hero-title{ animation-delay: .10s; }
.page-home .hero-subtitle{ animation-delay: .30s; }
.page-home .hero-soon{ animation-delay: .50s; }

@keyframes heroFadeUp{
  to{
    opacity:1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce){
  .page-home .hero-title,
  .page-home .hero-subtitle,
  .page-home .hero-soon{
    animation:none;
    opacity:1;
    transform:none;
  }
}

/* =========================
   MANIFEST (SUBTLE OVER VIDEO)
========================= */
.manifest{
  padding: 34px 0 96px; /* extra ruimte onder Manifest voor cookie notice */
}

.manifest-inner{
  width:min(900px, 88vw);
  margin:0 auto;
  text-align:center;

  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px;
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 60px rgba(0,0,0,.45);

  padding: 28px 22px;
}

.manifest-line{
  margin:0 0 12px;
  font-size: clamp(15px, 1.05vw, 18px);
  color: rgba(255,255,255,.84);
  letter-spacing:1px;
  line-height:1.6;
}

.manifest-line.strong{
  font-weight:600;
  color:#fff;
}

.manifest-spacer{
  height:16px;
}

/* =========================
   ABOUT + PRIVACY (FOOTER ANCHOR)
========================= */
.page-about,
.page-privacy{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  background:#000;
  padding-top:90px;
}

.container{
  width:min(1200px, 92vw);
  margin:0 auto;
  padding: 40px 0 40px;
  flex: 1 0 auto;
  min-height:0;
}

.page-hero h1{
  margin:0 0 12px;
  font-weight:500;
  font-size: clamp(38px, 4vw, 64px);
  letter-spacing:1px;
}

.lead{
  margin:0 0 28px;
  max-width: 78ch;
  color: rgba(255,255,255,.82);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height:1.7;
}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:18px;
  margin-top: 26px;
}

.card{
  grid-column: span 6;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 18px 18px 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,.45);
}

.card h2{
  margin:0 0 10px;
  font-size: 16px;
  letter-spacing:1px;
  text-transform:none;
}

.card p{
  margin:0;
  color: rgba(255,255,255,.78);
  line-height:1.7;
  font-size: 14px;
}

/* =========================
   FOOTER (GLOBAL)
========================= */
.footer-global{
  position:relative;
  z-index:2;
  margin-top:auto;
  border-top: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(to top, rgba(0,0,0,.85), rgba(0,0,0,.35));
}

.footer-inner{
  width:min(1200px, 92vw);
  margin:0 auto;
  padding: 18px 0;
  text-align:center;
}

.footer-copy{
  margin:0;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  letter-spacing:.6px;
}

.footer-link{
  color: rgba(255,255,255,.70);
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:.9px;
  margin-left:4px;
}

.footer-link:hover{ color:#fff; }

/* =========================
   PRIVACY EXTRAS
========================= */
.privacy-meta{
  margin: 0 0 18px;
  color: rgba(255,255,255,.58);
  font-size: 12px;
  letter-spacing:.6px;
}

.privacy{
  margin-top: 22px;
}

.privacy-block{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 18px 18px 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
  margin-bottom: 14px;
}

.privacy-block h2{
  margin:0 0 10px;
  font-size: 16px;
  letter-spacing:1px;
  font-weight:600;
}

.privacy-block p{
  margin:0 0 10px;
  color: rgba(255,255,255,.78);
  line-height:1.7;
  font-size: 14px;
}

.privacy-block p:last-child{ margin-bottom:0; }

.privacy-list{
  margin: 0 0 0 18px;
  padding: 0;
  color: rgba(255,255,255,.78);
  line-height:1.7;
  font-size: 14px;
}

.privacy-contact{
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: 14px;
  letter-spacing:.3px;
}

/* =========================
   COOKIE NOTICE (POP-UP)
========================= */
.cookie-notice{
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 9999; /* boven alles */
  display: none; /* JS zet hem aan indien nodig */
  pointer-events: none; /* inner krijgt clicks */
}

.cookie-notice.is-visible{
  display: block;
}

.cookie-inner{
  pointer-events: auto;
  width: min(1100px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;

  padding: 16px 18px;
  border-radius: 16px;

  background: rgba(0,0,0,.62);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);

  box-shadow:
    0 18px 70px rgba(0,0,0,.55),
    0 0 0 1px rgba(255,255,255,.04),
    0 0 28px rgba(120,180,255,.10); /* subtiele glow */
}

.cookie-title{
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  white-space: nowrap;
}

.cookie-text{
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255,255,255,.72);
}

.cookie-link{
  color: rgba(255,255,255,.82);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.22);
}

.cookie-link:hover{
  color:#fff;
  border-bottom-color: rgba(255,255,255,.55);
}

.cookie-btn{
  appearance: none;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 12px;
  cursor: pointer;

  box-shadow:
    0 10px 30px rgba(0,0,0,.40),
    0 0 18px rgba(120,180,255,.10); /* subtiele glow */
}

.cookie-btn:hover{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.28);
}

.cookie-btn:focus{
  outline: none;
  box-shadow:
    0 0 0 2px rgba(120,180,255,.25),
    0 10px 30px rgba(0,0,0,.40);
}

/* Responsive */
@media (max-width: 860px){
  .card{ grid-column: span 12; }
  .nav-inner{ padding: 16px 0; }

  .cookie-inner{
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: left;
  }
  .cookie-btn{
    width: 100%;
  }
}
.nav-links .lang-switch {
  opacity: 0.6;
  letter-spacing: 0.1em;
}

.nav-links .lang-switch:hover {
  opacity: 1;
}








































