/* ═══════════════════════════════════════════════════════
   ROCKET AGENCY — GLOBAL STYLESHEET
   Alle pagina's importeren dit bestand
═══════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --black:   #080808;
  --black2:  #0f0f0f;
  --black3:  #181818;
  --black4:  #222222;
  --gold:    #c9a84c;
  --gold2:   #e8c96a;
  --gold3:   #f5e0a0;
  --white:   #f2ede6;
  --muted:   #7a7065;
  --muted2:  #9a9085;
  --border:  rgba(201,168,76,.18);
  --glow:    rgba(201,168,76,.08);

  --font-display: 'Cormorant Garamond', serif;
  --font-ui:      'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --ease-silk: cubic-bezier(.16,1,.3,1);
  --nav-h: 80px;
  --max-w: 1400px;
  --pad-x: 60px;
}

/* ── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--gold); color: var(--black); }

/* ── NOISE OVERLAY ──────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: .028;
  pointer-events: none;
}

/* ── CUSTOM CURSOR ──────────────────────────────────── */
#cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold); pointer-events: none;
  transform: translate(-50%,-50%);
  transition: width .25s var(--ease-silk), height .25s var(--ease-silk);
  mix-blend-mode: difference;
}
#cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9998;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,.6); pointer-events: none;
  transform: translate(-50%,-50%);
  transition: width .35s var(--ease-silk), height .35s var(--ease-silk);
}
body:has(a:hover) #cursor,
body:has(button:hover) #cursor { width: 6px; height: 6px; }
body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring { width: 56px; height: 56px; }

/* ── PARTICLES CANVAS ───────────────────────────────── */
#stars { position: fixed; inset: 0; z-index: 0; pointer-events: none; }

/* ── NAV ────────────────────────────────────────────── */
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 var(--pad-x);
  border-bottom: 1px solid transparent;
  transition: background .4s, border-color .4s, backdrop-filter .4s;
}
nav.scrolled {
  background: rgba(8,8,8,.88);
  border-color: var(--border);
  backdrop-filter: blur(20px);
}
.nav-logo {
  display: flex;
  align-items: center;
  line-height: 1;
}
.nav-logo span { color: var(--gold); }
.nav-logo svg { width: 26px; height: 26px; }
.nav-links { display: flex; align-items: center; gap: 40px; list-style: none; }
.nav-links a {
  font-family: var(--font-ui); font-size: .78rem;
  font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
  position: relative; transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px;
  left: 0; right: 100%; height: 1px; background: var(--gold);
  transition: right .3s var(--ease-silk);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { right: 0; }
.nav-cta {
  font-family: var(--font-ui); font-size: .78rem;
  font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--black);
  background: var(--gold); padding: 12px 28px;
  border-radius: 2px; transition: background .3s, transform .2s;
}
.nav-cta:hover { background: var(--gold2); transform: translateY(-1px); }

/* ── DIVIDER ────────────────────────────────────────── */
.divider {
  position: relative; z-index: 2;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ── SECTION LABEL ──────────────────────────────────── */
.section-label {
  font-family: var(--font-ui); font-size: .68rem;
  font-weight: 700; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
}
.section-label::before {
  content: ''; width: 28px; height: 1px; background: var(--gold);
}

/* ── BUTTONS ────────────────────────────────────────── */
.btn-primary {
  font-family: var(--font-ui); font-size: .8rem;
  font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  padding: 18px 44px; border: none; border-radius: 2px;
  cursor: none; position: relative; overflow: hidden;
  display: inline-block;
  transition: transform .25s var(--ease-silk), box-shadow .25s;
  box-shadow: 0 0 40px rgba(201,168,76,.12);
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold2), var(--gold3));
  opacity: 0; transition: opacity .3s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(201,168,76,.28); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary span { position: relative; z-index: 1; }

.btn-outline {
  font-family: var(--font-ui); font-size: .78rem;
  font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--border); padding: 16px 40px;
  border-radius: 2px; display: inline-block;
  transition: border-color .3s, background .3s, color .3s, transform .25s var(--ease-silk);
  cursor: none;
}
.btn-outline:hover {
  border-color: var(--gold); background: rgba(201,168,76,.06);
  transform: translateY(-1px);
}

.btn-ghost {
  font-family: var(--font-ui); font-size: .8rem;
  font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
  display: inline-flex; align-items: center; gap: 10px;
  transition: color .3s; cursor: none;
}
.btn-ghost svg { transition: transform .3s var(--ease-silk); }
.btn-ghost:hover { color: var(--white); }
.btn-ghost:hover svg { transform: translateX(4px); }

/* ── PAGE HERO (subpagina's) ────────────────────────── */
.page-hero {
  position: relative; z-index: 2;
  padding: calc(var(--nav-h) + 100px) var(--pad-x) 100px;
  border-bottom: 1px solid var(--border);
  max-width: var(--max-w); margin: 0 auto;
}
.page-hero-label { margin-bottom: 28px; }
.page-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 300; line-height: 1.04;
  max-width: 800px;
}
.page-hero-h1 em { font-style: italic; color: var(--gold); }
.page-hero-sub {
  font-size: 1.1rem; color: var(--muted);
  max-width: 520px; line-height: 1.8; margin-top: 28px;
}

/* ── ANIMATIONS ─────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .9s var(--ease-silk), transform .9s var(--ease-silk);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── FOOTER ─────────────────────────────────────────── */
footer {
  position: relative; z-index: 2;
  border-top: 1px solid var(--border);
  padding: 60px var(--pad-x) 44px;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px; padding-bottom: 60px;
  border-bottom: 1px solid var(--border); margin-bottom: 44px;
}
.footer-logo {
  font-family: var(--font-ui); font-size: 1.1rem;
  font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; margin-bottom: 16px;
}
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: .92rem; color: var(--muted); line-height: 1.7; }
.footer-col-title {
  font-family: var(--font-ui); font-size: .68rem;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; list-style: none; }
.footer-links a { font-size: .92rem; color: var(--muted); transition: color .3s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: .8rem; color: var(--muted); font-family: var(--font-ui); letter-spacing: .08em; }
.footer-legal { display: flex; gap: 28px; }
.footer-legal a {
  font-family: var(--font-ui); font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); transition: color .3s;
}
.footer-legal a:hover { color: var(--gold); }

/* ── MOBILE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  :root { --pad-x: 24px; }
  nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > div:first-child { grid-column: span 2; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
  body { cursor: auto; }
  #cursor, #cursor-ring { display: none; }
}
