/* Add here all your CSS customizations */
/* Footer basis */
.hl-footer {
  background: #111;
  color: #ccc;
  padding: 60px 0 20px;
  font-family: "Inter", sans-serif;
}

/* Layout */
.footer-top .middle-align,
.footer-top .row.middle-align {
  display: flex;
  align-items: flex-start;
}

/* Logo */
.footer-logo {
  margin-right: 50px;
}

.footer-logo img.hl-footer-logo {
  width: 200px;
  max-width: 240px;
  height: auto;
  display: block;
}

/* Kolom titels */
.footer-col h5 {
  color: #424242 !important;
  font-size: 17px;
  margin-bottom: 18px;
  font-weight: 600;
}

/* Lists */
.footer-links,
.footer-info {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li,
.footer-info li {
  margin-bottom: 8px;
  font-size: 14px;
}

/* Links */
.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: 0.2s ease;
}

.footer-links a:hover {
  color: #ffd24c;
  padding-left: 5px;
}

/* Route kolom (menu zonder bolletjes + omgekeerde volgorde) */
.footer-col-route ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column-reverse;
}

.footer-col-route ul li {
  margin-bottom: 5px;
}

/* Info blokken */
.footer-info .info-block {
  margin-bottom: 18px;
  font-size: 14px;
}

.footer-info .info-title {
  font-weight: 700;
  color: #424242 !important;
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.info-block-row {
  display: flex;
  gap: 5px;
}

/* Divider */
.footer-divider {
  border-top: 1px solid #333;
  margin: 30px 0;
}

/* Footer bottom */
.footer-bottom p {
  color: #888;
  font-size: 13px;
}

.footer-bottom a {
  color: #ffd24c;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #fff;
}

/* Header fix */
.header-nav-bar .container {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center;
}

/* Responsive */
@media (max-width: 767px) {

  .footer-top .middle-align,
  .footer-top .row.middle-align {
    flex-direction: column;
    align-items: center;
  }

  .footer-logo {
    margin-bottom: 25px;
    margin-right: 0;
    text-align: center;
  }

  .footer-logo img.hl-footer-logo {
    display: inline-block;
  }
}

@media (max-width: 1024px) {

  .footer-top .middle-align,
  .footer-top .row.middle-align {
    flex-direction: column;
    align-items: center;
  }

  .footer-logo {
    margin-right: 0 !important;
  }

  .tekst-foto-row {
    display: block !important;
    gap: 0 !important;
  }
}

.foto-section {
  padding: 60px 20px;
}

.foto-galerij {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.foto-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  transition: 0.3s;
}

.foto-item img:hover {
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .foto-galerij {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .foto-galerij {
    grid-template-columns: 1fr;
  }
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.85);
}

.lightbox-img-wrapper {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  cursor: grab;
  /* standaard overgang voor terugglijden */
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lightbox-img-wrapper:active {
  cursor: grabbing;
  transition: none;
  /* geen overgang tijdens drag */
}

/* Image */
.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  pointer-events: none;
  /* zodat swipe events op wrapper vallen */
}

/* Close */
.lightbox .close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* Arrows */
.lightbox .prev,
.lightbox .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  color: #fff;
  font-weight: bold;
  font-size: 40px;
  user-select: none;
  transform: translateY(-50%);
}

.lightbox .prev {
  left: 10px;
}

.lightbox .next {
  right: 10px;
}

/* Caption */
.lightbox-caption {
  text-align: center;
  color: #ccc;
  font-size: 18px;
  padding: 10px 0;
}

/* Counter */
.lightbox-counter {
  text-align: center;
  color: #fff;
  font-size: 16px;
  margin-top: 5px;
}

/* Voorkom selectie en slepen in de lightbox */
#lightbox,
#lightbox * {
  user-select: none;
  /* geen tekst selectie */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

#lightbox img {
  -webkit-user-drag: none;
  /* voorkomt dat afbeelding gesleept wordt naar desktop */
  user-drag: none;
}

/* section */
.tekst-foto-secties {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px 20px 20px;
}

.tekst-foto-row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.tekst-foto-row.reverse {
  flex-direction: row-reverse;
}

.tekst-foto-row .tekst-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.tekst-foto-row .tekst {
  flex: 1 1 65%;
}

