/* Algemene layout */
body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  #background-color: #f6f6f6;
  background: linear-gradient(135deg, #f4f8f4 0%, #c3c7c4 100%);
  color: #333;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 10px 30px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: relative;
  z-index: 10;
}


.site-title {
  font-size: 28px;
  font-weight: bold;
  color: #2e7d32;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  font-size: 1.8em;
  cursor: pointer;
  background: none;
  border: none;
  color: #2e7d32;
}

nav {
  display: flex;
  align-items: center;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

/* Responsive menu */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
    display: none;
    background-color: white;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  }

  nav a {
    padding: 15px;
    display: block;
    width: 100%;
    border-top: 1px solid #eee;
    margin-left: 0;
  }

  nav.active {
    display: flex;
  }
}

/* Hero + intro */
.hero {
	background: url('img/campboer.jpg') no-repeat center center/cover;
  height: 50vh;
  min-height: 250px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
  border-bottom: 4px solid #2e7d32;
   border-top: 4px solid #2e7d32;
}
body.home .hero {
  background: url('img/campboer.jpg') no-repeat center center/cover;
}

body.campings .hero {
  background: url('img/campboer2.jpg') no-repeat center center/cover;
}


.hero .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  top: 0;
  left: 0;
}
.hero .text {
  z-index: 1;
  text-align: center;
}
@media (min-width: 1200px) {
    .h1, h1 {
        font-size: 5.5rem;
		font-weight: bold;
		
    }
	.shadow {
		text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
	}
}
@media (max-width: 1200px) {
    .h1, h1 {
        font-size: 2.0rem;
		font-weight: bold;
		
    }
	.shadow {
		text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
	}
}
.hero-logo {
  max-height: 240px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(2px 2px 4px rgba(0,0,0,0.6));
}
.hero .text p {
  font-size: 1.2em;
}

.intro {
  max-width: 1600px;
  margin: auto;
   margin-bottom: 10px;
   margin-top: 40px;
  padding: 0 20px;
  text-align: center;
}
.intro h1 {
  font-size: 1.4em;
  font-weight: normal;
  line-height: 1.4;
}

/* Layout */
.main-layout {
  display: flex;
  align-items: flex-start;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0px 20px;
  gap: 0px;
}




.camping-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

/* Camping kaarten */
.camping-card {
  position: relative;
  height: 250px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  color: white;
  display: block;
  text-decoration: none;
    border-left: 4px solid #2e7d32;
}
.camping-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}
.camping-card h2 {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  margin: 0;
  font-size: 1.2em;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);

}
.camping-card .info {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(255,255,255,0.9);
  color: #333;
  padding: 10px;
  z-index: 2;
  font-size: 0.95em;
  text-align: center;
}

