body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #ffe4ec; /* lichtroze */
  color: #333;
}

nav {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: flex-start; /* <-- dit is gewijzigd */
  align-items: center;
  padding: 1rem 2rem;
  box-sizing: border-box;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  padding-left: 3.5rem;
}

nav li {
  white-space: nowrap;
}

nav a {
  text-decoration: none;
  color: #b12367;
  font-weight: bold;
  font-size: 1rem;
}

.praesidium-container {
  padding: 2rem;
}

.praesidium-content {
  display: flex;
  gap: 4rem; /* grotere afstand tussen foto en tekst */
  align-items: flex-start;
  margin-bottom: 2rem;
}

/* Foto links */
.praesidium-photo img {
  width: 700px; /* foto groter maken */
  max-width: 100%; /* zorgt dat hij niet buiten de pagina springt */
  height: auto;
  border-radius: 10px;
  margin-top: 1rem;
}

/* Tekst rechts */
.praesidium-text {
  flex: 1;
  margin-left: 20rem; /* tekst handmatig meer naar rechts schuiven */
  padding-bottom: 5.8rem;
}

.praesidium-text h2 {
  color: #b12367;
  border-bottom: 3px solid #b12367;
  display: inline-block;
  padding-bottom: 0.3rem;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.praesidium-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.praesidium-text li {
  margin: 0.3rem 0;
}

.praesidium-text strong {
  color: #b12367;
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.95rem;
  color: black; /* <-- Aangepast van #333 */
  padding: 1rem;
  border-top: 1px solid #ccc;
  width: 100%;
  box-sizing: border-box;
  position: fixed; /* <-- Nieuwe eigenschap */
  bottom: 0; /* <-- Nieuwe eigenschap */
  background-color: #b12367; /* <-- Aangepast */
  backdrop-filter: blur(6px); /* <-- Nieuwe eigenschap */
}

@media (max-width: 600px) {
  /* De flex-richting aanpassen op mobiel */
  .praesidium-content {
    flex-direction: column; /* Stapel de elementen onder elkaar */
    gap: 1.5rem; /* Minder afstand op mobiel */
    margin-top: 2rem;
  }

  /* De foto aanpassen */
  .praesidium-photo img {
    width: 100%; /* Zorg dat de foto de volledige breedte inneemt */
    height: auto;
    margin-top: 0;
  }

  /* De tekst aanpassen */
  .praesidium-text {
    margin-left: 0; /* Verwijder de handmatige marge */
    padding-bottom: 0;
  }
}