.tekst-foto-row .foto {
  flex: 1 1 30%;
}


.tekst-foto-row .foto img {
  width: 320px;
  object-fit: cover;
  border-radius: 10px;
  transition: 0.3s;
}

.tekst-foto-row .foto img:hover {
  transform: scale(1.03);
}

.tekst-foto-row .tekst-fifty {
  flex: 1 1 45%;
}

.tekst-foto-row .foto-fifty {
  flex: 1 1 45%;
}

.tekst-foto-row .foto-fifty img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 10px;
  transition: 0.3s;
}

.tekst-foto-row .foto-fifty img:hover {
  transform: scale(1.03);
}

.tekst-foto-secties h1 {
  font-size: 36px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 50px;
}

.tekst-foto-secties {
  font-size: 18px;
  line-height: 1.6;
  text-align: left;
  color: #555;
}

@media (max-width: 768px) {
  .tekst-foto-row {
    flex-direction: column !important;
  }

  .tekst-foto-row .tekst,
  .tekst-foto-row .foto {
    flex: 1 1 100%;
  }

  .tekst-foto-row .foto img {
    width: 100%;
    height: auto;
  }
}

.foto-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.img-container--hero {
  position: relative;
  min-height: 380px;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.img-container--hero .title {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.img-container--hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.15));
  z-index: 1;
}

.dolfijn-bg {
  width: 100%;
  padding-top: 66%;
  background: radial-gradient(circle at 30% 30%,
      #ff6b6b 0,
      #e63946 60%,
      #b5173a 100%);
}

.py-lg {
  padding: 48px 0;
}

.py-xl {
  padding: 72px 0;
}

.mt-md {
  margin-top: 18px;
}

.mb-md {
  margin-bottom: 18px;
}

.mb-lg {
  margin-bottom: 32px;
}

.dolfijn-card {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.dolfijn-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.dolfijn-card__image img {
  display: block;
  width: 360px;
  height: 480px;
}

.dolfijn-card__image img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.dolfijn-card__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: end start;
  padding: 16px;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 20%,
      rgba(0, 0, 0, 0.45) 100%);
}

.dolfijn-card__cta {
  display: inline-block;
  background: var(--button-color);
  /* aardbei rood */
  color: #fff;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.dolfijn-card:hover .dolfijn-card__cta {
  background: var(--button-hover-color);
}

/* Spacing */
.py-1 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.py-2 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.py-3 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.py-4 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.py-5 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.pt-1 {
  padding-top: 5px;
}

.pt-2 {
  padding-top: 10px;
}

.pt-3 {
  padding-top: 15px;
}

.pt-4 {
  padding-top: 30px;
}

.pt-5 {
  padding-top: 60px;
}

.pb-1 {
  padding-bottom: 5px;
}

.pb-2 {
  padding-bottom: 10px;
}

.pb-3 {
  padding-bottom: 15px;
}

.pb-4 {
  padding-bottom: 30px;
}

.pb-5 {
  padding-bottom: 60px;
}

.mt-1 {
  margin-top: 5px;
}

.mt-2 {
  margin-top: 10px;
}

.mt-3 {
  margin-top: 15px;
}

.mt-4 {
  margin-top: 30px;
}

.mt-5 {
  margin-top: 60px;
}

.mb-1 {
  margin-bottom: 5px;
}

.mb-2 {
  margin-bottom: 10px;
}

.mb-3 {
  margin-bottom: 15px;
}

.mb-4 {
  margin-bottom: 30px;
}

.mb-5 {
  margin-bottom: 60px;
}

/* Text */
.text-white {
  color: #ffffff !important;
}

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

/* Display */
.d-flex {
  display: flex !important;
}

.justify-content-center {
  justify-content: center !important;
}

.w-100 {
  width: 100%;
}

