/* Basisreset en typografie */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header fix voor hamburgermenu */
.site-header {
  background-color: #005b96;
  color: #fff;
  position: relative;
  z-index: 1000; /* <-- zorgt dat header boven de hero komt */
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo img {
  height: 50px;
  width: auto;
}

/* Navigatie */
.nav {
  position: relative;
}

/* Optioneel: maak het uitklapmenu iets duidelijker */
.nav-menu {
  background-color: #005b96;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nav-menu {
  list-style: none;
  display: flex;
}

.nav-menu li + li {
  margin-left: 1.5rem;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* Hamburger menu */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  background-color: #fff;
  height: 3px;
  width: 25px;
  border-radius: 2px;
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

.nav-menu_visible {
  display: block !important;
}

/* Hero sectie met bannerafbeelding */
.hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background-image: url('https://plus.unsplash.com/premium_photo-1663045495725-89f23b57cfc5?fm=jpg&ixid=M3wxMjA3fDB8MHxzZWFyY2h8OXx8cGx1bWJpbmd8ZW58MHx8MHx8fDA%3D&ixlib=rb-4.1.0&q=60&w=3000');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  background-color: #005b96;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #004a80;
}

/* Mobiel optimalisatie */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}


/* Diensten sectie */
.diensten {
  padding: 3rem 0;
}

.diensten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.dienst h3 {
  margin-bottom: 0.5rem;
  color: #005b96;
}

.dienst p {
  color: #555;
}

/* Over ons sectie */
.over-ons {
  padding: 3rem 0;
}

.over-ons p {
  margin-top: 1rem;
  color: #555;
}

/* Contact sectie */
.contact {
  padding: 3rem 0;
  background-color: #f9f9f9;
}

.contact-info {
  list-style: none;
  margin-bottom: 2rem;
}

.contact-info li {
  margin-bottom: 0.5rem;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-form button {
  background-color: #005b96;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #004a80;
}

/* Footer */
.site-footer {
  padding: 1.5rem 0;
  text-align: center;
  background-color: #005b96;
  color: #fff;
}

/* Responsive voor mobiel */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #005b96;
    width: 200px;
  }
  .nav-menu li {
    margin: 0;
  }
  .nav-menu li + li {
    margin-top: 1rem;
  }

  .nav-toggle {
    display: block;
  }
}
