/*
Theme Name: D.S. van Duin Beheer B.V.
Author: DefendereLLC
Author URI: https://defenderellc.com/
Description: One-page bedrijfsadministratie & houdsteractiviteiten. DefendereLLC-thema (vanduinbeheerbv).
Version: 0.4.1
Requires at least: 6.0
Requires PHP: 8.0
Text Domain: vanduinbeheerbv
*/

:root {
  --vdbv-navy: #000080;
  --vdbv-accent: #2563eb;
  --vdbv-accent-soft: #dbeafe;
  --vdbv-bg: #ffffff;
  --vdbv-surface: #f8fafc;
  --vdbv-text: #0f172a;
  --vdbv-muted: #64748b;
  --vdbv-line: rgba(15, 23, 42, 0.08);
  --font-display: "Montserrat", system-ui, sans-serif;
  --font-body: "Open Sans", system-ui, sans-serif;
  --radius: 10px;
  --shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--vdbv-accent) var(--vdbv-surface);
}

/* Scrollbalk — accentblauw (huisstijl); WebKit */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--vdbv-surface);
}

::-webkit-scrollbar-thumb {
  background: var(--vdbv-accent);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--vdbv-navy);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  background: var(--vdbv-bg);
  color: var(--vdbv-text);
  line-height: 1.6;
}

a {
  color: var(--vdbv-accent);
}

a:hover {
  color: var(--vdbv-navy);
}

/* Footer staat op navy: globale link-hover mag daar niet navy maken (anders onzichtbare tekst) */
.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
}

/* Laatste cascade: desktopmenu in header volledig verbergen op smalle schermen */
@media screen and (max-width: 900px) {
  .site-header .primary-nav .primary-nav-desktop {
    display: none !important;
  }
}
