

* {
      box-sizing: border-box;
    }

    nav {
      background-color: #fff;
      border-bottom: none;
      padding: 1rem;
    }

    .menu-toggle {
      background: none;
      border: none;
      cursor: pointer;
      display: none;
      flex-direction: column;
      justify-content: center;
      height: 2.5rem;
      width: 2.5rem;
      margin-left: auto;
    }

    .menu-toggle span {
      background-color: #000;
      height: 3px;
      margin: 4px 0;
      width: 100%;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      border: 0;
    }
    
    .menu {
  display: flex;
  list-style: none;
  justify-content: flex-end;
  gap: 1.5rem;
  padding: 0;
  margin: 1rem 0 0 0;
}

.menu li a {
  text-decoration: none;
  color: #000;
  padding: 0.5rem;
  display: inline-block;
}

.menu li a:hover,
.menu li a:focus {
  color: #861E75;
  outline: none;
}

/* Hamburger standaard verborgen */
.menu-toggle {
  display: none;
}

/* Responsive gedrag */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 2.5rem;
    width: 2.5rem;
    margin-left: auto;
    cursor: pointer;
  }

  .menu-toggle span {
    background-color: #000;
    height: 3px;
    margin: 4px 0;
    width: 100%;
  }

  .menu {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .menu.show {
    display: flex;
  }

  .menu li {
    width: 100%;
    text-align: center;
  }

  .menu li a {
    width: 100%;
    padding: 0.75rem 0;
    text-align: center;
  }
}
