/* Algemene instellingen voor body en html */
body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

/* Afbeelding boven de header */
.header-image {
  width: 100%;
  height: 470px;
  background-image: url('images/roze-maandag-express2025.jpg'); /* Zorg ervoor dat dit het juiste pad is */
  background-size: cover;
  background-position: center;
  position: relative;
  margin: 0; /* Verwijder eventuele marges rondom de afbeelding */
}

/* Header sectie (titel boven de header) */
.header-section {
  text-align: center;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

/* Stijlen voor navigatie */
nav {
  background-color: #2e2e6a;
  padding: 1rem;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  justify-content: center;
}

nav ul li {
  margin: 0 1rem;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #34c3ef;
}

/* Footer styling */
footer {
  background-color: #2e2e6a;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 4rem;
}

footer a {
  color: #ec1e79;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Styling voor de inhoud secties */
.intro, .praktisch {
  padding: 1.5rem;
}

.praktisch ul {
  list-style: disc;
  padding-left: 20px;
}
