/* Algemene styling */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #121212;
  color: #f5f5f5;
}

/* Hero (banner + overlay + tekst) */
.hero {
  position: relative;
  width: 100%;
  max-height: 637px;
  overflow: hidden;
}

.banner {
  width: 100%;
  height: auto;
  max-height: 637px;
  display: block;
  object-fit: cover;
  filter: brightness(60%);
}

.overlay {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* Navigatie */
nav {
  background-color: #1a1a1a;
  padding: 1rem 0;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #00c3ff;
}

/* About sectie */
.about {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1rem;
  text-align: center;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 3rem;
  padding: 1rem;
  background-color: #1a1a1a;
  font-size: 0.9rem;
  color: #bbb;
}
