/* Algemene instellingen */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: #000;
  background-color: #f9f9f9;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Navigatiebalk */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #fff;
  position: relative;
}

.logo img {
  height: 50px;
}

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

.nav-links li a {
  text-decoration: none;
  color: black;
  font-size: 18px;
  padding: 10px;
  transition: background 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
  background-color: #a2673d;
  color: white;
  border-radius: 5px;
}

/* Hamburgerknop */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  margin-left: auto;
}

/* Mobiel gedrag */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 25px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 75%; /* ✨ Zorgt dat het veld precies onder navbar komt */
    left: 0;
    right: 0;
    padding: 20px 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1000;
  }

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

  .nav-links li {
    text-align: center;
    margin: 10px 0;
  }

  .nav-links a {
    color: black;
    font-size: 18px;
    text-decoration: none;
    padding: 10px 20px;
  }

  .nav-links a:hover {
    background-color: #a2673d;
    color: white;
    border-radius: 5px;
  }

  .navbar {
    position: relative;
  }
}

/* Inhoud */
main {
  flex: 1;
}

.container {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
}

.section-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-content h2 {
  color: #8B4513;
  font-size: 32px;
  margin-bottom: 20px;
}

.section-content p {
  font-size: 18px;
  color: #333;
}

/* Footer */
footer {
  background-color: #6c3400;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 16px;
  line-height: 1.6;
}

footer .social-links a {
  color: #ffffff;
  text-decoration: none;
}

footer .social-links a:hover {
  text-decoration: underline;
}

.footer-content {
  margin: 10px 0;
}
