@font-face {
    font-family: 'Reporter-Two';
    font-style: normal;
    font-weight: 500;
    src: local('Reporter-Two'), url('https://www.vandenboschvlees.nl/templates/shaper_helixultimate/fonts/reporter.woff') format('woff');
}

.reporter {
	font-family: 'Reporter-Two';
}

.sectietitel h2 {
	font-family: 'Reporter-Two';
}    

/* Globale instellingen die je makkelijk kunt tweaken */
:root{
  --bg-rotate: -9deg;   /* jouw rotatie */
  --bg-zoom: 130;       /* % van viewport; 110–130 is meestal goed */
}

/* zorg dat de body niets overschildert */
html, body { height: 100%; }
body { background: transparent; }

/* de 'vaste' achtergrondlaag */
body::before{
  content: "";
  position: fixed;              /* blijft vast bij scrollen */
  top: 50%;
  left: 50%;
  width: calc(var(--bg-zoom) * 1vw);
  height: calc(var(--bg-zoom) * 1vh);
  transform: translate(-50%, -50%) rotate(var(--bg-rotate));
  transform-origin: center;

  background-image: url("/images/bg.svg"); /* pas aan */
  background-size: cover;       /* proportioneel vullen */
  background-position: center;
  background-repeat: no-repeat;

  z-index: -1;                  /* achter alle content */
  pointer-events: none;         /* klikbaar blijft je content */
}

/* Alleen desktops */
@media (min-width: 992px) {
  body.ltr.offcanvs-position-right .body-wrapper {
    /* vervang margins door padding */
    padding-top: 50px;
    padding-bottom: 50px;
    box-sizing: border-box; /* zeker weten dat padding netjes telt */
  }
}


/* Alleen voor desktops */
@media (max-width: 992px) {
  body.ltr.offcanvs-position-right .body-wrapper {
    margin: 15px;
	padding-bottom: 15px;
    box-sizing: border-box; /* zeker weten dat padding netjes telt */
  }
}

.layout-boxed .body-innerwrapper {
	box-shadow: 0 0 30px rgba(0,0,0,.4);
	border-radius: 15px;
}

#sp-footer {
	float: none;
	text-align: center;
}

#sp-footer .container-inner {
	border-top: none;
}

.sppb-row-container {
	padding-left: 30px;
	padding-right: 30px;
}

/* ===== Floating WhatsApp button ===== */
:root{
  --wa-green: #25D366;      /* officiële WhatsApp-kleur */
  --wa-size: 64px;          /* klik/touch-doel, pas aan indien gewenst */
  --wa-shadow: 0 6px 20px rgba(0,0,0,.15);
}

.whatsapp-float{
  position: fixed;
  right: clamp(12px, 2vw, 20px);
  bottom: calc(clamp(12px, 2vw, 20px) + env(safe-area-inset-bottom));
  z-index: 9999;
  width: var(--wa-size);
  height: var(--wa-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;                /* witte cirkel */
  border-radius: 50%;
  box-shadow: var(--wa-shadow);
  text-decoration: none;
  outline: none;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}

.whatsapp-float i{
  font-size: calc(var(--wa-size) * .5);  /* icoon schaalt mee */
  line-height: 1;
  color: var(--wa-green);                /* WhatsApp-groen */
}

/* Hover/focus states */
.whatsapp-float:hover,
.whatsapp-float:focus-visible{
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0,0,0,.18);
}

/* Toetsenbord focus ring */
.whatsapp-float:focus-visible{
  box-shadow: 0 0 0 4px rgba(37,211,102,.25), var(--wa-shadow);
}

/* Optionele zachte 'pop-in' bij laden (respecteert reduced motion) */
@media (prefers-reduced-motion: no-preference){
  .whatsapp-float{
    transform: translateY(0) scale(1);
    animation: wa-pop .18s ease-out both;
  }
  @keyframes wa-pop{
    from{ transform: translateY(8px) scale(.98); opacity: 0; }
    to{   transform: translateY(0)  scale(1);    opacity: 1; }
  }
}

/* Donkere achtergrond? Hou cirkel helder genoeg */
@media (prefers-color-scheme: dark){
  .whatsapp-float{
    background: #fff; /* bewust wit voor contrast en herkenning */
  }
}

#sppb-addon-55725653-efcc-4ca6-a42d-1211d660c66a .sppb-addon-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row; /* icoon + tekst naast elkaar */
  text-align: center;
}

#sppb-addon-55725653-efcc-4ca6-a42d-1211d660c66a .sppb-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

#sppb-addon-55725653-efcc-4ca6-a42d-1211d660c66a .sppb-icon {
  margin-right: 10px; /* ruimte tussen icoon en tekst */
  font-size: 24px; /* optioneel: maak icoon groter */
}

#sppb-addon-55725653-efcc-4ca6-a42d-1211d660c66a .sppb-feature-box-title {
  margin: 0;
}