@charset "UTF-8";
/* Algemene basis */
html {
  scroll-behavior: smooth;
}
body {
	font-family: 'Montserrat', sans-serif;
	background: #eee;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
/* Container box */
.main-container {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  padding: 16px;
	position: fixed;
	z-index: 999;
	left: 0;
	right: 0;
}

/* Navbar base */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #54b94c;
  padding: 20px;
  border-radius: 10px;
  position: relative;
}

.logo {
  
}
.logo a {
	text-decoration: none;
	color: white;
	letter-spacing: 3px;
	font-size: 24px;
  font-weight: bold;
}

.logo a img {
	width: 300px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  transition: background 0.3s;
}

.nav-links li a:hover {
  background-color: rgba(238,238,238,0.50);
  border-radius: 5px;
}

/* Hamburger icon */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger becomes X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive menu */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    background: #54b94c;
    position: absolute;
    top: 90%;
    left: 0;
    width: 100%;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
  }

  .nav-links.active {
    max-height: 300px; /* genoeg ruimte voor 4 links */
    opacity: 1;
  }

  .nav-links li a {
    display: block;
    width: 100%;
    padding: 16px 20px;
  }

  .nav-links li {
    padding: 0;
  }
	.nav-links li a:hover {
		border-radius: 0px 0px 0px 0px;
	}

  .hamburger {
    display: flex;
  }
	.logo a {
	text-decoration: none;
	color: white;
	letter-spacing: 3px;
	font-size: 20px;
  font-weight: bold;
}
}









.intro-section {
  width: 100%;
  background: #f8f8f8;
	background-image: url("img/wallpaper2.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
  padding: 100px 85px;
}

.intro-container {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch; /* <<< NIET center! dit voorkomt dat .intro-left meezakt */
  gap: 48px;
  min-height: 500px; /* of wat jij wil als minimale hoogte van het blok */
}

.intro-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;  /* <<< zorg dat de content in het midden blijft */
  gap: 20px;
}

.intro-right {
  width: 50%;
  display: flex;
  justify-content: center;     /* horizontaal in kolom */
  align-items: center;         /* verticaal in kolom */
}

.intro-left h2 {
  font-weight: 500;
  color: #000;
}

.intro-left img {
	width: 400px;
}

.intro-left button {
  padding: 12px 16px;
  font-size: 16px;
  background: #54b94c;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.intro-left button a {
	color: white;
}

.intro-left button:hover {
	background-color: #dddddd;
}
.intro-left button a:hover {
	color: #000;
}

.intro-left a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}


/* Afbeelding in rechterkolom links uitgelijnd */


.intro-right img {
  width: 300px;
  object-fit: contain;
}


@media (min-width: 769px) {
	.intro-left button {
		align-self: flex-start;
	}
}
@media (max-width: 768px) {
  .intro-container {
    flex-direction: column;
    gap: 40px;
	  margin-top: 100px;
  }

  .intro-left, .intro-right {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .intro-left img {
    width: 400px;
  }

  .intro-right img {
    margin-bottom: 50px;
  }
}








.about-section {
  width: 100%;
  padding: 80px 80px;
  background: #fff;
}

.about-container {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* H1 boven de columns */
.about-title img {
  width: 400px;
	margin-top: 50px;
}

/* Columns wrapper */
.about-columns {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  align-items: flex-start;
}

/* Column styling */
.about-column {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-width: 280px;
}

.about-column h2 {
  font-size: 28px;
  margin-bottom: -10px;
  color: #333;
}

.about-column p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Responsive stacking */
@media (max-width: 900px) {
  .about-columns {
    flex-direction: column;
  }

  .about-column {
    width: 100%;
  }

  .about-title {
    font-size: 32px;
  }
}







.info-strip {
  width: 100%;
  background: #f0f0f0;
  padding: 40px 80px;
}

.info-strip-container {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.info-strip p {
  font-size: 18px;
  color: #333;
  flex: 1;
  min-width: 240px;
}

.info-strip button {
  padding: 12px 24px;
  font-size: 16px;
  background: #54b94c;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
}
.info-strip button a {
	text-decoration: none;
	color: white;
	font-weight: bold;
}

.info-strip button:hover {
  background: #dddddd;
}
.info-strip button:hover a {
	color: black;
}

/* Responsive stacking */
@media (max-width: 768px) {
  .info-strip-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .info-strip button {
    margin-top: 12px;
  }
}











.gallery-section {
  width: 100%;
  padding: 80px 80px;
  background: #fff;
}

.gallery-container {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Titel boven de galerij */
.gallery-title img {
	width: 400px;
	margin-top: 50px;

}

/* Filter knoppen */
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.filter-btn {
  padding: 10px 20px;
  background: #ddd;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: #54b94c;
  color: white;
}

/* GALLERY GRID */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

/* Gelijkmatige vaste breedte (voor 3 per rij met ruimte ertussen) */
.gallery-item {
  width: calc(33.333% - 16px);
  aspect-ratio: 3 / 2;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

/* Zorg dat afbeelding netjes vult */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

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

/* Overlay op hover */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 18px;
  text-align: center;
  padding: 12px;
}

.gallery-item:hover .overlay {
  opacity: 1;
	cursor: pointer;
}

/* OVERLAY */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 18px;
  text-align: center;
  padding: 12px;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

/* Responsive fixes */
@media (max-width: 768px) {
  .gallery-title {
    font-size: 32px;
  }

  .filter-buttons {
    justify-content: flex-start;
  }
	.gallery-item {
    width: 100%;
  }
}


.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  text-align: center;
  color: white;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.5);
}

.lightbox-content p {
  margin-top: 16px;
  font-size: 18px;
  color: #fff;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 40px;
  color: white;
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 600px) {
  .lightbox-content img {
    max-height: 50vh;
  }

  .lightbox-content p {
    font-size: 16px;
  }

  .lightbox-close {
    top: -30px;
    font-size: 32px;
  }
}











.contact-footer-section {
  width: 100%;
  background: #f0f0f0;
	background-image: url("img/wallpaper2.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
  color: white;
  padding: 80px 16px 40px;
}

.contact-container {
  max-width: 1500px;
  margin: 0 auto 40px auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  text-align: center;
}

.contact-card {
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.contact-card i {
  font-size: 36px;
  color: #ff6a00;
}
.contact-card i img {
	width: 50px;
}

.contact-card h3 {
  font-size: 20px;
  margin-top: 8px;
  color: #333;
}



.contact-card a {
  color: #54b94c;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* Footer bar */
.footer-bar {
  text-align: center;
  border-top: 1px solid rgba(174,174,174,1.00);
  padding-top: 24px;
  font-size: 14px;
  color: #aaa;
}
.footer-bar p {
	color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

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