/* == SIZES == */
/* == KLEUREN == */
/* == KLEUREN (Semantisch / Functioneel) == */
/* == TYPOGRAPHY == */
@font-face {
  font-family: "Public Sans";
  src: url("fonts/PublicSans-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Public Sans";
  src: url("fonts/PublicSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* 2. Public Sans - Bold (700) */
@font-face {
  font-family: "Public Sans";
  src: url("fonts/PublicSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/* 2. Public Sans - Bold (700) */
@font-face {
  font-family: "Public Sans";
  src: url("fonts/PublicSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
#smooth-content {
  padding-top: 90px;
}
@media (max-width: 1024px) {
  #smooth-content {
    padding-top: 70px;
  }
}

.main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background: white;
  padding: 20px 116px;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .main-header {
    height: 70px;
    padding: 0 24px;
  }
}
.main-header.is-sticky {
  position: fixed;
  height: 70px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.admin-bar .main-header.is-sticky {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .main-header.is-sticky {
    top: 46px;
  }
}
.main-header.is-sticky .main-header__logo img {
  width: 148px;
}
.main-header.menu-is-open {
  transform: translateY(0) !important;
  background: white !important;
  box-shadow: none !important;
}
.main-header__inner {
  width: 100%;
  max-width: 1280px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
.main-header__logo {
  line-height: 0px;
}
.main-header__logo img {
  width: 185px;
  height: auto;
  transition: width 0.4s ease;
}
@media (max-width: 1024px) {
  .main-header__logo img {
    width: 140px;
  }
}
.main-header__nav {
  height: 100%;
}
@media (max-width: 1024px) {
  .main-header__nav {
    display: none;
  }
}
.main-header__nav .main-menu-list {
  display: flex;
  gap: 32px;
  list-style: none;
  height: 100%;
  align-items: center;
  margin: 0;
  padding: 0;
}
.main-header__nav .main-menu-list > li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.main-header__nav .main-menu-list > li > a {
  color: #FF6600;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}
.main-header__nav .main-menu-list > li > a:hover {
  color: #003955;
}
.main-header__nav .main-menu-list > li.menu-item-has-children {
  padding-right: 15px;
}
.main-header__nav .main-menu-list > li.menu-item-has-children:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 5px;
  background: #FF6600;
  clip-path: polygon(100% 0%, 0 0%, 50% 100%);
  transform: translateY(-50%);
}
.main-header__nav .main-menu-list > li.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-header__nav .sub-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  min-width: 220px;
  background: #fff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 15px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.main-header__nav .sub-menu li a {
  display: block;
  padding: 10px 25px;
  color: #003955;
  font-size: 0.875rem;
  text-decoration: none;
}
.main-header__nav .sub-menu li a:hover {
  background: rgba(255, 102, 0, 0.05);
  color: #FF6600;
}
.main-header__cta {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: 0.3s ease;
}
.main-header__cta:hover {
  text-decoration: none;
}
@media (max-width: 1024px) {
  .main-header__cta {
    display: none;
  }
}
.main-header__cta-avatars {
  display: flex;
  align-items: center;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}
.main-header__cta-avatars .avatar-hexagon {
  width: 32px;
  height: 36px;
  margin-left: -15px;
  position: relative;
}
.main-header__cta-avatars .avatar-hexagon:first-child {
  margin-left: 0;
  z-index: 1;
}
.main-header__cta-avatars .avatar-hexagon:nth-child(2) {
  z-index: 2;
}
.main-header__cta-avatars .avatar-hexagon:nth-child(3) {
  z-index: 3;
}
.main-header__cta-avatars .avatar-hexagon .avatar-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}
.main-header__cta-text {
  color: #003955;
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease;
}
.main-header__cta-text:hover {
  color: #FF6600;
  text-decoration: none;
}

.hamburger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 26px;
  height: 26px;
  z-index: 1100;
}
@media (max-width: 1024px) {
  .hamburger-menu {
    display: block;
  }
}
.hamburger-menu svg rect {
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger-menu.is-active .line-1 {
  transform: translateY(6px) rotate(45deg);
}
.hamburger-menu.is-active .line-2 {
  opacity: 0;
}
.hamburger-menu.is-active .line-3 {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  max-height: 100dvh;
  background: white;
  z-index: 1000;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu-overlay.is-open {
  transform: translateY(0);
}
.mobile-menu-overlay__container {
  width: 100%;
  max-width: 100%;
  padding: 90px 24px 32px;
  margin: 0 auto;
}

.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu-list li {
  border-bottom: 1px solid #E6EDF1;
  position: relative;
}
.mobile-menu-list li a {
  display: block;
  padding: 16px 0;
  color: #003955;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}
.mobile-menu-list li.menu-item-has-children .sub-toggle {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mobile-menu-list li.menu-item-has-children .sub-toggle:after {
  content: "";
  width: 8px;
  height: 5px;
  background: #003955;
  clip-path: polygon(100% 0%, 0 0%, 50% 100%);
  transition: transform 0.3s ease;
}
.mobile-menu-list li.menu-item-has-children.is-active .sub-toggle:after {
  transform: rotate(180deg);
}
.mobile-menu-list li.menu-item-has-children.is-active .sub-menu {
  display: block;
}
.mobile-menu-list .sub-menu {
  display: none;
  list-style: none;
  padding: 0 0 16px 12px;
}
.mobile-menu-list .sub-menu li {
  border: none;
}
.mobile-menu-list .sub-menu li a {
  padding: 10px 0;
  font-weight: 500;
  font-size: 16px;
  color: #003955;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}
.mobile-menu-list .sub-menu li a:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border: 1.5px solid #003955;
  border-radius: 50%;
  transition: border-color 0.3s ease;
}
.mobile-menu-list .sub-menu li a:hover, .mobile-menu-list .sub-menu li a:active {
  color: #FF6600;
}
.mobile-menu-list .sub-menu li a:hover:before, .mobile-menu-list .sub-menu li a:active:before {
  border-color: #FF6600;
}

.mobile-menu-footer {
  margin-top: 24px;
  padding-bottom: 10px;
}
.mobile-menu-footer .mobile-menu-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FF6600;
  color: white;
  padding: 16px;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
}

.site-footer {
  width: 100%;
  padding: 128px 0;
  font-family: "Public Sans", sans-serif;
  position: relative;
  overflow: hidden;
  z-index: 1;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 992px) {
  .site-footer {
    padding: 64px 0;
  }
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url(../images/patroon-top.webp);
  background-size: contain;
  background-repeat: repeat-x;
  transform: rotate(180deg);
  left: 0px;
}
.site-footer__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  gap: 64px;
}
@media (max-width: 992px) {
  .site-footer__container {
    flex-direction: column;
    gap: 40px;
  }
}
.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 250px;
}
.site-footer__tagline {
  color: #003955;
  font-size: 24px;
  line-height: 1.2;
}
.site-footer__tagline .cc-dot {
  color: #FF6600;
}
.site-footer__copyright {
  opacity: 0.7;
  color: #003955;
  font-size: 14px;
}
.site-footer__nav-wrapper {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .site-footer__nav-wrapper {
    gap: 32px;
  }
}
.site-footer__col {
  width: 250px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 992px) {
  .site-footer__col {
    width: 100%;
  }
}
.site-footer__col-title {
  color: #003955;
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}
.site-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.site-footer__list li {
  list-style: none;
  padding: 0px !important;
  margin: 0px !important;
}
.site-footer__list li:before {
  display: none !important;
}
.site-footer__list a {
  text-decoration: none;
  color: #003955;
  font-size: 16px;
  transition: color 0.3s ease;
}
.site-footer__list a:hover {
  color: #FF6600;
  text-decoration: none;
  font-weight: 400;
}
.site-footer__socials {
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
}
.site-footer__social-card {
  width: 48px;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.site-footer__social-card:hover {
  transform: translateY(-4px);
}
.site-footer__social-card:hover .site-footer__social-inner {
  background: rgba(255, 106, 0, 0.2);
}
.site-footer__social-card:hover svg {
  fill: #FF6600;
}
.site-footer__social-inner {
  width: 85%;
  padding: 12px 0;
  background: rgba(255, 106, 0, 0.1);
  border-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease;
}
.site-footer__social-icon {
  width: 16px;
  height: 16px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-footer__social-icon svg {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
.site-footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1rem;
}
.site-footer__contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 1rem;
}
.site-footer__contact-item a, .site-footer__contact-item__address-text {
  text-decoration: none;
  color: #003955;
  font-size: 16px;
  line-height: 1.4;
  font-style: normal;
}
.site-footer__contact-item a:hover {
  color: #FF6600;
  font-weight: 400;
  text-decoration: none;
}
.site-footer__contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-footer__contact-icon svg {
  width: 100%;
  height: auto;
  fill: #FF6600;
}

/* == RESET & BASIS == */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  max-width: 100%;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

body {
  font-family: "Public Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #003955;
  font-size: 1.125rem;
  background: #f7f6ed;
  line-height: 1.6;
}

/* == TYPOGRAFIE == */
h1, h2, h3, h4, h5, h6 {
  color: #003955;
  margin-top: 0;
}

h2 {
  font-size: 64px;
}

a {
  color: #003955;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
a:hover, a:focus {
  font-weight: bold;
  text-decoration: underline;
}

p {
  margin-bottom: 1.5rem;
}

/* == GUTENBERG ALIGNMENTS & LAYOUT == */
:root {
  --scrollbar-width: 0px;
}

/* De alignfull class voor Gutenberg blokken die schermbreed moeten */
.alignfull {
  width: calc(100vw - var(--scrollbar-width));
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: calc(-50vw + var(--scrollbar-width) / 2);
  margin-right: calc(-50vw + var(--scrollbar-width) / 2);
}
.alignfull .wp-block-columns {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Aangepaste breedtes combineren we netjes */
.pagewidth,
.wrapper {
  max-width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 1280px) {
  .pagewidth,
  .wrapper {
    max-width: 1280px;
  }
}

/* Overrule Bootstrap container max-width naar jouw $pagesize */
@media (min-width: 1400px) {
  .container {
    max-width: 1280px;
  }
}
/* ======== KNOP ======*/
.knop {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background-color: #FF6600;
  color: #FFFFFF;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: "Public Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.knop:hover {
  background-color: rgb(229.5, 91.8, 0);
  transform: translateY(-2px);
  color: #FFFFFF;
  text-decoration: none;
  background: #003955;
}
.knop:active {
  transform: translateY(0);
}
.knop--blauw {
  background-color: #003955;
}
.knop--blauw:hover {
  background-color: rgb(0, 39.9, 59.5);
}
.knop--secondary {
  background-color: rgba(255, 102, 0, 0.1);
  color: #FF6600;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.knop--secondary:hover {
  background: white;
  color: #003955;
}

.nopadtop {
  padding-top: 0px !important;
}

.nopadbot {
  padding-bottom: 0px !important;
}

#smooth-content ul {
  list-style: none; /* Verbergt de standaard browser bolletjes */
  padding-left: 0; /* Zorgt dat het netjes links uitlijnt met de rest van de content */
  margin-bottom: 1.5rem; /* Standaard witruimte onder een lijst */
}
#smooth-content ul li {
  position: relative;
  padding-left: 24px; /* Ruimte tussen de linkerkant (waar het bolletje komt) en de tekst */
  margin-bottom: 12px; /* Ruimte tussen de opsommingspunten onderling */
}
#smooth-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em; /* Zorgt dat het bolletje altijd netjes op de eerste regel gecentreerd is, ook als de tekst over meerdere regels loopt */
  transform: translateY(-50%);
  width: 10px; /* Breedte van het bolletje (iets groter dan standaard) */
  height: 10px; /* Hoogte van het bolletje */
  background-color: #BF9154; /* Jouw specifieke kleur */
  border-radius: 50%; /* Maakt er een perfect rondje van */
}

:root {
  --pattern-url: url(../images/patroon-blok.svg);
}

.patroon {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.patroon__acht::before {
  opacity: 0.08 !important;
}
.patroon__twintig::before {
  opacity: 0.2 !important;
}
.patroon::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--pattern-url);
  background-repeat: repeat;
  background-size: cover;
  background-position: center center;
  /* Het masker effect: randen zichtbaar (black), midden onzichtbaar (transparent) */
  -webkit-mask-image: radial-gradient(circle, transparent 10%, black 90%);
  mask-image: radial-gradient(circle, transparent 10%, black 90%);
  /* De opacity bepaalt de maximale kracht aan de buitenkant */
  opacity: 0.15;
  /* Zorgt dat het achter de tekst blijft en kliks niet blokkeert */
  z-index: -1;
  pointer-events: none;
}

/* De herbruikbare utility class voor het achtergrondpatroon */
.metbg {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-image: url(../images/patroon-top.webp);
  background-size: contain;
  background-repeat: no-repeat;
}

.bgfaded {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-image: url(../images/patroon-faded.webp);
  background-size: contain;
  background-repeat: repeat-x;
}
/*# sourceMappingURL=styles.css.map */
