::-webkit-scrollbar {
  display: none;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  height: 70px;
  width: 70px;
  object-fit: contain;
}

.site-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e9c94;
}

.nav a {
  position: relative;
  text-decoration: none;
  color: #555;
  margin-left: 1.5rem;
  font-weight: 500;
  transition: color 0.3s ease;
  padding-bottom: 4px; /* zorgt voor ruimte onder de tekst */
}

/* De zwarte balk onder elke link (verborgen standaard) */
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000;
  transition: width 0.3s ease;
  border-radius: 2px;
}

/* Hover effect — balkje schuift mooi in */
.nav a:hover::after {
  width: 100%;
}

/* Actieve pagina — balkje blijft zichtbaar */
.nav a.active::after {
  width: 100%;
}

/* Optioneel: actieve link ook iets donkerder maken */
.nav a.active {
  color: #000;
}


/* footer */
.footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 1.5rem 0;
  margin-top: auto;
}

.footer span {
  color: #1e9c94;
  font-weight: 600;
}