/* Footer */
footer {
  background: #2e7d32;
  color: white;
  text-align: center;
  padding: 40px 20px;
}
.footer-content {
  max-width: 800px;
  margin: 0 auto;
}
.footer-content a {
  color: #ffffff;
  text-decoration: underline;
}
.footer-content a:hover {
  text-decoration: none;
}
.newsletter-form {
  margin: 20px 0;
}
.newsletter-form input[type="email"] {
  padding: 10px;
  border: none;
  border-radius: 5px;
  max-width: 250px;
  width: 80%;
  margin-bottom: 10px;
}
.newsletter-form button {
  padding: 10px 20px;
  background-color: #ffffff;
  color: #2e7d32;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}
.newsletter-form button:hover {
  background-color: #f0f0f0;
}
.footer-links {
  margin: 15px 0;
}
.socials {
  margin: 20px 0;
}
.socials a {
  color: white;
  font-size: 1.4em;
  margin: 0 10px;
  transition: opacity 0.3s;
}
.socials a:hover {
  opacity: 0.7;
}
.container {
   max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
/* Formulieren */
.form-wrapper {
  max-width: 1600px;
  margin: 40px auto;
  padding: 30px 25px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.form-wrapper h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #333;
  
}
.form-wrapper label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #2e7d32;
}
.form-wrapper input,
.form-wrapper select,
.form-wrapper textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 16px;
  box-sizing: border-box;
}
.form-wrapper textarea {
  resize: vertical;
}
.form-wrapper input[type="submit"] {
  background-color: #2e7d32;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}
.form-wrapper input[type="submit"]:hover {
  background-color: #1b5e20;
}


/* Formulieren Login */
.form-wrapper-login {
  max-width: 1000px;
  margin: 40px auto;
  padding: 30px 25px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.form-wrapper-login h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #333;
  
}
.form-wrapper-login label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #2e7d32;
}
.form-wrapper-login input,
.form-wrapper-login select,
.form-wrapper-login textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 16px;
  box-sizing: border-box;
}
.form-wrapper-login textarea {
  resize: vertical;
}
.form-wrapper-login input[type="submit"] {
  background-color: #2e7d32;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}
.form-wrapper-login input[type="submit"]:hover {
  background-color: #1b5e20;
}
.save-button {
  padding: 10px 20px;
  background-color: #2e7d32;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}
.save-button:hover {
  background-color: #1b5e20;
}

/* Chips voor filters */
.faciliteiten-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.facility-chip {
  display: flex;
  align-items: center;
  background: #e8f5e9;
  border: 1px solid #c8e6c9;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 0.9em;
  cursor: pointer;
  white-space: normal;
}
.facility-chip:hover {
  background: #c8e6c9;
}
.facility-chip input[type="checkbox"] {
  margin-right: 6px;
}

/* Tabs */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
  border-bottom: 2px solid #e0e0e0;
}
.tab-button {
  background-color: #f9f9f9;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  color: #2e7d32;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.tab-button:hover {
  background-color: #e8f5e9;
  border-bottom: 3px solid #81c784;
}
.tab-button.active {
  background-color: #ffffff;
  border-bottom: 3px solid #2e7d32;
  color: #1b5e20;
}

.main-layout {
  display: flex;
  align-items: flex-start;
  max-width: 1600px;
  margin: 0 auto;
  padding: 40px 20px;
  gap: 40px;
}

#filterSidebar {
  width: 310px;
  margin-top: 68px;
  flex-shrink: 0;
  background: #fff;
  border-right: 1px solid #ccc;
  padding: 20px;
  max-height: none;
  overflow-y: auto;
  box-shadow: 2px 0 5px rgba(0,0,0,0.05);
  margin-left: -20px; /* schuift tegen de rand van de browser */
}

.camping-content {
  flex-grow: 1;
  padding: 0 20px;
}

.view-switch {
  display: flex;
  justify-content: flex-end;
  margin: 10px 0 20px 0;
  gap: 10px;
}

.view-switch a {
  padding: 8px 16px;
  background: #2e7d32;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.view-switch a:hover {
  background: #256628;
}
.filter-form {
  text-align: left;
  margin-bottom: 30px;
}
.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #ccc;
  border-top: 4px solid #2e7d32; /* opvallende kleur */
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: none;
  position: absolute;
  top: -60px;
  left: 10px;
  z-index: 1000;
  background: transparent; /* voor veiligheid */
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
#campingGridWrapper,
#campingMapWrapper {
  display: none;
}
#campingGridWrapper.active,
#campingMapWrapper.active {
  display: block;
}


