
/* =========================================================
   LAYOUT 
========================================================= */
.container {
  max-width: 1400px;
  margin: 60px auto;
  padding: 0 20px;
}

  .centered-title {
  text-align: center;       /* Centreert de tekst horizontaal */
  width: 100%;              /* Neemt de volledige breedte van de container */
  margin-bottom: 40px;      /* Ruimte tussen titel en de grid */
  font-size: 2rem;          /* Grootte van de titel */
  font-weight: 700;         /* Vetgedrukt, past bij h2 stijl */
  color: var(--text-heading2); /* Kleur consistent met headings */
}

.grid {
  display: grid;
  gap: var(--spacing);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid-auto {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.content-sidebar {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: var(--spacing);
  margin: 60px auto;
  max-width: 1400px;
  padding: 0 20px;
}

.main-content {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 30px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); */
}

/* =========================================================
   IMAGES
========================================================= */
.main-content img,
.round img {
  border-radius: var(--radius);
}

.img-cover {
  width: 100%;
  height: 300px;
  object-fit: cover;
}



/* =========================================================
   SIDEBAR
========================================================= */
.sidebar {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.sidebar .widget {
  margin-bottom: 35px;
}

/* TITELS (zelfde als footer) */
.sidebar .widget h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #8fd1ce;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.sidebar .widget h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 2px;
  background: #79abac;
}

/* LIJSTEN */
.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  margin-bottom: 8px;
}

/* LINKS */
.sidebar ul li a {
  color: #333;
  text-decoration: none;
  transition: all 0.25s ease;
}

.sidebar ul li a:hover {
  color: #79abac;
  padding-left: 4px;
}

/* AFBEELDING */
.sidebar .widget img {
  width: 100%;
  border-radius: 12px;
}

/* =========================
   SOCIALS (FIX DEFINITIEF)
========================= */
.sidebar .footer-social {
  display: flex;
  gap: 10px;
}

.sidebar .footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* BELANGRIJK: forceer icon kleur */
.sidebar .footer-social a i {
  color: #fff !important;
  font-size: 14px;
}

.sidebar .footer-social a:hover {
  background: #79abac;
  transform: translateY(-2px);
}
/* =========================================================
   CARDS
========================================================= */
.grid-item {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* .grid-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
} */

.grid-item h2 {
  margin-bottom: 20px;
  font-weight: 500;
  color: #333;
}

.grid-item p {
  line-height: 1.7;
  color: var(--text-main);
  font-weight: var(--text-main-weight);
}

/* =========================================================
   NAVIGATION 
========================================================= */
.nav {
  background: rgba(121, 171, 172, 1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav__wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__container {
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.nav__menu {
  display: flex;
  list-style: none;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: flex;
  align-items: center;
  height: 65px;
  padding: 0 15px;
  color: #fff;
  text-decoration: none;
}

/* =========================================================
   PIJLTJE
========================================================= */
.arrow-icon {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.nav__dropdown:hover .arrow-icon {
  transform: rotate(180deg);
}

/* =========================================================
   DROPDOWN DESKTOP
========================================================= */
.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;

  border-radius: 0 0 12px 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.98);
  transition: 
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s;
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.nav__dropdown-menu li {
  list-style: none;
}

.nav__dropdown-menu .nav__link {
  color: #000;
  height: auto;
  padding: 12px 15px;
  transition: all 0.2s ease;
}

.nav__dropdown-menu .nav__link:hover {
  background: #f2f6f7;
  padding-left: 20px;
}

.nav__dropdown > .nav__link {
  cursor: pointer;
}

/* =========================================================
   HAMBURGER
========================================================= */
.hamburger {
  display: none;
  width: 28px;
  height: 22px;
  position: relative;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #fff;
  left: 0;
  transition: .3s;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }

/* ANIMATIE NAAR KRUIS */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 992px) {

  .hamburger { 
    display: block; 
  }

  /* MENU ANIMATIE */
  .nav__menu {
    position: fixed;
    top: 65px;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    flex-direction: column;

    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;

    transition: 
      opacity 0.3s ease,
      transform 0.3s ease;
  }

  .nav__menu.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* LINKS */
  .nav__link {
    height: auto;
    padding: 15px 20px;
  }

  /* LIJNEN */
  .nav__menu > .nav__item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .nav__menu > .nav__item:last-child {
    border-bottom: none;
  }

  /* DROPDOWN */
  .nav__dropdown-menu {
    position: relative;
    max-height: 0;
    overflow: hidden;

    opacity: 1;
    visibility: visible;
    transform: none;
    background: #fff;

    border-radius: 0 0 12px 12px;

    transition: max-height 0.35s ease, padding 0.3s ease;
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav__dropdown.active .nav__dropdown-menu {
    max-height: 400px;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  /* pijltje */
  .nav__dropdown.active .arrow-icon {
    transform: rotate(180deg);
  }

  /* dropdown items */
  .nav__dropdown-menu .nav__dropdown-item {
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .nav__dropdown-menu .nav__dropdown-item:last-child {
    border-bottom: none;
  }

  .nav__dropdown-menu .nav__link {
    padding-left: 35px;
  }

  /* STAGGER ANIMATIE */
  .nav__menu.show .nav__item {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeUp 0.3s ease forwards;
  }

  .nav__menu.show .nav__item:nth-child(1) { animation-delay: 0.05s; }
  .nav__menu.show .nav__item:nth-child(2) { animation-delay: 0.1s; }
  .nav__menu.show .nav__item:nth-child(3) { animation-delay: 0.15s; }
  .nav__menu.show .nav__item:nth-child(4) { animation-delay: 0.2s; }

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

.email-link, .tel-link {
  color: #007bff;
  text-decoration: none;
}









/* =========================================================
   HERO
========================================================= */
.hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  z-index: -1;
}

.hero-text {
  color: #fff;
  font-size: clamp(2rem, 5vw, 4rem);
}

/* =========================================================
   FOTOMENU
========================================================= */
#fotomenu .fotomenu-wrapper {
  max-width: 1400px;
  margin: 60px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

#fotomenu .fotomenu-left,
#fotomenu .fotomenu-right {
  display: grid;
  gap: 30px;
}

#fotomenu .foto-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

#fotomenu .foto-large {
  grid-column: 1 / -1;
}

#fotomenu .foto-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

#fotomenu img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

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

#fotomenu .foto-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  /* background: rgba(255, 255, 255, 0.85); */
  background: var(--bg-accent1);
  color: #000;
  font-size: 1rem;
  padding: 10px 15px;
  text-align: center;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-sizing: border-box;
  transition: background 0.3s ease;
}

#fotomenu .foto-item:hover .foto-caption {
  background: rgba(255, 255, 255, 1);
}

/* @media (max-width: 992px) {
  #fotomenu .fotomenu-wrapper { grid-template-columns: 2fr; gap: 30px; margin: 50px auto; }
  #fotomenu .foto-row { grid-template-columns: 1fr; }
} */

@media (max-width: 600px) {
  #fotomenu .fotomenu-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 50px auto;
  }

  #fotomenu .foto-row {
    grid-template-columns: 1fr;
  }
}




