/* Basisinstellingen */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: system-ui, sans-serif;
  background: #f8f9fa;
  color: #222;
}

/* Paginastructuur */
.pagina {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: white; /* zodat footer niet zweeft op grijs */
}

/* Hoofdstuk neemt alle beschikbare ruimte */
main {
  flex: 1;
  padding: 2em;
}



/* Typografie */
h1, h2 {
  color: #1f2937;
}

/* Knoppen */
button {
  display: inline-block;
  margin: 0.5em 0.5em 0.5em 0;
  padding: 0.6em 1.2em;
  background: #2563eb;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
button:hover {
  background: #1d4ed8;
}

/* Formulieren */
textarea, input[type="email"] {
  width: 100%;
  padding: 0.6em;
  margin-top: 0.5em;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
}
form button {
  margin-top: 1em;
  background: #10b981;
}

/* Info / pre */
#actie-info {
  margin-top: 1em;
  font-style: italic;
}
pre {
  background: #f0f0f0;
  padding: 1em;
  white-space: pre-wrap;
  border-left: 4px solid #2563eb;
}
main {
  flex: 1;
  padding: 2em;
  max-width: 960px;         /* of 800px als je compacter wilt */
  margin: 0 auto;           /* centreert op grote schermen */
  box-sizing: border-box;  /* voorkomt overloop */
}
main p {
  line-height: 1.6;
  margin-bottom: 1.2em;
}
button.actief {
  background-color: #10b981;
  color: white;
  font-weight: bold;
}
.container {
  display: flex;
  gap: 2em;
  margin: 2em auto;
  max-width: 1200px;
}

.kolom {
  flex: 1;
  display: flex;
  flex-direction: column;
}

textarea {
  width: 100%;
  padding: 1em;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
  resize: vertical;
}

.outputvak {
  min-height: 15em;
  padding: 1em;
  background: #f8f9fa;
  border: 1px solid #ccc;
  border-radius: 5px;
  white-space: pre-wrap;
}


.flex-container {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  align-items: flex-start;
}

.invoerblok,
.uitlegblok {
  flex: 1;
  min-width: 300px;
}
.invoerblok, .uitlegblok {
  flex: 1;
  min-width: 300px;
  padding: 1rem;
  box-sizing: border-box;
}

textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
/* Header en footer */
/* Flexibele header met afbeelding links en tekst rechts */
.header-flex {
  display: flex;
  align-items: center;
  justify-content: center;      /* Tekst in het midden */
  background-color: #10a4ab;
  color: white;
  padding: 5px 2px;           /* ↑ meer ruimte rondom (voor vergroting) */
  border-radius: 5px;
  position: relative;
  min-height: 130px;            /* zorgt dat header groter mag worden */
}

.header-afbeelding {
  position: absolute;
  left: 50px;
  width: 185px;                 /* GROTERE AFBEELDING */
  height: auto;
  margin-top: 25px;             /* SCHUIFT IETS NAAR BENEDEN */
}

.header-tekst {
  text-align: center;
}

.header-tekst h1 {
  margin: 0;
  font-size: 2em;
}

.header-tekst p {
  margin: 8px 0 0 0;
  font-size: 1.2em;
}
/* Footer blijft zoals hij is */
footer {
  background-color: #10a4ab;
  color: white;
  padding: 15px;
  text-align: center;
  border-radius: 5px;
}
.menu-lijst {
	
  display: flex;
  justify-content: center;
  gap: 2em;
  list-style: none;
  margin: 0;
  padding: 10px 0;
   background-color: #10a4ab;  /* JOUW GEWENSTE KLEUR */
}
}

.menu-lijst a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.menu-lijst a:hover {
  text-decoration: underline;
}
#site-footer {
  background-color: #28b6c3;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  border-radius: 5px;
}

#site-footer a {
  color: white;
  text-decoration: underline;
  margin: 0 5px;
}

#site-footer a:hover {
  text-decoration: none;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap; /* mobiel: onder elkaar */
  padding: 10px;
  background: #28b6c3;
  color: white;
  text-align: left;
}

.footer-kolom {
  flex: 1;
  min-width: 200px;
}

.footer-kolom a {
  color: white;
  text-decoration: underline;
  font-weight: normal;
}

.footer-kolom a:hover {
  text-decoration: none;
}

.footer-rechten {
  text-align: center;
  background: #28b6c3;
  color: white;
  padding-bottom: 10px;
  font-size: 0.9em;
  margin: 0;
}