#map {
  height: 600px;
  width: 100%;
}
#filterToggle {
  display: none;
}
@media (max-width: 768px) {
	 .view-switch {
    display: flex;
    justify-content: center; /* of flex-end als je ‘m rechts wilt */
    gap: 10px;
    margin: 20px 0;          /* optionele vertical spacing */
  }
  .view-switch .save-button {
    flex: 1;                /* verdeelt de beschikbare ruimte gelijk */
    text-align: center;     /* label netjes in het midden */
  }
  /* Bestaande regels… */
  .menu-toggle { display: block; }
  nav { /* … */ }
  nav.active { /* … */ }
 #filterToggle {
    display: block;
  }
  /* Nieuwe regels: filter-sidebar */
  .filter-toggle {
    display: inline-block;
    margin: 10px auto;
    padding: 10px 20px;
    background-color: #2e7d32;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    max-width: 200px;
  }

  #filterSidebar {
    position: absolute;
    top: 100px;          /* net onder header */
    left: 55px;
    right: 0;
    background: #fff;
    display: none;      /* standaard verborgen */
    z-index: 20;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  }
  #filterSidebar.active {
    display: block;     /* zichtbaar na toggle */
  }

  .main-layout {
    position: relative; /* voor absolute positioning van sidebar */
  }
}
/* style.css */

/* Groepscontainer */
.facilities-groups {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

/* Per categorie een kaartje */
.facility-category {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  padding: 16px;
  flex: 1 1 calc(50% - 20px); /* 2 kolommen, met gap */
  box-sizing: border-box;
}

/* Categorie-kop */
.facility-category h3 {
  margin: 0 0 12px;
  font-size: 1.2em;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 6px;
  font-weight: bold;
  color: #2e7d32;
}

.category{
  margin: 0 0 12px;
  font-size: 1.2em;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 6px;
  font-weight: bold;
  color: #2e7d32;
}

/* Checkbox-lijstjes in twee kolommen */
.checkbox-list {
  columns: 2;
  column-gap: 20px;
}

/* Stijl voor labels */
.facility-category label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.95em;
  color: #555;
}

.facility-category input[type="checkbox"] {
  margin-right: 6px;
}
.photo-preview { display: inline-block; margin: 10px; position: relative; text-align: center; }
.photo-preview img { display: block; margin-bottom: 4px; width: 150px; height: auto; border: 1px solid #ccc; }
.photo-preview .badge {
  display: inline-block;
  background: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 2px 6px;
  font-size: 0.75em;
  margin: 0 2px;
}
.photo-preview .actions { margin-top: 4px; }

/* Zorg dat elke photo-preview altijd bovenaan uitlijnt */
.photo-preview {
  display: inline-block;      /* of: block binnen een flex container */
  vertical-align: top;        /* essentieel voor inline-block uitlijning */
  margin: 10px;
  position: relative;
}

/* Flex-containers voor de drie lijsten */
#photo-list,
#about-photo-list,
#team-photo-list {
  display: flex;
  flex-wrap: wrap;            /* laat foto’s op een nieuwe regel doorlopen */
  align-items: flex-start;    /* alle items bovenaan uitlijnen */
  justify-content: center;    /* optioneel: horizontaal centreren */
  gap: 10px;                  /* ruimte tussen de items */
}

.fotos-admin{
	max-height:150px;
	
}

.section {
  max-width: 800px;
  margin: 60px auto;
  text-align: center;
  border-left: 4px solid #2e7d32;
}
.section h2 {
  font-size: 1.6em;
  margin-top: 0;
  margin-bottom: 20px;
}
.section img {
  max-width: 100%;

  border-radius: 8px;
  margin-bottom: 20px;
}
.section.contact p {
  margin: 10px 0;
}/* GRID LAYOUT */
.content-grid {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 40px;
  max-width: 1600px;
  margin: 60px auto;
  padding: 0 20px;
}
.col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
/* ================================================
   Twee kolommen voor “Over het bedrijf” en “Over het team”
   de volle breedte van .col-left gebruiken,
   met een bescheiden gap en marge onderaan
   ================================================ */
.content-grid .col-left .subsections {
  display: grid;
  grid-template-columns: 1fr 1fr;       /* exact 2 gelijke kolommen */
  gap: 20px;                            /* ruimte tussen de kolommen én verticaal */
  
  width: 100%;                          /* vul altijd 100% van de col-left */
}

