/* == SIZES == */
/* == FONTS == */
/* == KLEUREN == */
/* == EFFECTS == */
body.menu-open header .navbar-brand {
  display: none;
}
body.menu-open header.scroll .container {
  box-shadow: none !important;
}
body.menu-open header .menucontainer {
  box-shadow: none !important;
}
body.menu-open .wrapper:before {
  position: fixed;
  height: 100%;
  width: 100%;
  background: black;
  opacity: 0.5;
  z-index: 99999;
  content: "";
  left: 0px;
  top: 0px;
  z-index: 4;
}

header {
  position: fixed;
  margin-top: 15px;
  width: 100%;
  z-index: 1000;
  transition: 0.4s;
}
@media only screen and (max-width: 920px) {
  header.scroll .container {
    justify-content: flex-end;
    background: #FFFFFF;
    box-shadow: 0px 8px 40px rgba(0, 0, 0, 0.05), 0px 1px 2px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
  }
  header.scroll .container .menucontainer {
    box-shadow: none !important;
  }
}
header .container {
  display: flex;
  position: relative;
  justify-content: center;
  width: 100%;
  padding: 10px;
  transition: 0.4s;
}
@media only screen and (max-width: 920px) {
  header .container {
    justify-content: flex-end;
  }
}
header .container .navbar-brand {
  position: absolute;
  left: 0px;
  z-index: 1001;
}
header .container .navbar-brand img {
  transition: 0.4s;
}
header .container .navbar-brand img:hover {
  transform: rotate(-15deg);
}
@media only screen and (max-width: 920px) {
  header .container .navbar-brand img {
    height: 66px;
    margin-left: 10px;
  }
}
header .container .menucontainer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  width: auto;
  padding: 10px;
  background: #FFFFFF;
  box-shadow: 0px 8px 40px rgba(0, 0, 0, 0.05), 0px 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  z-index: 1001;
}
header .container .menucontainer .hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
  width: 45px;
  height: 45px;
  position: relative;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
