html {
    scroll-behavior: smooth;
  }

  body {
    padding-top: 72px; /* ruimte voor fixed navbar */
  }

  .hero-section {
    /* Achtergrondafbeelding wordt per pagina ingesteld via inline style */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    min-height: 55vh;
    display: flex;
    align-items: center;
    position: relative;
  }

  /* Gradient overlay voor hero sectie */
  .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.45)
    );
    z-index: 1;
  }

  /* Zorg dat content boven de overlay staat */
  .hero-section .container {
    position: relative;
    z-index: 2;
  }

  #kernwaarden h2 {
    font-weight: 400;
  }

  #kernwaarden h5 {
    font-weight: 400;
  }

  .btn-light {
    background-color: #ffffff;
    color: #000000;
    border-color: #000000;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 2px 2px 2px;
    border-bottom: 1px solid black;
    border-right: 1px solid black;
  }

  .alert-info {
    opacity: 0.8;
  }

  .section-image {
    border-radius: 0.75rem;
    object-fit: cover;
    max-height: 320px;
    width: 100%;
  }

  .nav-link,
  .dropdown-item {
    cursor: pointer;
  }

  /* Active nav-link styling */
  .nav-link.active {
    color: #0d6efd !important;
    font-weight: 600;
  }

  .nav-link.active:hover {
    color: #0a58ca !important;
  }

  /* Lange menu-items mogen afbreken, ook op mobiel */
  .dropdown-item {
    white-space: normal;
  }

  .section-title-underline {
    width: 80px;
    height: 3px;
    background-color: #0d6efd;
    border-radius: 999px;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
  }

  /* Dropdown-menu (altijd) */
.navbar .dropdown-menu > li {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.navbar .dropdown-menu > li:last-child { border-bottom: none; }

.navbar .navbar-nav .nav-item:last-child {
  border-bottom: none;
}

/* Links full-block */
.navbar .navbar-nav .nav-link { display:block; padding:.5rem 1rem; }

.footer-container {
  display: flex;
  justify-content: space-around;
}

.footer-container p {
  margin-bottom: 0 !important;
}

#nextatwork {
  text-decoration: none;
  color: #ffffff;
}