.align-items-center {
  align-items: center !important;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-start {
  justify-content: flex-start;
}

.mr-3 {
  margin-right: 15px;
}

.lp-image-container {
  width: 370px;
  height: 280px;
}

.lp-image-container img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.header-nav-bar .container {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center;
}

/* Floating CTA container */
.floating-cta-buttons {
  position: fixed;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

/* CTA knoppen */
.cta-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  color: #ffffff;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 22px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  transition: all 0.25s ease;
}

.cta-btn:hover {
  text-decoration: none;
  color: #e2e2e2;
}

.cta-btn:active {
  text-decoration: none !important;
  color: #e2e2e2 !important;
}

.cta-btn:focus {
  color: #e2e2e2;
  text-decoration: none;
}

.cta-whatsapp {
  background-color: #25d366;
}

.cta-phone {
  background: #45982c;
}

.cta-facebook {
  background: #3f7ac7;
}

.cta-linkedin {
  background-color: #0072b1;
}

.cta-instagram {
  background-color: #e1306c;
}

.cta-youtube {
  background-color: #ff0000;
}

/* Mobile iets kleiner */
@media (max-width: 768px) {
  .cta-btn {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
}

#cookie-consent {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Cookie box styling */
.cookie-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(145deg, #f8f1e4, #ffe7b3);
  color: #333;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  max-width: 350px;
  animation: slideUp 0.5s ease-out;
}

/* Animatie van onder naar boven */
@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Content met icon */
.cookie-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-icon {
  font-size: 24px;
}

/* Tekst */
.cookie-box p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

/* Button styling */
.cookie-box button {
  background: #ff9800;
  border: none;
  color: white;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.cookie-box button:hover {
  background: #fb8c00;
  transform: scale(1.05);
}

/* replace active submenu-items' ugly-blue(?!) by default hover-colors */
.dropdown-menu>.active>a,
.dropdown-menu>.active>a:hover,
.dropdown-menu>.active>a:focus {
  color: #777;
  background-color: #f5f5f5;
}

/* cf7 */
.wpcf7 {
  /*color: #555;*/
  max-width: 720px;
}

.wpcf7 label {
  font-weight: 700;
}

.wpcf7 label em {
  color: #f00;
  font-weight: 400;
  font-style: normal;
}

.wpcf input[type="submit"] {
  font-size: 16px;
}

.wpcf7 div.wpcf7-response-output {
  color: #333;
  margin: 2em 0 1em;
  border-width: 1px;
  padding: 0.5em 1em;
}

.wpcf7 div.wpcf7-validation-errors {
  border-color: #f00;
  background-color: #fee;
}

.wpcf7 div.wpcf7-mail-sent-ok {
  background-color: #eaffea;
}

.wpcf7 .sent>p {
  display: none;
}

/* responsive fixes */
@media (max-width: 991px) {
  #header .header-nav-bar .header-btn-collapse-nav {
    margin: 2px 0 15px 15px;
  }

  .sticky-header-active #header .header-nav-bar .header-btn-collapse-nav {
    margin-top: 14px;
  }

  #header .header-nav-main nav>ul li {
    border-bottom-color: #fff;
  }

  #header .header-column .header-extra-info li:first-child {
    margin-left: 5px;
  }

  #header .header-column .header-extra-info li p {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  #header .header-logo img {
    display: none;
  }
}

@media (max-width: 767px) {
  #header .header-logo img {
    display: none;
  }
}

@media (max-width: 499px) {
  #header .header-logo {
    float: none;
    text-align: center;
  }

  #header .header-logo img {
    margin: -220px;
  }

  #header .header-column .header-extra-info {
    display: none;
  }

  .navbar-collapse {
    background-color: var(--header-color);
  }

  .navbar-nav>li>a {
    color: var(--header-color);
  }
}

/* 2018-07-09 responsive submenu fix */
@media (min-width: 992px) {
  #header .header-nav-main nav>ul>li>a.dropdown-toggle {
    padding-right: 13px;
  }

  #header .header-nav-main nav>ul>li>a.dropdown-toggle:after {
    display: none !important;
  }

  #header .header-nav-main nav>ul li a .fa-caret-down {
    border-left: 1px solid #fff;
  }
}

@media (max-width: 991px) {
  #header .header-nav-main nav>ul>li>a {
    margin-top: 0;
    margin-bottom: 0;
  }

  #header .header-nav-main nav>ul>li>a.dropdown-toggle {
    padding-right: 0;
  }

  #header .header-nav-main nav>ul li a .fa-caret-down {
    right: 0;
    min-width: 36px;
    min-height: 35px;
    background-color: rgba(255, 255, 255, 0.3);
  }
}

/*dolfijn*/

