/* ===== Algemene stijlen ===== */
* {
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #002b5c; /* Donkerblauw */
  line-height: 1.6;
}

/* ===== Header + Navigatie ===== */
header {
  background-color: #002b5c; /* Donkerblauw */
  color: white;
  text-align: center;
  padding: 20px 0 0 0;
  border-bottom: 4px solid #d81e05; /* Rood accent */
}

header h1 {
  margin: 0;
  font-size: 2em;
  letter-spacing: 1px;
}

nav {
  margin-top: 10px;
  background-color: #002b5c;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  border-top: 2px solid #d81e05; /* Één duidelijke rode lijn */
}

nav ul li {
  margin: 0 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 12px 0;
  display: inline-block;
  position: relative;
  transition: all 0.2s ease-in-out;
}

/* Hover en active */
nav ul li a:hover {
  text-decoration: underline;
}

nav ul li a.active {
  text-decoration: underline;
}

/* ===== Main content ===== */
main {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

/* ===== Artikelen ===== */
.article {
  border-bottom: 2px solid #d81e05;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.article img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 10px 0;
}

.article h2 {
  color: #002b5c;
}

.article p {
  color: #333;
}

/* ===== Lees meer knop ===== */
.read-more {
  display: inline-block;
  background-color: #d81e05;
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.2s ease-in-out;
}

.read-more:hover {
  background-color: #b51804;
}

/* ===== Footer ===== */
footer {
  text-align: center;
  padding: 20px;
  background-color: #002b5c;
  color: white;
  margin-top: 40px;
  border-top: 4px solid #d81e05;
}

/* ===== Responsief ===== */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav ul li {
    margin: 10px 0;
  }

  main {
    padding: 0 10px;
  }
}