/* Als je toch responsiviteit wilt: op small devices onder elkaar */
@media (max-width: 768px) {
  .content-grid .col-left .subsections {
    grid-template-columns: 1fr;        /* enkel 1 kolom onder elkaar */
    gap: 20px;                         /* idem ruimte tussen secties */
  }
}

.subsections .sub img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* Secties */
.section h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
  text-align: left;
  color: #2e7d32;
}
.section p {
  line-height: 1.6;
}
.section ul {
  list-style: disc inside;
  margin: 0;
  padding: 0;
}
.fac-category {
  margin-bottom: 20px;
}
.fac-category h3 {
  font-size: 1.2em;
  margin-bottom: 8px;
}

/* Contact & kaart */
.col-right .section {
  text-align: left;
}
.col-right .section h2 {
  margin-top: 0;
}
.col-right a {
  word-break: break-all;
}

/* Responsive */
@media (max-width: 900px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
}



.subsections .sub img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 12px;
}
.col-right p {
  margin-bottom: 16px;
  line-height: 1.5;
}
/* Basis voor alle secties */
.section {
max-width: 100%;
    margin: 0;
    padding: 40px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: left;
}

/* Hero zit buiten .section */
main {
  max-width: 1200px;
  margin: 0 auto;
}

/* Maak de Beschrijving sectie full-width en left-align */
.content-grid .description {
  max-width: 100%;    /* geen beperking meer op 800px */
  margin: 0;          /* geen auto-centering meer */
  text-align: left;   /* alles links uitlijnen */
}

/* Zorg dat titel en alinea écht links staan */
.content-grid .description h2,
.content-grid .description p {
  text-align: left;
  
}
.content-grid .description h2 {
	
	color: #2e7d32;
	
}
/* Wrapper voor twee kolommen */
.facilities-flex {
  display: flex;
  gap: 40px;
}

/* Mobiel: 1 kolom */
@media (max-width: 768px) {
  .facilities-flex {
    flex-direction: column;
  }

  .facilities-col {
    width: 100%;
  }
}

/* Iedere kolom even breed */
.facilities-col {
  flex: 1;
}
.facilities-col ul {
  padding-left: 20px;
  margin-top: 5px;
}

.facilities-col h3 {
  margin-bottom: 5px;
  font-size: 1.1em;
  color: #2e7d32;
}
/* Kop én lijst links uitlijnen */
.section.facilities h2,
.facilities-col h3,
.facilities-col ul {
  text-align: left;
}

/* Lijsten stijl */
.facilities-col ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.facilities-col li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 6px;
}

.facilities-col li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #27ae60;
}
/* FACILITEITEN: titel + 2 kolommen */
.section.facilities {
  /* pakt de volledige breedte van de linkerkolom */
  max-width: 100%;
  margin: 0;
  padding: 40px 20px;
  text-align: left;
}

.section.facilities h2 {
  margin-bottom: 20px;
  color: #2e7d32;
}

/* wrapper met exact 2 kolommen */
.facilities-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* per kolom styling */
.facilities-col h3 {
  margin-top: 0;
  font-size: 1.1em;
  #color: #2e7d32;
  margin-bottom: 10px;
}

.facilities-col ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.facilities-col li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 6px;
}

.facilities-col li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #27ae60;
}

/* Zorg dat rechter kolom-secties full-width zijn */
.content-grid .col-right .section {
  max-width: 100%;      /* pak de volle breedte van de 30%-kolom */
  margin: 0;            /* geen auto-centering */
  padding: 40px 20px;   /* zelfde padding als .section links */
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: left;     /* h2 en p’s links uitlijnen */
}



/* H2 binnen rechterkolom altijd links */
.content-grid .col-right .section h2 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #2e7d32;
}