/* =========================================================
    BLOK21
 ========================================================= */
/* Full width section */
.blok21-section {
  width: 100%;
  background: rgba(121, 171, 172, 1);
  padding: 80px 20px;
  box-sizing: border-box;
}

/* Center container */
.blok21-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
}

/* LEFT */
.blok21-left {
  background: var(--bg-sand);
  padding: 60px;
  flex: 1.5;
  min-height: 350px;
  border-radius: 24px;
  z-index: 1;
}

/* TEXT */
.blok21-left h2 {
  color: #333;
  font-size: 3.5em;
  margin-bottom: 20px;
}

.blok21-left p {
  color: #ffffff;
}

/* RIGHT */
.blok21-right {
  flex: 1;
  margin-left: -80px;
  z-index: 2;
}

/* IMAGE */
.blok21-right img {
  width: 100%;
  height: 520px;
  object-fit: cover;

  border: 10px solid #fff;
  box-sizing: border-box;
  border-radius: 18px;

  display: block;

  box-shadow:
    0 18px 45px rgba(0,0,0,0.20),
    0 2px 10px rgba(0,0,0,0.10);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .blok21-container {
    flex-direction: column;
  }

  .blok21-left {
    padding: 60px 20px 40px 20px;
    position: relative;
    z-index: 1;
  }

  .blok21-right {
    margin-left: 0;
    margin-top: -20px; /* subtiele overlap */
    position: relative;
    z-index: 2;
  }

  .blok21-right img {
    height: 380px;
  }
}

/* =========================================================
      PARALLAX AFGERONDE HOEKEN + OVERLAY
   ========================================================= */
.parallax-container {
    position: relative;
    border-radius: 12px;  
    overflow: hidden;     
    height: 500px;        
}

.parallax-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
    z-index: 0;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 1;
}

.parallax-inner {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    z-index: 2;
    color: #fff;
}

