/* RESET  */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Lato, Roboto, Arial, sans-serif;
}

html, body {
	
  overflow-x: hidden;
 background: #f8f6f2;
}

/*  NAVBAR */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
 transition: background 0.3s;

  /*overlay friendly */
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.6),
    rgba(0,0,0,0)
  );
}

/* active class (via JS bij scroll) */
.navbar.scrolled {
  background:  #108a2a;
}

.nav-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* logo */
.logo img {
  height: 70px;
	margin-right: 65px;
}

/*MENU */

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
	align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 8px 0;
  display: block;
	 
}

/* underline effect */

.nav-links a::after {
  content: "";
  display: block;
  height: 2px;
  background: #1f7f3b;
  width: 0;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/*  DROPDOWN */

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 180px;
  border-radius: 6px;
  padding: 10px 0;
  display: none;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  z-index: 2000;
}

.dropdown-menu li {
  padding: 8px 20px;
}

.dropdown-menu a {
  color: #333;
}

.dropdown-menu a:hover {
  color: #1f7f3b;
}

/* show dropdown (desktop) */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* ================= BURGER ================= */

.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.burger span {
  width: 26px;
  height: 3px;
  background: white;
  margin: 4px 0;
  transition: 0.3s;
}

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

  .burger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.75);
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 25px 0;
    z-index: 1500;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    padding: 12px 0;
	  
  }

  /* dropdown mobile *//*

  .dropdown-menu {
    position: static;
    background: transparent;
    box-shadow: none;
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    color: #ccc;
  }
}*/
/* =Hero text */

.hero {
  height: 65vh;
  background: url("../img/home/hero.jpg") center / cover no-repeat;
  position: relative;
  color: white;
}


/* hero text */

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.52);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-overlay h1 {
  font-size: 4rem;
  font-weight: 550;
}

/*  <strong>BUSI</strong>NESS UNITS  */

.business-units {
	
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 60px;
  display: flex;
  justify-content: center;
  gap: 25px;
  align-items: center;
	flex-wrap: wrap;
}

.business-units .unit {
  display: flex;
  justify-content: center;
  align-items: center;
}

.business-units .unit img {
  max-height: 90px;
}

/* QR SECTION  */

.qr-section {
	
  padding: 80px 40px;
  display: flex;
  justify-content: center;
	
}

.qr-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
	align-items: center;
}

/* blokken */

.qr-block {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 60px;
}

/* links rechts */

.qr-left {
  display: flex;
  align-items: center;
}

.qr-right {
  display: flex;
  align-items: center;
}

/* DEEL 1  */

.qr-middle .qr-left {
  max-width: 500px;
}

.qr-top img {
  width: 350px;
}

.qr-top .qr-right {
  max-width: 500px;
}


.qr-top h2 {
  color: #1f7f3b;
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 600;
}

/*  DEEL 2  */

.qr-middle .qr-left {
  flex: 1;
}

.qr-middle p {
  font-size: 1.3rem;
  line-height: 1.4;
}

.qr-middle strong {
  color: #1f7f3b;
  font-style: italic;
}

/* slider */

.qr-middle .qr-right {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slider-wrapper {
  width: 400px;
  height: auto;
  overflow: hidden;

  border-radius: 8px;
}

.slider {
  display: flex;
  flex-direction: row;
  transition: transform 0.5s ease;
}

.slider img {
  width: 100%;
  height: auto;
  object-fit: contain;
	flex-shrink: 0;
}

/* dots */

.dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.dots span {
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
}

.dots .active {
  background: #1f7f3b;
}

/*  DEEL 3  */

.qr-bottom {
  display: flex;
  justify-content: center;
	background: #f8f6f2;
}

.qr-button {
 background: #1f7f3b;
  color: white;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
	
}

.qr-button:hover {
  background: #166a30;
}

/*  MOBILE  */

@media (max-width: 768px) {

  .burger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.95);
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 25px 0;
   
transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;

  transition: all 0.3s ease;

  }

  .nav-links.active {
    display: flex;
	  
transform: translateY(0);
  opacity: 1;
  pointer-events: auto;

  }

  .hero-overlay h1 {
    font-size: 2.4rem;
  }

  .qr-block {
    flex-direction: column;
    text-align: center;
  }

  .slider-wrapper {
    width: 100%;
    height: 220px;
  }

  .slider img {
    height: 220px;
  }

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

.footer {
  font-family: Arial, sans-serif;
}

/* TOP SECTION */
.footer-top {
  background: #2d2c2c;
  text-align: center;
  padding: 40px 20px;
}