/* iframe in .map sectie netjes responsief */
.content-grid .col-right .section.map iframe {
  width: 100%;
  height: 300px;
  border: none;
}
.equal-img {
  width: 100%;
  height: 450px;         /* vaste hoogte */
  object-fit: cover;     /* snijd bij, zoom in als nodig */
  border-radius: 8px;
}
.equal-img2 {
  width: 100%;
  
  object-fit: cover;     /* snijd bij, zoom in als nodig */
  border-radius: 8px;
}
.section.omgeving {
  background: #fff8e1;
  border-left: 4px solid #2e7d32;
  padding: 20px;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 15px;
  margin-top: 15px;
}
@media (min-width: 768px) {
  .photo-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

.photo-grid a {
  display: block;
  aspect-ratio: 1 / 1; /* Zorgt voor vierkante thumbnails */
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.photo-grid img:hover {
  transform: scale(1.05);
}
/* Styling voor het zoekformulier in de header */
.search-form {
  display: flex;
  align-items: center;
  margin-left: 20px;          /* ruimte tussen logo en zoekveld */
}
@media only screen and (max-width: 768px) {
  .search-form {
      display: flex;
  align-items: center;
  margin-left: 40px; 
  }
}

.search-input {
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.9em;
}

.search-button {
  background: none;
  border: none;
  cursor: pointer;
  color: #2e7d32;             /* zelfde groene kleur als site-title */
  font-size: 1.1em;
  margin-left: 5px;
}

.search-button:hover {
  opacity: 0.8;
}
@media only screen and (min-width: 768px) {
nav .search-form { margin: 0 !important; }
nav .search-form input { margin: 0 !important; }
}
/* ================================
   GROTE ZOEKMODULE OP DE HOMEPAGE
   ================================ */
.search-container_groot {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.search-form_groot {
  display: flex;
  width: 80%;
  max-width: 800px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.search-input_groot {
  flex: 1;
  padding: 1rem 1.2rem;
  font-size: 1.125rem;
  border: none;
  outline: none;
}

.search-input_groot::placeholder {
  color: #aaa;
}

.search-button_groot {
  background-color: #2a7f62;
  color: #fff;
  padding: 1rem 1.5rem;
  border: none;
  font-size: 1.125rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.search-button_groot:hover {
  background-color: #23664e;
}
/* ---------- Mobile (max-width: 600px) ---------- */
@media only screen and (max-width: 600px) {
  .search-container_groot {
    margin: 1rem 0;          /* minder verticale ruimte op mobiel */
    padding: 0 1rem;         /* wat ruimte aan de zijkanten */
    box-sizing: border-box;
  }

  .search-form_groot {
    flex-direction: column;  /* zet input en knop onder elkaar */
    width: 100%;             /* vul de volledige breedte van de parent */
    max-width: none;         /* geen beperking meer op 800px */
    box-shadow: none;        /* optioneel: haal schaduw weg voor eenvoud */
  }

  .search-input_groot,
  .search-button_groot {
    width: 100%;             /* vul 100% binnen de form */
    border-radius: 4px;      /* ronde hoeken rondom */
    box-sizing: border-box;
  }

  .search-input_groot {
    padding: 0.75rem 1rem;   /* iets minder padding op mobiel */
    margin-bottom: 0.5rem;   /* ruimte onder de input vóór de knop */
  }

  .search-button_groot {
    padding: 0.75rem 1rem;   /* knop iets compacter maken */
    text-align: center;      /* zorg dat “Zoeken” netjes gecentreerd is */
  }
}


.section h2 {
  font-size: 1.8em;
  margin-bottom: 0.5em;
  border-bottom: 2px solid #2e7d32;
  padding-bottom: 0.2em;
  color: #2e7d32;
  font-weight: bold;
}
@media only screen and (max-width: 600px) {
.section h2 {
  font-size: 1.3em;
  margin-bottom: 0.5em;
  border-bottom: 2px solid #2e7d32;
  padding-bottom: 0.2em;
  color: #2e7d32;
  font-weight: bold;
}
}
.stars {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.stars input[type="radio"] {
  display: none;
}

.stars label {
  font-size: 1.6em;
  color: #ccc;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0 2px;
}

.stars input[type="radio"]:checked ~ label,
.stars label:hover,
.stars label:hover ~ label {
  color: #FFD700;
}


.stars .static-star {
  color: #FFD700;
}

.stars-wrapper {
  margin: 10px 0;
}
.stars-wrapper {
  margin: 6px 0;
}

button {
  padding: 8px 14px;
  background-color: #2e7d32;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
button:hover {
  background-color: #246429;
}


.review-box h2 {
  font-size: 1.4em;
  margin-top: 0;
  color: #2e7d32;
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 6px 0;
}

.review-label {
  flex: 1;
  font-weight: bold;
}
@media (max-width: 600px) {
  .review-line {
    flex-direction: column;
    align-items: flex-start;
  }

  .review-stars-block {
    width: 100%;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .review-score {
    margin-top: 5px;
    font-size: 0.9em;
  }
}


.review-button {
  background-color: #2e7d32;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  margin-top: 15px;
}
.review-button:hover {
  background-color: #256428;
}
.video-wrapper iframe {
  width: 100%;
  height: 500px;
  max-width: 100%;
  border: none;
}

.review-line {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-label {
  flex: 1;
  font-weight: bold;
}

.review-stars {
  flex: 2;
  display: flex;
  gap: 8px;
  flex: 0.5 0 auto;
  text-align: right;
  white-space: nowrap;
}
.review-stars input[type="radio"] {
  display: none;
}


.review-stars span {
  font-size: 1.5em;
  margin: 0 1px;
}
.review-stars label {
  font-size: 1.5em;
  color: #ccc;
  cursor: pointer;
  transition: color 0.2s;
}

.review-stars input[type="radio"]:checked ~ label,
.review-stars label:hover,
.review-stars label:hover ~ label {
  color: #FFD700;
}
.review-stars-block {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 2;
}

.static-star {
  color: #FFD700;
  font-size: 1.4em;
}

.static-star.grey {
  color: #ccc;
}

.review-score {
  font-size: 0.95em;
  color: #333;
  white-space: nowrap;
}


.review-stars2 {
  flex: 2;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 5px;
}
.review-stars2 input[type="radio"] {
  display: none;
}

.review-stars2 label {
  font-size: 1.5em;
  color: #ccc;
  cursor: pointer;
  transition: color 0.2s;
}

.review-stars2 input[type="radio"]:checked ~ label,
.review-stars2 label:hover,
.review-stars2 label:hover ~ label {
  color: #FFD700;
}


.review-button {
  background-color: #2e7d32;
  color: white;
  border: none;
  padding: 8px 16px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 10px;
}

.review-button.cancel {
  background-color: #999;
}

.review-button:hover {
  background-color: #1b5e20;
}


/* Responsieve hoogte en padding */
@media (max-width: 768px) {
  .video-wrapper iframe {
    height: 220px;
  }
}
@media (max-width: 768px) {
  .facilities-flex {
    display: grid;
    grid-template-columns: 1fr;  /* één kolom */
    gap: 20px;
  }
}

.centered-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.responsive-switch {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  margin: 20px 0;
}



.search-info {
  font-style: italic;
  color: #444;
  margin-right: 20px;
  font-size: 1em;
}

.button-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-left: auto; /* <-- dit duwt de knoppen altijd naar rechts */
}


@media (max-width: 600px) {
  .responsive-switch {
    flex-direction: column;
    align-items: flex-start;
  }
  .search-info {
    margin: 10px 0 0 0;
    order: 2;
  }
  .button-group {
    order: 1;
  }
}
.facility-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e8f5e9;
  border: 1px solid #c8e6c9;
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 0.95em;
  color: #2e7d32;
  cursor: pointer;
  white-space: normal; /* <- fix voor afbrekende woorden */
  max-width: 100%;     /* voorkomt overloop */
  word-break: keep-all;
  line-height: 1.3;
}
.facility-chip input[type="checkbox"] {
  margin: 0;
  flex-shrink: 0;
}


.facility-chip:hover {
  background: #d0e8d2;
}

.facility-chip input[type="checkbox"] {
  margin: 0;
}
.facility-chip input[type="checkbox"] {
  accent-color: #2e7d32; /* voor moderne browsers */
  transform: scale(1.2); /* iets groter maken */
}

/* Alleen blogpagina: stijl <h1> zoals <h2> was */
.section .blog-title,
.blog-title {
  font-size: 1.8em;
  font-weight: bold;
  color: #2e7d32;
  border-bottom: 2px solid #2e7d32;
  padding-bottom: 6px;
  margin-bottom: 15px;
}

.blog-body {
  line-height: 1.6;
  font-size: 1.05em;
  color: #333;
  margin-bottom: 2em;
}

.blog-body p {
  margin-bottom: 1em;
}

.blog-body ul, .blog-body ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}

.blog-body h1, .blog-body h2, .blog-body h3 {
  margin-top: 1.2em;
  margin-bottom: 0.6em;
  color: #2e7d32;
}

.blog-body blockquote {
  border-left: 4px solid #ccc;
  padding-left: 1em;
  margin-left: 0;
  color: #666;
  font-style: italic;
  background: #f9f9f9;
}
.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.table th, .table td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
}
.campboer-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #2e7d32;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.campboer-button:hover {
  background-color: #256028;
}

.title-desktop {
  display: block;
}

.title-mobile {
  display: none;
}

@media (max-width: 768px) {
  .title-desktop {
    display: none;
  }

  .title-mobile {
    display: block;
  }
}

.middle-background {
  position: relative;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), url('/img/background.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 40px 0;
  z-index: 1;
}

/* Transparante witte laag erbovenop */
.middle-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.75); /* transparantie hier regelen */
  z-index: 0;
}

/* Zorg dat inhoud boven de overlay komt */
.middle-background > * {
  position: relative;
  z-index: 1;
}

.share-btn {
  display: inline-block;
  background: #eee;
  color: #333;
  padding: 6px 12px;
  margin-right: 10px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
}

.share-btn.facebook {
  background-color: #3b5998;
  color: white;
}

.share-btn.twitter {
  background-color: #1da1f2;
  color: white;
}

.share-btn:hover {
  opacity: 0.8;
}
.view-switch {
  padding: 10px 20px;
}

#campingCount {
  margin-bottom: 10px;
  font-weight: bold;
}

.button-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.save-button {
  flex: 1;
  min-width: 80px;
  padding: 10px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  border-radius: 6px;
  background-color: #e0e0e0;
}

@media (min-width: 600px) {
  .button-group {
    justify-content: flex-start;
    flex-wrap: nowrap;
  }

  .save-button {
    flex: unset;
    width: auto;
  }
}
.save-button.active {
  background-color: #4CAF50;
  color: white;
  font-weight: bold;
}
/* Dropdown basisstructuur */
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav li {
  position: relative;
}

nav li .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  min-width: 220px;
  padding: 8px 0;
  border-radius: 6px;
}

nav li:hover .dropdown-menu {
  display: block;
}

/* Links in dropdown */
.dropdown-menu li {
  margin: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 8px 16px;
  color: #333;
  text-decoration: none;
  font-size: 0.95em;
  transition: background 0.2s ease;
}

.dropdown-menu li a:hover {
  background: #f5f5f5;
}

/* Pijl toevoegen */
.dropdown-toggle::after {
  content: "";
  border: 5px solid transparent;
  border-top-color: #333;
  margin-left: 6px;
  display: inline-block;
  vertical-align: middle;
}
.dropdown {
  list-style: none !important;
  margin: 0;
  padding: 0;
}
.dropdown li {
  list-style-type: none !important;
}
