/* Basis styling */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #08abb7;
  color: #222;
}

/* Header */
header {
  background-color: #090cd4;
  color: #fff;
  padding: 1rem;
}

header h1 {
  margin: 0;
}

nav {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

nav .button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  background-color: #1b263b;
  color: #e0e1dd;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: auto;
}

nav .button:hover {
  background-color: #00b4d8;
  color: #fff;
}

/* Section styling */
section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}

section h2 {
  color: #0d1b2a;
  margin-bottom: 1rem;
  text-align: center;
}

section p {
  max-width: 800px;
  text-align: center;
  margin-bottom: 1rem;
}

/* Afbeeldingen lijst */
section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem; /* ruimte tussen afbeeldingen */
}

section ul li {
  text-align: center;
}

section ul li img {
  width: 90%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: block;
  transition: transform 0.2s ease;
}

section ul li img:hover {
  transform: scale(1.02);
}

section ul li strong {
  display: block;
  margin-bottom: 0.5rem;
  color: #1b263b;
}

/* Responsive */
@media (min-width: 481px) {
  nav {
    flex-direction: row;
    gap: 0.5rem;
  }

  nav button {
    width: auto;
  }
}

@media (min-width: 769px) {
  section ul li img {
    width: 70%;
  }
}