header .container .menucontainer .hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #550F0F;
  transition: 0.3s ease-in-out;
  border-radius: 2px;
}
header .container .menucontainer .hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
header .container .menucontainer .hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
header .container .menucontainer .hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
header .container .menucontainer .desktop-only {
  padding: 0px;
  margin: 0px;
  list-style: none;
  display: flex;
}
header .container .menucontainer .desktop-only li {
  margin: 0px 3px;
  padding: 0px;
}
header .container .menucontainer .desktop-only li.home a {
  padding: 19px 20px;
}
header .container .menucontainer .desktop-only li a {
  padding: 18px 20px;
  display: block;
  color: #550F0F;
  text-decoration: none;
  font-weight: bold;
  line-height: 100%;
  transition: 0.4s;
}
header .container .menucontainer .desktop-only li.current_page_item a, header .container .menucontainer .desktop-only li a:hover {
  background: rgb(246, 236, 228);
  border-radius: 16px;
}
header .container .menucontainer .desktop-only li.contact a {
  background: rgb(250, 180, 0);
  border-radius: 16px;
  transition: 0.4s;
}
header .container .menucontainer .desktop-only li.contact a:hover {
  background: #550F0F;
  color: rgb(250, 180, 0);
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  border-radius: 0 0 16px 16px;
  background: #FFFFFF;
  z-index: 999;
  overflow-y: auto;
  padding-top: 100px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.mobile-nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.mobile-nav-overlay .mobile-nav-content {
  padding: 10px;
}
.mobile-nav-overlay .mobile-nav-content ul {
  list-style: none;
  padding: 0;
}
.mobile-nav-overlay .mobile-nav-content ul li {
  margin-bottom: 10px;
}
.mobile-nav-overlay .mobile-nav-content ul li a {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  color: #550F0F;
  text-decoration: none;
  padding: 15px;
}
.mobile-nav-overlay .mobile-nav-content ul li.contact a {
  background: rgb(250, 180, 0);
  border-radius: 16px;
  justify-content: center;
  margin-top: 20px;
}

@media (max-width: 900px) {
  .mobile-nav-overlay {
    display: block;
  }
  header .container .menucontainer .desktop-only {
    display: none !important;
  }
  header .container .menucontainer .hamburger {
    display: flex;
  }
}
.wave-container {
  position: relative;
  width: 100%;
  line-height: 0;
  overflow: hidden;
  background: transparent;
}
.wave-container svg {
  position: relative;
  display: block;
  width: 100%;
  height: 250px;
}
.wave-container .wave-path {
  animation: gentleWave 5s ease-in-out infinite alternate;
}

@keyframes gentleWave {
  0% {
    d: path("M0,0 L1440,0 L1440,160 C1200,60 800,280 0,160 Z");
  }
  100% {
    d: path("M0,0 L1440,0 L1440,160 C1100,120 900,220 0,160 Z");
  }
}
footer {
  background: white;
  width: 100%;
  overflow: hidden;
  padding-bottom: 100px;
  /* Hover state */
}
footer p {
  font-size: 14px;
  margin: 10px 0;
}
footer li, footer ul {
  list-style: none;
}
footer a {
  text-decoration: none;
}
footer .social-link {
  display: inline-block;
  margin-right: 5px;
  color: #550F0F;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease; /* Transitie voor kleur en beweging */
}
footer .social-link .bg-rect {
  fill: currentColor;
  fill-opacity: 0.1;
  transition: fill-opacity 0.3s ease, fill 0.3s ease;
}
footer .social-link .icon-path {
  fill: currentColor;
  transition: fill 0.3s ease;
}
footer .social-link:hover {
  color: #FFFFFF;
  transform: translateY(-4px); /* De 'sprong' omhoog */
}
footer .social-link:hover .bg-rect {
  fill: #550F0F;
  fill-opacity: 1;
}

@font-face {
  font-family: "Milkstore 02 Rough";
  src: url("fonts/subset-Milkstore02-Rough.woff2") format("woff2"), url("fonts/subset-Milkstore02-Rough.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Milkstore 02 Textured";
  src: url("fonts/subset-Milkstore02-Textured.woff2") format("woff2"), url("fonts/subset-Milkstore02-Textured.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: display;
}
@font-face {
  font-family: "Omnes";
  src: url("fonts/subset-Omnes-Semibold.woff2") format("woff2"), url("fonts/subset-Omnes-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
html {
  scroll-behavior: smooth;
}

html, body {
  max-width: 100%;
  padding: 0px;
  margin: 0px;
}

body {
  font-family: "omnes-pro";
  color: #550F0F;
  font-size: 19px;
  background: rgb(246, 236, 228);
}
body section, body p {
  line-height: 160%;
}
body section a, body p a {
  color: #550F0F;
}
body section a:hover, body p a:hover {
  font-weight: bold;
  text-decoration: none;
}

h1, h2 {
  opacity: 0;
  will-change: transform, opacity, filter;
}

/* Maak ze weer zichtbaar zodra ze in de WordPress editor staan */
.editor-styles-wrapper h1,
.editor-styles-wrapper h2 {
  opacity: 1 !important;
}

h1, h2, h3 {
  font-family: "Milkstore 02 Rough";
  color: #550F0F;
}

.milkex h1 {
  font-family: "Milkstore 02 Textured";
}

h1 {
  font: 500 clamp(50px, 8vw, 96px)/1 "Milkstore 02 Rough";
}

h2 {
  font: 500 clamp(45px, 8vw, 64px)/1.1 "Milkstore 02 Rough";
}

h3 {
  font: 500 clamp(35px, 8vw, 48px)/1.1 "Milkstore 02 Rough";
}

.smallhead {
  font: 500 clamp(25px, 7.294px + 2.059vw, 32px)/1 "Milkstore 02 Rough";
}

:root {
  --scrollbar-width: 0px; /* Default waarde */
}

/* Zorg dat deze regels specifiek voor Spectra containers gelden die full-width zijn */
.wp-block-uagb-container.alignfull {
  box-sizing: border-box !important; /* Zorgt dat padding binnen de 100vw valt */
  width: calc(100vw - var(--scrollbar-width));
  max-width: calc(100vw - 8px);
  margin-left: calc(-50vw + var(--scrollbar-width) / 2) !important;
  margin-right: calc(-50vw + var(--scrollbar-width) / 2) !important;
  left: 50%;
  right: auto; /* Spectra zet soms vreemde right values, reset deze */
}

.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);
  box-sizing: border-box;
}

.alignfull .wp-block-columns {
  max-width: 1280px;
  margin: auto;
}

@media screen and (min-width: 1280px) {
  .pagewidth,
  .container,
  .wrapper {
    width: 1280px;
    margin: auto;
    max-width: 100%;
  }
}
@media screen and (max-width: 1280px) {
  .pagewidth,
  .container,
  .wrapper {
    max-width: 90%;
    margin: auto;
  }
}
.wrapper {
  padding-top: 175px;
}

@media only screen and (max-width: 920px) {
  .single-bhsproduct .wrapper {
    padding-top: 55px !important;
  }
  .g-5, .gy-5 {
    --bs-gutter-y: 0rem !important;
    --bs-gutter-x: 0rem !important;
  }
}
.witblok:hover {
  background: #FFFFFF;
  box-shadow: 0px 16px 40px rgba(0, 0, 0, 0.1) !important;
  border-radius: 24px;
  cursor: pointer;
}
.witblok:hover .afbeelding img {
  transform: rotate(-15deg) scale(1.4);
}
/*# sourceMappingURL=styles.css.map */
