* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  scroll-behavior: smooth;
  font-family: 'Arial', sans-serif;
  color: #fff;
}

nav {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 2em;
  z-index: 1000;
}

nav .logo {
  font-weight: bold;
  font-size: 1.2rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5em;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #ffcc00;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: white;
}

header {
  background: url('images/background.jpg') no-repeat center center/cover;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

section {
  padding: 5em 2em;
  background-color: #111;
  text-align: center;
}

section:nth-of-type(even) {
  background-color: #222;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Over-sectie tekstbreedte */
#about p {
  max-width: 50%;
  margin: 0 auto;
  text-align: left;
  line-height: 1.6;
}

/* Contactformulier */
.contact-form {
  max-width: 50%;
  margin: 2em auto 0;
  display: flex;
  flex-direction: column;
  gap: 1em;
  font-family: inherit;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8em;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  width: 100%;
}

.contact-form button {
  padding: 0.8em;
  background-color: #ffcc00;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #e6b800;
}

.form-message {
  margin-top: 1em;
  font-size: 0.95rem;
  color: #ffcc00;
}

/* Nieuwsbrief formulier */
.newsletter-form {
  max-width: 50%;
  margin: 2em auto 0;
  display: flex;
  flex-direction: column;
  gap: 1em;
  font-family: inherit;
}

.newsletter-form label {
  text-align: left;
}

.newsletter-form input,
.newsletter-form select {
  padding: 0.8em;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  width: 100%;
}

.newsletter-form button {
  padding: 0.8em;
  background-color: #ffcc00;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background-color: #e6b800;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    width: 100%;
    text-align: right;
    display: none;
    padding: 1em 2em;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    margin: 1em 0;
  }

  #about p,
  .contact-form,
  .newsletter-form {
    max-width: 90%;
  }
}

/* === Branding === */
.brand-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.5em 0 1em;
}

.brand-badge {
  width: 25vw;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 2px solid #ffcc00;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