.parallax-text h2,
.parallax-text p {
    margin: 0;
    padding: 0;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

/* Subtiel hover zoom effect */
.parallax-container:hover .parallax-image {
    transform: scale(1.03);
}

/* =========================================================
   QUINTEN OVERLAY
   ========================================================= */
.parallax-overlay-text {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 100%;
    pointer-events: none;
    z-index: 3;
    display: flex;
    align-items: flex-end;
}

.overlay-inner {
    position: relative;
    width: 100%;
    height: 120px; /* hoogte van het zichtbare deel */
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.overlay-word {
    position: absolute;
    bottom: -50%; /* halve tekst zichtbaar */
    left: 0;
    font-size: clamp(6rem, 12vw, 11rem);
    font-weight: 900;
    color: rgba(255,255,255,0.25); /* transparantie aanpassen hier */
    letter-spacing: 4px;
    line-height: 1;
    white-space: nowrap;
    user-select: none;
}
@media (max-width: 768px) {
    .overlay-inner {
        height: 80px;
    }
    .overlay-word {
        font-size: clamp(4rem, 10vw, 8rem);
        bottom: -40%;
    }
}



/* =========================================================
   FOOTER
========================================================= */
.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 70px 20px 30px;
  border-top: 1px solid #333;
}

/* GRID */
.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

/* KOLOMMEN */
.footer-col h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #8fd1ce;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 2px;
  background: #79abac;
}

/* TEXT */
.footer-col p {
  color: #bbb;
  line-height: 1.6;
}

/* LIJSTEN */
.footer-col ul {
  list-style: none;
  padding: 0;
}

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

/* LINKS */
.footer-col a {
  color: #ddd;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-col a:hover {
  color: #79abac;
  padding-left: 4px;
}

/* SOCIALS */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50% !important;
  background: #2a2a2a;

  display: flex;
  align-items: center;
  justify-content: center;

  transform: translateY(0);
  transition: all 0.3s ease;
}

.footer-social a i,
.footer-social a svg {
  font-size: 16px;
  line-height: 1;
  color: #fff;
  display: block;
}

/* hover */
.footer-social a:hover {
  background: #79abac;
  transform: translateY(-3px);
}

.footer-social a:hover i,
.footer-social a:hover svg {
  color: #fff;
}
/* OPENINGSTIJDEN */
.opening-hours li {
  display: grid;
  grid-template-columns: 40px 1fr;
  color: #ccc;
}

/* CONTACT */
.contact-list li {
  margin-bottom: 8px;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #333;
  color: #888;
  font-size: 0.9rem;
}

/* =========================
   TABLET
========================= */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* =========================
   MOBILE (BELANGRIJK)
========================= */
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

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

  .opening-hours li {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .contact-list li {
    display: flex;
    justify-content: center;
  }
}

/* =========================================================
   LAZYLOAD
========================================================= */
.lazy {
  opacity: 0;
  transform: translateY(10px);
  filter: blur(5px);
  transition: .6s;
}

.lazy.loaded {
  opacity: 1;
  transform: none;
  filter: none;
}

/* =========================================================
   PRIVACYWIRE
========================================================= */


.privacywire {
  z-index: 10000 !important;
}

.privacywire-banner,
.privacywire-options, .privacywire-message {
    background-color: #ffffff !important; /* of een lichtgrijs voor contrast */
    color: #000000 !important;
}

.privacywire-banner,
.privacywire-options, .privacywire-message p,
.privacywire-banner,
.privacywire-options, .privacywire-message span,
.privacywire-banner,
.privacywire-options, .privacywire-message div {
    color: #000 !important;
}



.privacywire-buttons {
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 15px;
  width: 100%;
}

.privacywire-buttons button {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.privacywire-buttons .allow-all {
  background-color: #0b5ed7;
  color: white;
  border: none;
}

.privacywire-buttons .allow-all:hover {
  background-color: #0a53be;
}

.privacywire-buttons .allow-necessary {
  background-color: white;
  color: #0b5ed7;
  border: 2px solid #0b5ed7;
}

.privacywire-buttons .allow-necessary:hover {
  background-color: #f0f8ff;
}

.privacywire-buttons .choose {
 background-color: white;
color: #0b5ed7;
border: 2px solid #0b5ed7;
}

.privacywire-buttons .choose:hover {
background-color: #f0f8ff;
}


.privacywire-buttons .save {
 background-color: white;
color: #0b5ed7;
border: 2px solid #0b5ed7;
}

.privacywire-buttons .save:hover {
background-color: #f0f8ff;
}


/* Verberg de standaard checkbox */
.privacywire-text input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
    border: 2px solid #0072C6; /* Cookiebot-blauw */
    width: 20px;
    height: 20px;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
    position: relative;
    margin-right: 8px;
    vertical-align: middle;
    transition: all 0.2s ease-in-out;
}

/* Als hij aangevinkt is */
.privacywire-text input[type="checkbox"]:checked {
    background-color: #0072C6; /* blauw */
    border-color: #0072C6;
}

/* Voeg een wit vinkje toe */
.privacywire-text input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Voor disabled checkboxen */
.privacywire-text input[type="checkbox"]:disabled {
    background-color: #eee;
    border-color: #ccc;
    cursor: not-allowed;
}












/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 992px) {
  

  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .sidebar {
    display: none;
  }
  
  .content-sidebar {
    grid-template-columns: 1fr;
  }
  
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .grid-2,
  .grid-3,
  .grid-4,
  .fotomenu-grid,
  .foto-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}