/* gpj.be - Gerechtelijke Politie Archief */

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

:root {
  --navy: #0d1b4b;
  --navy-dark: #080f2d;
  --navy-mid: #1a2d6b;
  --amber: #c8900a;
  --amber-light: #e8a80f;
  --text-dark: #1a1a2e;
  --text-body: #333344;
  --text-muted: #666677;
  --bg-light: #f4f5f8;
  --bg-white: #ffffff;
  --border-color: #d0d3df;
  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Helvetica Neue', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--bg-light);
}

a {
  color: var(--navy-mid);
  text-decoration: none;
}

a:hover {
  color: var(--amber);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Archive Banner --- */
.archief-melding {
  background: #1a2d6b;
  color: #e8d8a0;
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  line-height: 1.5;
  border-bottom: 3px solid var(--amber);
}

.archief-melding strong {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 12px;
}

.archief-melding a {
  color: var(--amber-light);
  font-weight: bold;
}

.archief-melding a:hover {
  color: #fff;
  text-decoration: underline;
}

/* --- Site Header --- */
.site-header {
  background: var(--navy-dark);
  padding: 0;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 24px 0;
  text-align: center;
}

.site-logo {
  display: inline-block;
  margin-bottom: 22px;
}

.site-logo svg {
  width: 80px;
  height: 80px;
}

.site-title {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 28px;
  letter-spacing: 1px;
  font-weight: normal;
  line-height: 1.2;
  margin-bottom: 4px;
}

.site-tagline {
  color: #a0aac8;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* --- Main Navigation --- */
.main-nav {
  background: var(--navy-mid);
  border-top: 2px solid var(--amber);
}

.main-nav ul {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.main-nav li a {
  display: block;
  color: #c8d0e8;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 20px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.main-nav li a:hover,
.main-nav li a.actief {
  background: var(--amber);
  color: #fff;
  text-decoration: none;
}

/* --- Hero Section --- */
.pagina-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 60%, #243a7a 100%);
  padding: 60px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pagina-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
}

.hero-content {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.hero-content h1 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 38px;
  font-weight: normal;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero-content p {
  color: #b8c4e0;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.archief-label {
  display: inline-block;
  background: var(--amber);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 18px;
}

/* --- Page Content Layout --- */
.pagina-inhoud {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 24px;
}

/* --- Section Headings --- */
.sectie-kop {
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: 26px;
  font-weight: normal;
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--amber);
}

.sectie-kop-klein {
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 14px;
}

/* --- Page Grid (sidebar + main) --- */
.inhoud-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}

/* --- Navigation Blocks (homepage) --- */
.nav-blokken {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 56px;
}

.nav-blok {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-top: 3px solid var(--navy-mid);
  padding: 24px;
  transition: border-top-color 0.2s, box-shadow 0.2s;
}

.nav-blok:hover {
  border-top-color: var(--amber);
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.nav-blok h2 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: normal;
  color: var(--navy);
  margin-bottom: 10px;
}

.nav-blok h2 a {
  color: var(--navy);
}

.nav-blok h2 a:hover {
  color: var(--amber);
  text-decoration: none;
}

.nav-blok p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.lees-meer {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-mid);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lees-meer:hover {
  color: var(--amber);
  text-decoration: none;
}

/* --- Sidebar --- */
.zijbalk {
  position: sticky;
  top: 20px;
}

.zijbalk-widget {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  margin-bottom: 24px;
}

.zijbalk-widget-kop {
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 16px;
}

.zijbalk-widget-inhoud {
  padding: 16px;
  font-size: 14px;
}

.zijbalk-widget-inhoud ul {
  list-style: none;
  padding: 0;
}

.zijbalk-widget-inhoud ul li {
  border-bottom: 1px solid #eee;
  padding: 8px 0;
}

.zijbalk-widget-inhoud ul li:last-child {
  border-bottom: none;
}

.zijbalk-widget-inhoud ul li a {
  color: var(--navy-mid);
  font-size: 14px;
}

/* --- Intro tekst --- */
.intro-tekst {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 760px;
}

/* --- Blogroll --- */
.blogrol-sectie {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}

.blogrol-items {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.blogrol-item {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 28px;
  border-left: 4px solid var(--navy-mid);
}

.blogrol-item:hover {
  border-left-color: var(--amber);
}

.blogrol-meta {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.blogrol-item h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: normal;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.blogrol-item h3 a {
  color: var(--navy);
}

.blogrol-item h3 a:hover {
  color: var(--amber);
}

.blogrol-item p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 8px;
}

.blog-lees-verder {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-lees-verder:hover {
  color: var(--navy);
  text-decoration: none;
}

/* --- Content pages --- */
.tekst-inhoud {
  max-width: 760px;
}

.tekst-inhoud p {
  margin-bottom: 20px;
}

.tekst-inhoud h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: normal;
  color: var(--navy);
  margin-top: 36px;
  margin-bottom: 14px;
}

.tekst-inhoud ul {
  padding-left: 22px;
  margin-bottom: 20px;
}

.tekst-inhoud ul li {
  margin-bottom: 8px;
}

/* --- Contact blocks --- */
.contact-blok {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 28px;
  max-width: 540px;
  margin-bottom: 24px;
}

.contact-rij {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}

.contact-rij:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-label {
  background: var(--amber);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  min-width: 60px;
  text-align: center;
}

.contact-waarde {
  font-size: 16px;
  color: var(--text-dark);
  font-family: var(--font-heading);
}

/* --- Wanted cards --- */
.wanted-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.wanted-kaart {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  text-align: center;
  overflow: hidden;
}

.wanted-afbeelding {
  background: var(--navy);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wanted-afbeelding svg {
  opacity: 0.4;
}

.wanted-info {
  padding: 14px;
}

.wanted-type {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  margin-bottom: 8px;
}

.wanted-type.gezocht {
  background: #8b0000;
}

.wanted-type.vermist {
  background: var(--navy-mid);
}

.wanted-info p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- Meldpunt form --- */
.meldpunt-form {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 32px;
  max-width: 600px;
}

.form-groep {
  margin-bottom: 20px;
}

.form-groep label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-groep input,
.form-groep textarea {
  width: 100%;
  border: 1px solid var(--border-color);
  padding: 10px 14px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: #fafafa;
  outline: none;
  transition: border-color 0.2s;
}

.form-groep input:focus,
.form-groep textarea:focus {
  border-color: var(--navy-mid);
  background: #fff;
}

.form-groep textarea {
  height: 140px;
  resize: vertical;
}

.formulier-btn {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 12px 28px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.formulier-btn:hover {
  background: var(--amber);
}

/* --- Info box (sidebar) --- */
.info-kader {
  background: #fff8e8;
  border: 1px solid #e0c87a;
  border-left: 4px solid var(--amber);
  padding: 18px 20px;
  font-size: 14px;
  color: #5a4a00;
  line-height: 1.6;
  margin-bottom: 24px;
}

.info-kader strong {
  display: block;
  margin-bottom: 6px;
  color: #3a2f00;
}

/* --- Site Footer --- */
.site-footer {
  background: var(--navy-dark);
  border-top: 3px solid var(--amber);
  color: #a0aac8;
  margin-top: 64px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.footer-kolom h4 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #2a3560;
}

.footer-kolom p {
  font-size: 14px;
  line-height: 1.7;
  color: #8090b8;
}

.footer-kolom ul {
  list-style: none;
  padding: 0;
}

.footer-kolom ul li {
  margin-bottom: 8px;
}

.footer-kolom ul li a {
  color: #8090b8;
  font-size: 14px;
}

.footer-kolom ul li a:hover {
  color: var(--amber-light);
  text-decoration: none;
}

.footer-bodem {
  border-top: 1px solid #1e2d5a;
  padding: 18px 24px;
  text-align: center;
  font-size: 13px;
  color: #5a6888;
}

.footer-bodem a {
  color: #6a7898;
}

/* --- Cookie Notice --- */
.cookie-balk {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(8, 15, 45, 0.97);
  color: #c0c8e0;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 9999;
  font-size: 14px;
  border-top: 2px solid var(--amber);
}

.cookie-balk p {
  margin: 0;
  max-width: 800px;
}

.cookie-balk a {
  color: var(--amber-light);
}

.cookie-akkoord {
  background: var(--amber);
  color: #fff;
  border: none;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.cookie-akkoord:hover {
  background: var(--amber-light);
}

/* --- Breadcrumb --- */
.broodkruimel {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  padding: 10px 0;
}

.broodkruimel-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  font-size: 13px;
  color: var(--text-muted);
}

.broodkruimel-inner a {
  color: var(--text-muted);
}

.broodkruimel-inner a:hover {
  color: var(--amber);
}

.broodkruimel-inner span {
  margin: 0 6px;
}

/* --- Responsive --- */
@media (max-width: 800px) {
  .inhoud-grid {
    grid-template-columns: 1fr;
  }

  .zijbalk {
    position: static;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .main-nav ul {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .main-nav li a {
    padding: 12px 14px;
    font-size: 12px;
  }

  .cookie-balk {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 560px) {
  .nav-blokken {
    grid-template-columns: 1fr;
  }

  .header-inner {
    padding: 20px 16px 0;
  }

  .pagina-hero {
    padding: 40px 16px;
  }

  .pagina-inhoud {
    padding: 36px 16px;
  }
}