/* #region customizer colors */
:root {
  --header-color: #f4f4f4 !important;
  --header-title-color: #0f0f0f !important;
  --header-item-color: #007cb0;
  --header-hover-item-color: #006d47;
  --header-text-color: #009560;
  --header-hover-text-color: #f10000 !important;
  --footer-color: #007cb0;
  --footer-text-color: #ffffff;
}

#footer a:hover {
  color: var(--footer-text-color) !important;
}

#footer a {
  color: var(--footer-text-color) !important;
}

.header-nav {}

.header-nav nav>ul>li>a {
  background-color: var(--header-color) !important;
  color: var(--header-text-color) !important;
}

.header-nav nav>ul>li>a:hover {
  background-color: var(--header-hover-item-color) !important;
  color: var(--header-hover-text-color) !important;
}

#header .header-btn-collapse-nav {
  background-color: var(--header-hover-item-color) !important;
  color: var(--header-hover-text-color) !important;
}

footer {
  background-color: var(--footer-color) !important;
  color: var(--footer-text-color) !important;
}

/* #endregion */

.logo {
  height: 95px;
}

.img-container {
  position: relative;
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  opacity: 1;
  min-height: 500px;
}

.img-container-news {
  position: relative;
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  opacity: 1;
  min-height: 250px;
  margin-bottom: 50px;
}

.title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* color:white; */
  color: var(--header-title-color);
}

.title>h2 {
  z-index: 5;
  /* color:white; */
  visibility: inherit;
  transition: none 0s ease 0s;
  line-height: 26px;
  border-width: 0px;
  margin: 0px;
  padding: 0px;
  letter-spacing: 0px;
  font-weight: 800;
  font-size: 26px;
  white-space: nowrap;
  min-height: 0px;
  min-width: 0px;
  max-height: none;
  max-width: none;
  opacity: 1;
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  transform-origin: 50% 50% 0px;
}

.sub-title {
  z-index: 5;
  font-size: 11px;
  line-height: 15px;
  transition: none 0s ease 0s;
  border-width: 0px;
  margin: 0px;
  padding: 0px;
  letter-spacing: 0px;
  font-weight: 300;
  white-space: nowrap;
  min-height: 0px;
  min-width: 0px;
  max-height: none;
  max-width: none;
  transform-origin: 50% 50% 0px;
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}

.height-60 {
  height: 60px;
}

/* 2. <li> volledig hoogte */
.nav.nav-pills>li {
  height: 100%;
  display: flex;
  /* zodat de <a> mooi in het midden kan */
  align-items: center;
  /* vertical center */
}

/* 3. <a> vult de hele <li> */
.nav.nav-pills>li>a {
  display: flex;
  /* of block */
  align-items: center;
  height: 100%;
  padding: 0 15px;
  /* horizontale spacing */
  text-decoration: none;
}

.nav-pills>li+li {
  margin-left: 10px !important;
}

.button__cta {
  display: inline-block;
  background: var(--button-color);
  /* aardbei rood */
  color: #fff;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 10px;
  transition: background 0.2s ease;
}

.button__cta:hover {
  background: var(--button-hover-color);
  color: color-mix(in srgb, #fff 85%, black 15%);
  text-decoration: none;
}

.button__cta:active {
  background: color-mix(in srgb, var(--button-hover-color) 75%, black 25%);
  color: color-mix(in srgb, #fff 85%, black 15%);
  text-decoration: none;
}

.py-xxl {
  padding: 150px 0;
}

.hero-content {
  width: 50%;
  border-radius: 10px;
  color: white;
  display: flex;
  background-color: rgba(0, 0, 0, 0.5);
  flex-direction: column;
  justify-content: flex-start;
  padding: 50px 20px 50px 20px;
}

.hero-content p {
  text-align: left;
}

.hero-content .button__cta {
  width: 50%;
}

@media (max-width: 991px) {
  .hero-content {
    width: 100%;
    border-radius: 10px;
    color: white;
    display: flex;
    background-color: rgba(0, 0, 0, 0.5);
    flex-direction: column;
    justify-content: flex-start;
    padding: 25px 10px 25px 10px;
  }

  .section-hero {
    padding-top: 2rem !important;
    /* kleiner dan py-xxl */
    padding-bottom: 2rem !important;
  }

  section.section {
    margin: 15px 0;
    padding: 15px 0;
  }

  .col-md-6 {
    margin-bottom: 5px;
  }

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

  .footer-top .middle-align {
    flex-direction: column;
    align-items: center;
    /* centreert de kolommen horizontaal */
    text-align: center;
    /* centreert de tekst binnen de kolommen */
  }

  .footer-top .footer-col {
    width: 100%;
    max-width: 100%;
  }

  .footer-col-route {
    width: 100%;
    max-width: 100%;
  }

  .info-block-row {
    justify-content: center;
  }

  .section-about .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 768px) {

  /* Verwijder witte ruimte / min-height op mobiel */
  #header {
    min-height: 0 !important;
    height: auto !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  #header .header-body {
    min-height: 0 !important;
  }

  #header .header-logo img {
    top: -22px;
    filter: brightness(0) invert(1);
  }

  #header.header-scrolled .header-logo img {
    top: -5px;
  }
}

