/* Basisscherm: mobiel eerst (standaard) */
body {
  font-family: 'Courier New', Courier, monospace;
  background: #f8fef8;
  color: #224422;
  text-align: center;
  padding: 2em;
}

header h1 {
  font-family: Consolas, monospace;
  font-size: 2em;
  margin-bottom: 0.2em;
}

.subtitel {
  font-family: Courier, monospace;
  font-size: 1.5em;
  font-weight: normal;
  margin-top: 0.2em;
  color: #334433;
}

.subtitel.extra-margin {
  margin-top: 2em;
}

footer {
  font-family: 'Courier New', Courier, monospace;
  margin-top: 2em;
  font-size: 0.8em;
  color: #667766;
}

/* Navigatiebalk bovenaan */
nav {
  background-color: #f6f8eb;
  padding: 1em 0;
  position: relative;
  top: 0;
  width: 100%;
  margin-bottom: 0.5em;
}

.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 2em;
}

.menu li a {
  text-decoration: none;
  font-weight: bold;
  color: #224422;
  transition: color 0.3s;
}

.menu li a:hover {
  color: #446644;
}

/* Afbeeldingen responsief maken */
img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: block;
  margin: 2em auto;
}

/* Hero-banner met afbeelding achter titel */
.hero {
  background-image: url('https://www.buitencoaching.com/images/Banner%203.png');
  background-size: cover;
  background-position: center;
  height: 100px;
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  box-sizing: border-box;
}

/* Titeltekst in de banner */
.hero-content h1 {
  font-family: Consolas, monospace;
  font-size: 2em; /* verbeterde grootte op mobiel */
  color: #d7e9b8;
  margin: 0;
}

/* Stijl voor de ondertitel onder de banner */
.subtitel {
  font-family: Courier, monospace;
  font-size: 1.5em;
  color: #334433;
  margin-top: 1em;
  text-align: center;
}

/* Responsief voor grotere schermen */
@media (min-width: 768px) {
  .hero {
    height: 150px; /* iets ruimer op groter scherm */
  }

  .hero-content h1 {
    font-size: 3em; /* groter op breed scherm */
  }

  .subtitel {
    font-size: 2em;
  }

  main p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto;
  }
}

/* Responsief voor kleine schermen (mobiel) */
@media (max-width: 480px) {
  .hero {
    height: 80px; /* compacter op kleine schermen */
  }

  .hero-content h1 {
    font-size: 1.5em; /* goed leesbaar maar niet te groot */
  }
}

.coaches {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
  margin-top: 2em;
}

.coach {
  text-align: center;
  max-width: 400px;
}

.coach img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin: 0 auto 1em;