.footer-top h2 {
  font-size: 32px;
  margin-bottom: 30px;
	color: #fff;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin: auto;
  flex-wrap: wrap;
}

.col {
	color: #fff;
  flex: 1;
  min-width: 250px;
  margin: 10px;
}

.col a {
  color: #00a855;
  text-decoration: bold;
}

/* BOTTOM SECTION */
.footer-bottom {
  background: #2d2c2c;
  color: white;
  text-align: center;
  padding: 25px 10px;
}

.footer-bottom p {
  margin: 5px 0;
}
.vacature-content {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
 background: #f8f6f2;
}

.vacature-content .container {
  max-width: 900px;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

/* titels */

.vacature-content h3 {
  margin-top: 30px;
  margin-bottom: 10px;
	font-size: 20PX;
  color: #1f7f3b;
}
.vacature-content h3 a {
  margin-top: 30px;
  margin-bottom: 10px;
	font-size: 20PX;
  color: #1f7f3b;
	font-weight: 700;

}
.vacature-content a{
  text-decoration: underline;

  font-weight: 500;
	font-size: 18PX;
  color: #333;
}
h3 {
   
	font-size: 20PX;}

/* lijsten */

.vacature-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.vacature-content li {
  margin-bottom: 8px;
}

/* paragrafen */

.vacature-content p {
  margin-bottom: 20px;
}

.apply-btn {
  display: block;
  width: fit-content;
  margin: 80px auto;   
  background: #1f7f3b;
  color: white;
  padding: 16px 40px;  
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 18px;
}


.vacancy-heading {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #1f7f3b;
}


.vacancy-text {
  white-space: pre-line;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
	
}

/* kopstukken */
.vacancy-text strong {
  display: block;
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 25px;
  font-weight: 700;
  color: #1f7f3b;
}

/* bullets (we maken ze straks via JS) */
.vacancy-text ul {
  margin-left: 20px;
  margin-bottom: 20px;
	
}

.vacancy-text li {
  margin-bottom: 8px;
	
}

.section {
	background: #f8f6f2;
  padding: 120px 40px;
  display: flex;
  flex-direction: column;
  gap: 80px;
	
}

/* BLOCK */
.block {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
	
}

/* CARD */
.card {
  background: #fff;
  padding: 60px;
  border-radius: 24px;
  width: 450px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  z-index: 2;
}

/* IMAGE */
.image {
  margin-left: -120px;
}

.image img {
  width: 650px;
  border-radius: 20px;
}

/* TEXT */
.card h2 {
  font-size: 30px;
  margin-bottom: 20px;
	color: #1f7f3b;
}

.card p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
	overflow-wrap: break-word;
}

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

/* BUTTON */
.btn {
  padding: 12px 40px;
  border: 2px solid black;
  border-radius: 50px;
  text-decoration: none;
  color: black;
}

/* REVERSE (voor variatie zoals Coca-Cola) */
.reverse {
  flex-direction: row-reverse;
}

.reverse .image {
  margin-left: 0;
  margin-right: -120px;
}

/* MOBILE */
@media (max-width: 900px) {
  .block {
    flex-direction: column;
  }

  .reverse {
    flex-direction: column;
  }

  .image, .reverse .image {
    margin: 20px 0 0 0;
  }

  .image img {
    width: 100%;
  }

  .card {
    width: 100%;
  }
}

/* ANIMATION */
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.burger span {
  width: 26px;
  height: 3px;
  background: white;
  margin: 4px 0;
  transition: all 0.3s ease; /* 👈 beter */
}
.burger {
  transition: transform 0.2s ease;
}

.burger:active {
  transform: scale(0.9);
}

.burger span {
  transform-origin: center;
}


/*
.promo {
  padding: 120px 40px;
  background: #fff;
}

.promo-grid {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.promo-grid.reverse {
  direction: rtl;
}

.promo-grid.reverse > * {
  direction: ltr;
}
.promo-card {
  background: #fff;
  padding: 48px;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

.promo-card h2 {
  font-size: 2rem;
  margin-bottom: 16px;
	color: #1f7f3b;
}

.promo-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 28px;
}
.promo-image img {
  width: 100%;
  border-radius: 28px;
  display: block;
  object-fit: cover;
}
.btn-outline {
  display: inline-block;
  padding: 12px 32px;
  border: 2px solid #1f7f3b;
  border-radius: 999px;
  color: #1f7f3b;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  background: #1f7f3b;
  color: #fff;
}
@media (max-width: 768px) {
  .promo {
    padding: 80px 20px;
  }

  .promo-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}
*/