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

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

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

/* Kolom titels */
.footer-col h5 {
  color: #fff;
  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;
}

.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: #fff;
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

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

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

.footer-bottom a {
  color: #ff0000;
  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;
    display: flex;
    align-items: center !important;
  }

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

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

.foto-gallerij {
  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-gallerij {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .foto-gallerij {
    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;
}

.tekst-foto-row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
  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 45%;
}

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

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

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

.tekst-foto-secties h1 {
  font-size: 36px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 15px;
  color: var(--header-color) !important;
}

.tekst-foto-secties p:first-of-type {
  font-size: 18px;
  line-height: 1.6;
  text-align: left;
  color: #555;
  margin-bottom: 40px;
}

@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;
}

.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 {
    width: auto;
    max-height: 81px;
    margin: 0 0 7px -3px !important;
  }
}

@media (max-width: 767px) {
  #header .header-logo img {
    width: auto;
    max-height: 88px;
  }
}

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

  #header .header-logo img {
    margin: 0 auto;
  }

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

/* 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);
  }

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

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

/*dolfijn*/

/* #region customizer colors */
:root {
  --header-color: #007cb0;
  --header-title-color: #ffffff;
  --header-item-color: #007cb0;
  --header-hover-item-color: #ffffff;
  --header-text-color: #ffffff;
  --header-hover-text-color: #000000;
  --footer-color: #007cb0;
  --footer-text-color: #ffffff;
}

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

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

.header-nav {
  background-color: var(--header-color) !important;
}

.header-nav nav > ul > li > a {
  background-color: var(--header-item-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: 200px;
}

.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;
}

.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);
}

.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);
}

/* Soft overlay for readability */
.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;
}

/* About placeholder with strawberry vibe */
.strawberry-bg {
  width: 100%;
  padding-top: 66%;
  background: radial-gradient(
    circle at 30% 30%,
    #ff6b6b 0,
    #e63946 60%,
    #b5173a 100%
  );
}

/* Section spacing helpers (match your theme if needed) */
.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;
}

/* Grid cards linking to Ooldse aardbeien */
.strawberry-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;
}
.strawberry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}
.strawberry-card__image img {
  display: block;
  width: 100%;
  height: auto;
}
.strawberry-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%
  );
}
.strawberry-card__cta {
  display: inline-block;
  background: #e61b4d; /* aardbei rood */
  color: #fff;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(230, 27, 77, 0.35);
  transition: background 0.2s ease;
}
.strawberry-card:hover .strawberry-card__cta {
  background: #c91643;
}

.contact-right {
  text-align: left;
}
.contact-image img {
  width: 100%; /* volledig over de lengte van de container */
  height: 350px; /* kleinere hoogte, pas aan naar wens */
  object-fit: cover; /* zorgt dat de afbeelding netjes past zonder vervorming */
  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: #e00f47;
  color: white;
  border: none;
  font-weight: 600;
  padding: 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wpcf7 input[type="submit"]:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(255, 77, 109, 0.3);
}
.wpcf7-not-valid-tip {
  color: #ff4d6d;
  font-size: 12px;
}
.wpcf7-mail-sent-ok {
  border-radius: 12px;
  background: #ffe6ec;
  color: #b3003c;
  border: none;
  padding: 10px;
}
.wpcf7 input[type="submit"] {
  background: #ff4d6d;
  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: linear-gradient(135deg, #e90d48, #ff0044);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(255, 77, 109, 0.3);
}
.wpcf7-spinner {
  display: none !important;
}

.wpcf7 textarea {
  max-height: calc(3 * 2em);
  line-height: 1.5em;
  overflow-y: auto;
  resize: none;
}

.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;
  text-decoration: none;
}

/* 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-whatsapp {
  background: #5fc73f;
}

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

.cta-instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  color: #fff;
}

.cta-whatsapp:hover,
.cta-facebook:hover,
.cta-instagram:hover {
  color: rgb(229, 229, 229) !important;
  text-decoration: none !important;
}
/* 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);
}

#header {
  min-height: 0 !important;
  height: auto !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

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

/* Logo standaard uitlijnen voor desktop */
.header-logo {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .btn,
  .btn-primary,
  .mt-md,
  .mobile-btn {
    margin-bottom: 20px !important;
  }
}

@media (max-width: 768px) {
  .navbar-collapse {
    background-color: var(--header-color);
    /* kleur van header */
  }

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

.footer-col,
.footer-logo {
  text-align: left !important;
}

.footer-info,
.footer-links {
  text-align: left !important;
}

.info-block-row {
  justify-content: left !important;
}

@media (max-width: 1050px) {
  .footer-col,
  .footer-logo {
    text-align: center !important;
  }

  .footer-info,
  .footer-links {
    text-align: center !important;
  }

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

@media screen and (max-width: 1024px) {
  .menu-header-menu-container {
    font-size: 20px;
  }

  section.section {
    padding: 50px 25px;
  }

  .lightbox .close {
    z-index: 9999;
    position: absolute;
    top: 55px;
    right: 10px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
  }
}

@media (max-width: 768px) {
  .contact-image img {
    width: 95%;
  }
}

@media (max-width: 425px) {
  .contact-image img {
    width: 100%;
  }
}