.contact-right {
  text-align: left;
}

.contact-image img {
  max-width: 80%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.contact-text {
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
  padding: 0 10px;
}

.wpcf7 label {
  font-weight: 600;
  color: #777777;
  display: block;
  margin-bottom: 6px;
}

.wpcf7 input,
.wpcf7 textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 2px solid #b0b0b0;
  background: #fff;
  transition: all 0.25s ease;
  font-size: 14px;
}

.wpcf7 input[type="submit"] {
  background: var(--button-color);
  color: white;
  border: none;
  font-weight: 600;
  padding: 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wpcf7-not-valid-tip {
  color: var(--button-hover-color-color);
  font-size: 12px;
}

.wpcf7-mail-sent-ok {
  border-radius: 12px;
  background: #ffe6ec;
  color: var(--button-color);
  border: none;
  padding: 10px;
}

.wpcf7 input[type="submit"] {
  background: var(--button-color);
  color: white;
  border: none;
  font-weight: 600;
  padding: 12px 0;
  width: 100%;
  border-radius: 999px;
  cursor: pointer;
  font-size: 16px;
  position: relative;
  transition: all 0.3s ease;
}

.wpcf7 input[type="submit"]:hover {
  background: var(--button-hover-color);
}

.wpcf7-spinner {
  display: none !important;
}

.footer-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-info li.openingstijd-item {
  display: flex;
  justify-content: flex-start;
  /* ruimte wordt niet automatisch verdeeld */
  gap: 40px;
  /* ruimte tussen dag en tijd */
  padding: 4px 0;
}

.footer-info li.openingstijd-item .dag {
  min-width: 80px;
  /* of meer, afhankelijk van je layout */
  font-weight: 600;
}

.footer-info li.openingstijd-item .tijd {
  font-weight: 400;
}

/* Footer - Website instellingen */

#footer .fas {
  color: #fff;
  display: flex;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  text-decoration: none;
}

#footer .fa-facebook {
  background-color: #3f7ac7;
}

#footer .fa-whatsapp {
  background-color: #25d366;
}

#footer .fa-linkedin {
  background-color: #0072b1;
}

#footer .fa-instagram {
  background-color: #e1306c;
}

#footer .fa-youtube {
  background-color: #ff0000;
}

#footer a,
#footer a:hover,
#footer a:focus,
#footer a:active {
  text-decoration: none;
  outline: none;
}

/* Footer menu links dezelfde styling als andere tekst */
.footer-menu li a {
  color: #fff;
  display: block;
  font-size: 14px;
  text-decoration: none;
  line-height: 1.5;
}

.footer-col-route .footer-menu li.menu-item a:hover {
  color: #161616 !important;
  /* belangrijk hier werkt nu echt */
}

.p-card h3 {
  font-size: 18px;
  margin-bottom: 0 !important;
  font-weight: bold;
}

.p-card h4 {
  font-size: 12px;
  color: #6b6b6b;
  margin: 0 0 10px;
}

.p-card p {
  font-size: 15px;
}

.p-card {
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  padding: 24px;
  border-radius: 5px;
  width: 100%;
}

.card-mark {
  width: 50px;
  height: 5px;
  background: #009560;
  border-radius: 25px;
  margin: 0 0 20px;
}

.p-card-link {
  text-decoration: none !important;
  color: inherit !important;
  display: block;
  width: 100%;
}

