/* 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: 1.5rem;
}

.join-button {
  background-color: #00c3ff;
  color: #000;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.join-button:hover {
  background-color: #00a0d1;
}

/* Navigatie */
nav {
  background-color: #1a1a1a;
  padding: 1rem 0;
  margin: 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;
}

/* Introductietekst */
.intro {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1rem;
  text-align: center;
}

.intro h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.intro p {
  font-size: 1.1rem;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 3rem;
  padding: 1rem;
  background-color: #1a1a1a;
  font-size: 0.9rem;
  color: #bbb;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-left: 2px;
  }
  nav li {
    text-align: center;
  }
  .hero-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .join-button {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}
