/* Algemene instellingen */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #f8f6f5;
  color: #333;
  line-height: 1.6;
}


header {
background-color: #002646;
color: #fff;
padding: 20px 10%;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
}

header h1 {
  font-size: 1.8rem;
}


/* Hero afbeelding bovenaan */
.hero {
  background: url('assets/Schermafbeelding\ 2025-09-25\ 112749.png') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 150px 20px; /* grote hoogte voor hero */
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* donkere overlay voor contrast */
  z-index: 0;
}

.hero h2, .hero p {
  position: relative;
  z-index: 1;
  margin: 0 auto;
}


.menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

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

.menu a:hover {
  color: #f0a500;
}

/* Secties */
section {
  padding: 60px 10%;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #07dbf7; 
}

section p {
  font-size: 1rem;
  margin-bottom: 15px;
}

/* Footer */
footer {
  background: #002646;
  color: #fff;
  text-align: center;
  padding: 30px 10%;

  ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    margin-bottom: 10px;
  }
  a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

}

 

footer 


footer a:hover {
  color: #f0a500;
}

footer p {
  font-size: 0.9rem;
}



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

  nav button {
    width: auto;
  }
}


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