/* ============================================================
   N-Works 3D - gedeelde vaste UI (header + footer)
   Genaamruimd met .nw-* zodat het nooit botst met pagina-CSS.
   Kleuren staan hier letterlijk (los van per-pagina :root-namen).
   Render + taalstate: site-ui.js
   ============================================================ */
.nw-header, .nw-header *, .nw-footer, .nw-footer * { box-sizing: border-box; margin: 0; }

/* Header / topbar */
.nw-header { position: sticky; top: 0; z-index: 50; background: rgba(13,27,42,0.92); backdrop-filter: blur(8px); border-bottom: 1px solid #2A3B58; }
.nw-bar { position: relative; max-width: 1080px; margin: 0 auto; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nw-brand { font-weight: 800; letter-spacing: 0.06em; font-size: 24px; line-height: 1; color: #C9A84C; text-transform: uppercase; text-decoration: none; display: block; white-space: nowrap; text-align: center; }
.nw-brand small { display: block; font-size: 8px; letter-spacing: 0.12em; color: #A8B0BD; font-weight: 500; margin-top: 5px; }
.nw-nav { display: flex; gap: 30px; align-items: center; }
.nw-nav a { color: #F2EEE4; text-decoration: none; font-size: 14px; letter-spacing: 0.02em; transition: color 0.2s; }
.nw-nav a:hover, .nw-nav a.active { color: #C9A84C; }
.nw-right { display: flex; align-items: center; gap: 18px; }
.nw-lang { display: flex; gap: 2px; border: 1px solid #2A3B58; border-radius: 4px; overflow: hidden; }
.nw-lang button { background: transparent; border: none; color: #A8B0BD; font-size: 12px; font-weight: 600; padding: 6px 9px; cursor: pointer; letter-spacing: 0.04em; transition: all 0.18s; font-family: inherit; }
.nw-lang button:hover { color: #F2EEE4; }
.nw-lang button.active { background: #C9A84C; color: #0D1B2A; }
.nw-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nw-toggle span { display: block; width: 24px; height: 2px; background: #F2EEE4; margin: 5px 0; }

/* Footer */
.nw-footer { background: #102438; padding: 56px 0 30px; }
.nw-foot-in { max-width: 1080px; margin: 0 auto; padding: 0 28px; }
.nw-foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 38px; border-bottom: 1px solid #2A3B58; }
.nw-foot-brand .nw-brand { margin-bottom: 14px; text-align: left; }
.nw-foot-brand p { color: #A8B0BD; font-size: 14px; max-width: 320px; }
.nw-foot-col h4 { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: #C9A84C; margin-bottom: 16px; }
.nw-foot-col a { display: block; color: #A8B0BD; text-decoration: none; font-size: 14px; margin-bottom: 10px; transition: color 0.2s; }
.nw-foot-col a:hover { color: #C9A84C; }
.nw-foot-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 24px; font-size: 12.5px; color: #A8B0BD; }

/* Mobiel: nav inklappen achter de hamburger */
@media (max-width: 860px) {
  .nw-nav { display: none; }
  .nw-nav.open { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: flex-start; background: #0D1B2A; border-bottom: 1px solid #2A3B58; padding: 16px 28px; gap: 18px; }
  .nw-toggle { display: block; }
  .nw-foot-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 560px) {
  .nw-bar { padding: 0 16px; }
  .nw-brand { font-size: 19px; letter-spacing: 0.04em; }
  .nw-brand small { font-size: 7px; letter-spacing: 0.1em; }
  .nw-right { gap: 10px; }
}
@media (prefers-reduced-motion: reduce) { .nw-header *, .nw-footer * { transition: none !important; } }
