@charset "UTF-8";
/*
|--------------------------------------------------------------------------
| Global
|--------------------------------------------------------------------------
*/
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "area-normal", sans-serif;
  color: #1c3e75;
  overflow-x: clip; /* avoid 0.5–6px phantom scrollbars from vw math */
}

/*
|--------------------------------------------------------------------------
| Classes + Layout
|--------------------------------------------------------------------------
*/
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.flex-columns {
  display: flex;
  gap: 40px;
}
@media (max-width: 768px) {
  .flex-columns {
    flex-direction: column;
  }
}
.flex-columns .col {
  position: relative;
}
.flex-columns img {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.flex-columns.align-center {
  align-items: center;
}
.flex-columns.justify-center {
  justify-content: center;
}

.gap-0 {
  gap: 0px;
}

.gap-5 {
  gap: 5px;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.gap-30 {
  gap: 30px;
}

.gap-40 {
  gap: 40px;
}

.gap-50 {
  gap: 50px;
}

.ml-r-0 {
  margin-left: 0px !important;
  margin-right: 0px !important;
}

.mt-0 {
  margin-top: 0px !important;
}

.ml-0 {
  margin-left: 0px !important;
}

.mr-0 {
  margin-right: 0px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mt-150 {
  margin-top: 150px !important;
}

.border-radius-10 {
  border-radius: 10px;
}

.border-radius-8 {
  border-radius: 8px;
}

.d-none {
  display: none !important;
}

.text-center {
  text-align: center;
}

/*
|--------------------------------------------------------------------------
| Images
|--------------------------------------------------------------------------
*/
.img-shadow {
  border-radius: 0;
  box-shadow: 8px 8px 0px rgba(197, 212, 227, 0.5);
}

/*
|--------------------------------------------------------------------------
| Social icons 
|--------------------------------------------------------------------------
*/
ul.has-large-icon-size .wp-social-link a {
  font-size: 2rem;
}

ul.has-huge-icon-size .wp-social-link a {
  font-size: 2.9rem;
}

/*
|--------------------------------------------------------------------------
| Buttons
|--------------------------------------------------------------------------
*/
.wp-block-button.hover-blue:hover > a {
  background-color: #1C3E75;
  color: white !important;
  transition: all 300ms ease;
}

.wp-block-button.is-style-fill > a {
  border: 2px solid transparent;
}

.wp-block-button.is-style-fill:hover > a {
  background-color: white !important;
  color: #1C3E75 !important;
  border: 2px solid;
  border-color: #1C3E75 !important;
  transition: all 300ms ease;
}

/*--- old syyle --*/
.button {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px 30px;
  border-radius: 30px;
  font-weight: 900;
  font-size: 20px;
  text-decoration: none;
  line-height: 1;
  transition: all 0.2s;
}
.button:hover {
  cursor: pointer;
}

.go-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  background: #6E2C50;
  color: white;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid white;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999999;
}

/* Zichtbaar na scrollen */
.go-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* Hover effect */
.go-to-top:hover {
  background: #6E2C50;
  opacity: 0.8;
}

/*
|--------------------------------------------------------------------------
| Animations
|--------------------------------------------------------------------------
*/
@keyframes wiggle {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(3deg);
  }
  50% {
    transform: rotate(-3deg);
  }
  75% {
    transform: rotate(3deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
/*
|--------------------------------------------------------------------------
| Gutenburg page size / layout settings
|--------------------------------------------------------------------------
*/
:root {
  --wp--style--global--content-size: 1200px;
  --wp--style--global--wide-size: 1980px;
}

.container > .alignfull,
.main-content > .alignfull {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.alignfull {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* Prefer dynamic viewport on modern browsers (iOS Safari/Chrome mobile) */
@supports (width: 100dvw) {
  .alignfull {
    width: 100dvw;
    margin-left: calc(50% - 50dvw);
    margin-right: calc(50% - 50dvw);
  }
}
/* When alignfull lives inside padded wrappers, counter any visual viewport rounding on small screens */
@media (max-width: 781px) {
  .container > .alignfull,
  .main-content > .alignfull {
    margin-left: 0px;
    margin-right: 0px;
  }
}
.alignwide {
  max-width: var(--wp--style--global--wide-size);
  margin-left: auto;
  margin-right: auto;
}

.wp-block-columns:not(.alignwide):not(.alignfull) {
  max-width: var(--wp--style--global--content-size, 1200px);
  margin-left: auto;
  margin-right: auto;
}

/* Optioneel: content (geen) expliciet begrenzen indien nodig */
.wp-block,
.entry-content > *:not(.alignwide):not(.alignfull) {
  max-width: var(--wp--style--global--content-size, 1200px);
  margin-left: auto;
  margin-right: auto;
}

/* Kolumn omdraaien op mobiel*/
@media (max-width: 781px) {
  .wp-block-columns.is-style-reverse-mobile {
    flex-direction: column-reverse;
  }
}
/* reset (toevoegen aan gutenburg stylesheet)*/
.wp-block-columns:not(.alignwide):not(.alignfull) p strong,
.alignwide p strong,
.alignwide p strong {
  font-weight: 900;
}
.wp-block-columns:not(.alignwide):not(.alignfull) ul,
.alignwide ul,
.alignwide ul {
  margin-top: 0;
}

:where(.wp-block-columns) {
  margin-bottom: 0;
}

.wp-block-image img {
  width: 100%;
}

figure.is-style-rounded img {
  border-radius: 50%;
}

/*
|--------------------------------------------------------------------------
| Sidebar settings
|--------------------------------------------------------------------------
*/
/* if - sidebar is actief  */
.content-sidebar.has-sidebar .alignfull {
  margin-left: calc(-50vw + 50% + calc((370px + 2rem) / 2));
  margin-right: calc(-50vw + 50% - calc((370px + 2rem) / 2));
}
@media (max-width: 768px) {
  .content-sidebar.has-sidebar .alignfull {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }
}
.content-sidebar.has-sidebar .main-content {
  max-width: 800px;
}

.content-sidebar.has-sidebar .alignwide {
  max-width: 900px;
}

.content-sidebar {
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.content-sidebar .main-content {
  flex: 1;
}
.content-sidebar .sidebar {
  width: 370px;
}
@media (max-width: 768px) {
  .content-sidebar {
    flex-direction: column-reverse;
  }
  .content-sidebar .sidebar {
    width: 100%;
  }
}

main.archive {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 180px;
}

.filter-bar {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin: 0 0 1rem;
}

@media (max-width: 980px) {
  .archive-filters {
    padding: 0 1.5rem;
  }
}
.filter-label {
  position: relative;
  font-weight: 500;
  background-color: #f1f4f8;
  padding: 8px 15px;
  border-radius: 4px 0 0 4px;
  white-space: nowrap;
  display: inline-block;
  margin-right: 10px;
}

.filter-label::after {
  content: "";
  position: absolute;
  top: 0;
  right: -12px;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 12px solid #f1f4f8;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  display: inline-block;
  padding: 0.45rem 0.8rem;
  border: 1px solid #d7dbe0;
  border-radius: 999px;
  background: #fff;
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
}

.chip:hover {
  border-color: #b7bcc3;
}

.chip.is-active {
  border-color: #1c3e75;
  background-color: #1c3e75;
  color: #fff;
}

.archive-breadcrumbs {
  margin: 0.25rem 0 1.25rem;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

@media (max-width: 980px) {
  .archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 1.5rem;
  }
}
@media (max-width: 640px) {
  .archive-grid {
    grid-template-columns: 1fr;
  }
}
.card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(197, 212, 227, 0.5);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 8px 8px 0px rgba(197, 212, 227, 0.5);
}
.card:hover {
  box-shadow: 8px 8px 0px #C5D4E3;
  transition: all 300ms ease;
}
.card:hover .card-title,
.card:hover .card-excerpt {
  color: #6e2c50;
}

.card-link {
  position: absolute;
  inset: 0;
  z-index: 5;
  text-indent: -9999px;
  overflow: hidden;
}

.card-media {
  position: relative;
  display: block;
}

.card-thumb {
  width: 100%;
  height: 220px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.card-body {
  padding: 1rem 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
}

.card-meta {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: #8a7;
  text-transform: uppercase;
  background-color: #fff;
  padding: 11px 30px 11px 30px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  overflow: hidden;
}

.card-title {
  font-size: 1.1rem;
  line-height: 1.3;
  margin: 0;
  color: #1c3e75;
}

.card-title a {
  text-decoration: none;
  color: #1c3e75;
}

.card-excerpt {
  margin: 0.25rem 0 0.5rem;
  color: #1c3e75;
}

.card-footer {
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid #eef1f5;
  font-size: 0.9rem;
  color: #637185;
}

.archive-load-more {
  text-align: center;
  margin-top: 1.75rem;
}

.btn-load-more {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-block;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  border: 1px solid #d7dbe0;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
}

.btn-load-more:hover {
  border-color: #b7bcc3;
}

/* ====== BREADCRUMBS (zonder plugins) ====== */
.breadcrumbs {
  font-size: 0.9rem;
  color: #637185;
  margin-bottom: 1rem;
}

.bc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.bc-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.bc-item + .bc-item::before {
  content: "/";
  opacity: 0.65;
}

.breadcrumbs a {
  color: #2a3d57;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.bc-current {
  color: #2f3b48;
}

.bc-page {
  opacity: 0.8;
}

/* ===== Weergave schakelaar (Raster / Lijst) ===== */
.archive-filters .filter-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.archive-filters .view-switch {
  margin-left: auto;
  display: inline-flex;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.archive-filters .view-switch .view-btn {
  padding: 0.5rem 0.75rem;
  background: #fff;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.archive-filters .view-switch .view-btn[aria-pressed=true] {
  background: #f3f3f3;
}

.archive-filters .view-switch .view-btn:focus {
  outline: 2px solid #6aa0ff;
  outline-offset: -2px;
}

/* ===== Lijstweergave ===== */
.archive-grid.is-list {
  display: block;
}

.archive-grid.is-list > * {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
}

.archive-grid.is-list > * + * {
  margin-top: 1rem;
  border-top: 1px solid #eee;
  margin-bottom: 30px;
}

.is-list .card .card-media {
  display: none;
}

.is-list .card .card-media img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Search resault page */
.page-header h1 {
  font-size: 48px;
  font-weight: 500;
}

.page-search {
  padding: 1rem 0;
}

.search-filters {
  border-bottom: 1px solid #ccc;
  padding-bottom: 30px;
}
.search-filters form input.search-field {
  padding: 1rem;
  background: #fff;
  font-size: 1rem;
  border: 2px solid #1c3e75;
  width: 100%;
  border-radius: 20px;
  margin-bottom: 20px;
}
.search-filters form .filters-wrap {
  display: flex;
  gap: 10px;
}
.search-filters form .search-scope {
  border: 1px solid #c2c2c2;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  margin-bottom: 20px;
  background: #ebebeb;
  width: 25%;
}
.search-filters form .search-posttypes {
  border: 1px solid #c2c2c2;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  margin-bottom: 20px;
  background: #ebebeb;
  width: 100%;
}
.search-filters form button[type=submit] {
  padding: 0.8rem 1.5rem;
  font-weight: normal;
  font-size: 1.1rem;
  background: #1c3e75;
  color: #fff;
  border: 1px solid transparent;
}
.search-filters form button[type=submit]:hover {
  background: #fff;
  color: #1c3e75;
  border: 1px solid #1c3e75;
}
.search-filters .search-sort {
  display: flex;
  justify-content: end;
  padding-top: 20px;
  gap: 20px;
}
.search-filters .search-sort select {
  padding: 10px;
  border-radius: 5px;
}

.search-results .results-list .result-item {
  border-bottom: 1px solid #1c3e75;
  padding: 1rem 0;
}
.search-results .results-list a.result-link {
  text-decoration: none;
}
.search-results .results-list a.result-link:hover .result-item {
  background: #f9f9f9;
}
.search-results .results-list a.result-link article {
  padding: 10px;
}
.search-results .results-list a.result-link article .result-title {
  font-size: 1.3rem;
  color: #a5ae7a;
  text-decoration: none;
  font-weight: 400;
}
.search-results .results-list a.result-link article .result-meta,
.search-results .results-list a.result-link article .result-excerpt {
  color: #1c3e75;
  text-decoration: none;
}

.page-numbers {
  display: flex;
  justify-content: end;
  align-items: center;
  list-style: none;
  gap: 5px;
  padding: 0;
}
.page-numbers li {
  padding: 5px;
}
.page-numbers li a {
  text-decoration: none;
  color: #1c3e75;
}
.page-numbers li a:hover {
  color: #a5ae7a;
}
.page-numbers li .current {
  padding: 2px 5px;
  border-radius: 5px;
  background: #1c3e75;
  color: #fff;
}

/* 404 page */
.page-404 {
  padding: 80px 20px;
}
.page-404 path {
  fill: #1c3e75;
}
.page-404 .notice {
  padding-top: 50px;
  text-align: center;
}
.page-404 .button {
  margin: 0 auto;
  font-weight: 400;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
  padding: 10px 28px;
  color: #1c3e75;
  font-size: 1.2rem;
}
.page-404 .button:hover {
  background: #1c3e75;
  color: #fff;
}

.header {
  background: var(--header-bg, #fff);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
.header__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(12px, 2vw, 50px);
  align-items: center;
  max-width: var(--header-inner-max, var(--wp--style--global--content-size, 1200px));
  margin-inline: auto;
  padding-block: clamp(10px, 1.5vw, 18px);
  padding-inline: clamp(12px, 2vw, 50px);
}
.header__logo {
  display: block;
  max-height: 54px;
  height: auto;
  width: auto;
  max-width: 220px;
}
.header .custom-logo {
  display: block;
  max-height: 54px;
  height: auto;
  width: auto;
  max-width: 220px;
}
.header__site-title {
  font-weight: 700;
  text-decoration: none;
  color: inherit;
}
.header .menu--primary {
  display: flex;
  gap: clamp(12px, 2vw, 40px);
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 768px) {
  .header .menu--primary {
    padding-left: 0;
  }
}
.header .menu--primary li {
  list-style: none;
}
.header .menu--primary a {
  text-decoration: none;
  color: inherit;
}
.header .menu--primary .btn {
  background: #fff;
  padding: 10px 20px;
  border-radius: 20px;
}
.header .menu--primary .btn a {
  color: inherit;
  text-decoration: none !important;
  font-weight: 700;
}
.header__brand {
  position: relative;
  z-index: 2;
}
.header__nav {
  position: relative;
  z-index: 1;
}

/* Sticky toestand krijgt body class via filter; positie/collaps blijft in CSS-varianten */
.header-sticky .header {
  position: sticky;
  top: 0;
  z-index: 100;
  -webkit-backdrop-filter: saturate(180%) blur(4px);
          backdrop-filter: saturate(180%) blur(4px);
}

/* menu open state */
body.menu-open {
  overflow: hidden;
}

/* Desktop default: nav zichtbaar, toggle verborgen */
.header__nav {
  display: block;
}

.header__toggle {
  display: none;
  flex: 0 0 auto;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
}

.header__brand {
  flex: 1;
}

.header__search {
  flex: 0 0 auto;
  margin-left: 1rem;
  position: relative;
  display: flex;
  align-items: center;
}

.header-search-form {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header__search .search-toggle {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.header__search .search-toggle i {
  display: block;
  color: white;
  font-size: 1.5rem;
}

.header__search .search-field {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  opacity: 0;
  pointer-events: none;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 1rem 0.6rem;
  transition: width 0.25s ease, opacity 0.2s ease;
  background: #fff;
  z-index: 10;
  font-size: 1rem;
}

.header__search.is-open .search-field {
  width: 250px;
  opacity: 1;
  pointer-events: auto;
}

.header__search .search-submit {
  position: absolute;
  left: -9999px;
}

/* Mobile gedrag */
@media (max-width: 1024px) {
  .header__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 50px;
    background: transparent;
    border: 0;
  }
  .header__toggle .dash {
    width: 30px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
  }
  .header__nav {
    display: none;
  }
  .header__nav.is-open {
    display: block;
  }
  .menu--primary {
    flex-direction: column;
    gap: 16px;
  }
  .header__inner {
    position: relative;
    grid-template-columns: 1fr auto;
  }
  .header__toggle {
    justify-self: end;
    z-index: 3;
  }
  .header__brand {
    z-index: 3;
  }
  .header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--header-bg, #fff);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 16px clamp(12px, 4vw, 40px);
    z-index: 2;
  }
  /* search */
  .header__search.is-open .search-field {
    width: 160px;
  }
  .header__inner {
    gap: 0.5rem;
  }
}
.site-footer {
  position: relative;
  padding: 80px 0;
  color: #fff;
  margin-top: 100px;
}
.site-footer ul {
  list-style: none;
  line-height: 1.833rem;
  padding: 0;
  margin: 0;
}
.site-footer ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
}
.site-footer ul li a:hover {
  text-decoration: underline;
}
.site-footer p {
  font-size: 0.9rem;
  margin: 0;
}
.site-footer .footer-inner {
  display: flex;
}
.site-footer .footer-inner .footer-widgets {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 768px) {
  .site-footer .footer-inner .footer-widgets {
    flex-direction: column;
  }
}
.site-footer .footer-inner .footer-widgets .footer-widget {
  width: 25%;
}
@media (max-width: 768px) {
  .site-footer .footer-inner .footer-widgets .footer-widget {
    width: 100%;
  }
}
.site-footer .footer-bottom {
  margin-top: 80px;
}
.site-footer .footer-bottom ul {
  display: flex;
}
.site-footer .footer-bottom ul li {
  border-right: 1px solid #fff;
  padding: 0 10px;
  line-height: 12px;
}
.site-footer .footer-bottom ul li:first-child {
  padding-left: 0;
}
.site-footer .footer-bottom ul li:last-child {
  border: 0;
}

.footer-edge {
  position: relative;
  top: -150px;
  left: 0;
  width: 100%;
  height: 80px;
  line-height: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .footer-edge {
    top: -120px;
    height: 40px;
  }
}
.footer-edge img, .footer-edge svg {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Box Shadow [GREEN] */
.wp-block-columns .wp-block-column.box-shadow-green {
  box-shadow: 15px 15px 0px rgb(168, 178, 124) !important;
}

/* Columns altijd even hoog */
.wp-block-columns.is-layout-flex.align-stretch {
  align-items: stretch !important;
}/*# sourceMappingURL=main.css.map */