html, body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background-color: #ececec;
  display: flex;
  height: 100%;
  min-height: 100vh;
  flex-direction: column;
}

.menu-container {
  width: 100%;
  background-color: #333;
  position: relative;  /* ← niet fixed! */
  z-index: 10;
}

.logo{
  position: absolute;
  left: 20px;
  max-width: 100px;
  height: auto;
}
.logo img{
    width: 150px;
    height: auto;
}

/* MENU */
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: #ececec;
  display: flex;
  justify-content: flex-end; /* ✅ menu rechts */
  flex-wrap: wrap;
  height: 100px;
  align-items: center;
}

ul li a {
  display: block;
  color: rgb(0, 0, 0);
  padding: 14px 16px;
  text-decoration: none;
  font-size: 18px;
  transition: background-color 0.3s ease;
}

ul li a:hover {
  background-color: #dadada;
}

/* HEADER */
.header-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.inner-text {
    position: absolute;
    top: 250px;
    left: 10%;
    color: rgb(233, 231, 231);
}
.inner-text h1{
    font-size: 50px;
}
.inner-text p{
  color: rgb(255, 255, 255);
  width: 300px;
  height: 50px;
  background-color: rgb(165, 165, 165);
  text-align: center;
  border-radius: 10px;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  
}

.inner-text a{
   text-decoration: none;
   color: white;
   padding: 14px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}
.inner-text p:hover{
    background-color: #5a5a5a;
}


.header-container img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block; /* voorkomt witruimte onder de afbeelding */
}

h2{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.card-container {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: 40px;
}

.card {
    padding: 20px;
    box-sizing: border-box;
    background: rgb(255, 255, 255);
    border-radius: 10px;
    min-height: 300px; /* bijvoorbeeld */
    width: 300px;
    flex: 0 0 300px;
    transition: transform .2s
}
.card:hover{
    transform: scale(1.1)
}
.card p{
    font-size: 17px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.card img{
    max-width: 200px;
    height: auto;
}
.card a{
    background-color: #d4d4d4;
    text-decoration: none;
    color: #000000;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* verdeelt logo, nav en social */
  align-items: center; /* verticaal centreren */
  padding: 1rem 2rem;
  background-color: #d4d4d4;
  color: #fff;
}

.footer a {
  color: #000000;
  text-decoration: none;
  margin: 0 0.5rem;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-nav {
  display: flex;
  gap: 1rem;
}
.footer-logo{
    color: #000000;
    margin: 0 0.5rem;
}

.google-map iframe { /*googlemaps contact pagina*/
     height: 500px;
     width: 75%;
     left: 0;
     top: 0;
}
.main-para{
  border: 4px solid rgb(219, 219, 219);
  padding: 2%;
  display: flex;
  justify-content: center;
  background-color: white;
}
.folder{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.folder img{
  width: 50%;
  height: 700px;
  object-fit: contain;
  margin-bottom: 40px;
  display: block; /* voorkomt witruimte onder de afbeelding */
}
.main-para2{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  margin: 40px;
  background-color: white;
  border-radius: 10px;
  padding: 2%;
  text-align: center;
}
.wki-card{
  background-color: #b4b4b4;
  border-radius: 10px;
  margin: 20px;
  font-weight: bold;
  font-size: 20px;
  text-align: start;
}
.wki-card ol{
  list-style-type: none;
}
.nav-links ul {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #009688;
}

/* ====== HAMBURGER MENU ====== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  
}
.contact{
  text-align: center;
  font-size: 20px;
  margin: 10px;
  width: 100%;
}

/* --- Mobiel: menu-items onder elkaar en hamburger togglet zichtbaarheid --- */
@media (max-width: 700px) {
  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 25px;
    z-index: 200;
  }
  body{
    max-width: 100%;
    padding-top: 0px; /* 🔹 schuift de content omlaag onder het menu */
    overflow-x: hidden;
  }
  .google-map iframe {
    width: 100%;

  }

  /* standaard: menu verborgen */
  .menu-container ul {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;               /* 🔹 volledige breedte */
    background: #fff;
    padding: 20px 30px;
    margin: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    border-radius: 0;          /* 🔹 geen afgeronde hoeken zodat het mooi aansluit */
    list-style: none;
    min-height: fit-content;
    z-index: 2000;
  }

  /* zichtbaar als actief */
  .menu-container ul.active {
    display: block;
    width: 100%;
  }
  .contact{
    font-size: 15px;
    text-align: left;
  }

  .menu-container ul li {
    display: list-item;
    margin: 10px 0;
  }

  .menu-container ul li a {
    display: block;
    width: 100%;               /* link vult ook het hele vlak */
    color: #000;
    text-decoration: none;
    font-weight: 500;
  }
  .header-container,
  .main-para,
  .main-para2,
  h2 {
    margin-top: 100px; /* 🔹 ruimte onder het menu */
  }

  .logo {
    left: 20px;  /* blijft linksboven */
    top: 15px;
    width: 120px;
  }
  .logo{
    left: 0;
    top:0
  }
  .folder img{
    object-fit: cover;
    width: 100%;
  }
  .main-para2{
    margin: 0;
  }
  .card{
    margin-top: 20px;
    width: 100%;
  }
}





@media (max-width: 900px) {
  .card {
    flex: 1 1 calc(50% - 20px); /* 2 per rij op tablets */
  }
}

@media (max-width: 600px) {
  .card {
    flex: 1 1 100%; /* 1 per rij op mobiel */
    min-height: 150px;
  }
}
