/*
Theme Name: Bolster v2
Theme URI: https://getbolster.nl
Author: Bolster
Description: Officieel Bolster thema voor content pagina's
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800&display=swap');

:root {
  --bol-blue: #0000a4;
  --bol-blue-dark: #00008c;
  --bol-accent: #ff6900;
  --bg: #f5f5f0;
  --surface: #ffffff;
  --border: #e0e0d8;
  --text: #1a1a2e;
  --text2: #5a5a6e;
  --radius: 10px;
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
}

/* NAV */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

.site-logo {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--bol-blue);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-dot {
  width: 8px;
  height: 8px;
  background: var(--bol-accent);
  border-radius: 50%;
  display: inline-block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-nav a {
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s;
  color: var(--text);
  border: 1px solid var(--border);
  background: var(--surface);
}

.site-nav a:hover { background: var(--bg); }

.site-nav a.btn-primary {
  background: var(--bol-blue);
  color: #fff;
  border-color: var(--bol-blue);
}

.site-nav a.btn-primary:hover { background: var(--bol-blue-dark); }

/* CONTENT */
.site-main {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.page-title-wrap {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

h1 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin: 32px 0 12px;
}

h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 24px 0 8px;
}

p {
  color: var(--text2);
  margin-bottom: 16px;
  line-height: 1.8;
}

a {
  color: var(--bol-blue);
  text-decoration: underline;
}

a:hover { color: var(--bol-blue-dark); }

ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
  color: var(--text2);
}

li { margin-bottom: 6px; line-height: 1.7; }

strong { color: var(--text); font-weight: 700; }

/* CARD */
.entry-content {
  background: var(--surface);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 40px;
}

/* FOOTER */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 24px 40px;
  text-align: center;
  font-size: 13px;
  color: var(--text2);
}

.site-footer a {
  color: var(--text2);
  text-decoration: none;
  margin: 0 12px;
}

.site-footer a:hover { color: var(--bol-blue); }

/* RESPONSIVE */
@media (max-width: 640px) {
  .site-header { padding: 0 20px; }
  .site-main { padding: 32px 16px 48px; }
  .entry-content { padding: 24px; }
  h1 { font-size: 22px; }
}