.p-card-link:hover .p-card {
  transform: translateY(-5px);
  transition: 0.2s ease;
}

.gird {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

@media (max-width: 992px) {
  .gird {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gird {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .p-card-link {
    max-width: 350px;
    width: 100%;
  }

  .p-card {
    width: 100%;
  }
}

.tekst-foto-row {
  display: flex;
  gap: 2rem;
}

.tekst-foto-row .tekst,
.tekst-foto-row .foto {
  width: 100%;
}

@media (min-width: 800px) {

  .tekst-foto-row .tekst,
  .tekst-foto-row .foto {
    width: 50%;
  }
}

.tekst-foto-row.reverse {
  flex-direction: row-reverse;
}

.tekst-foto-row.no-image {
  display: block;
}

.tekst-foto-row.no-image .tekst {
  width: 100%;
}

.feature-box .feature-box-info {
  padding-top: 8px;
}

.foto-rij {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.foto-rij.reverse {
  flex-direction: column;
}

.foto-container {
  display: flex;
  gap: 1rem;
}

F .foto-foto-item {
  flex: 1;
}

.foto-foto-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Mobiel Responsive */
@media (max-width: 800px) {
  .foto-container {
    flex-direction: column;
    display: flex;
    gap: 5rem;
  }

  .hero-content p {
    padding: 0px 20px 0px 20px;
    font-size: 18px;
  }

  .align-items-center {
    align-items: center !important;
    padding: 20px 20px 20px 20px;
  }

  .align-items-center p {
    font-size: 18px;
  }

  .col-md-6 {
    margin-bottom: 30px;
  }

  .tekst-foto-secties {
    padding: 20px 20px 20px 20px;
  }
}

@media (max-width: px) {
  header {
    display: none;
  }
}

/* 23-04-2026 Nieuws Artikelen CSS */

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

@media (max-width: 992px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-page span {
    line-height: 20px;
    margin-left: 5px;
    margin-right: 5px;
  }
}

@media (max-width: 600px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.news-card-hover {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
}

.news-item {
  height: 100%;
  display: flex;
}

.news-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.news-img-container {
  margin: 0;
}

.news-card img {
  height: 225px;
  width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 10px 10px 0 0;
}

.news-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 15px;
}

.news-card .news-title {
  font-size: 25px;
  font-weight: 600;
  text-transform: none !important;
  color: #000000 !important;

  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;

  margin: 0 0 10px 0;
}

.news-card p {
  color: var(--customizer-text-color);

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;

  margin: 0;
}

.news-card-hover:hover {
  transform: translateY(-5px);
  transition: 0.2s ease;
}

.news-card-hover:active {
  transform: translateY(-3px);
  transition: 0.1s ease;
}

.news-card-hover,
.news-card-hover:link,
.news-card-hover:visited,
.news-card-hover:hover,
.news-card-hover:active {
  text-decoration: none !important;
}

.alinea-button {
  margin-top: 30px;
}

.nieuws-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 500px;
  line-height: 10px;
}

.nieuws-tekst {
  flex: 1;
  line-height: 20px;
}

.regelement-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 10px;
}

.regelement-nummer {
  flex: 1;
  max-width: 50px;
}

.project-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 600px;
  line-height: 10px;
}

.project-nummer {
  flex: 1;
  max-width: 50px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.alinea {
  margin-bottom: 3rem;
}

.single-tabel-2 {
  display: grid;
  grid-template-columns: 250px 20px 1fr;
  gap: 10px;
  margin-bottom: 5px;
  align-items: start;
}

.single-tabel-2 p {
  margin: 0;
  align-self: center;
}

.single-tabel-2 span {
  align-self: center;
  justify-self: center;
}

.single-tabel-4 {
  display: grid;
  grid-template-columns: 25% 15% 15% 45%;
  gap: 10px;
  margin-bottom: 5px;
  align-items: start;
}

.single-tabel-4 p {
  margin: 0;
  align-self: center;
}

.single-tabel-4 span {
  align-self: center;
  justify-self: center;
}


@media(max-width: 427px) {
  .single-tabel-2 {
    grid-template-columns: 49% 2% 49%;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #ddd;
  }

  .single-tabel-4 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #ddd;
  }

}

@media(min-width:428px) and (max-width: 1024px) {
  .single-tabel-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 30px;
  }
}