html {
  scroll-behavior: smooth;
}


/* navbar */
.navbar {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  height: 3rem;

  background-color: white; /* Oranje achtergrond */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: black;
  z-index: 9999;
}

.logo img {
  width: 200px;
  height: auto;
}

.hamburger {
  font-size: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #f98a00;
  font-weight: 600;
}

.close {
  font-size: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #f98a00;
    font-weight: 600;
}

.nav-links {
  display: none;
}

/* overlay menu */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 100%;
  width: 90%;
  height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 2rem;
  transition: left 0.3s ease;
  z-index: 10000;
}

.menu-overlay.active {
  left: 0;
}

/* menu links */
.menu-links {
  list-style: none;
  padding: 0;
  margin-top: 4rem;
}

.menu-links li {
  margin: 1.5rem;
  text-align: center;
}

.menu-links a {
  text-decoration: none;
  color: #000;
  font-size: 2rem;
  font-weight: 550;
  display: flex;
  justify-content: center;
  align-items: center;

  transition: all 0.3s ease;
}

.menu-links a:hover {
  color: #F67011;
  font-weight: bold;
}

/* socials */
.socials {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: auto;
  margin-bottom: 5rem;
}

.socials img {
  width: 30px;
  height: 30px;
}

/* Desktop */
@media (min-width: 1024px) {
  .hamburger, .menu-overlay {
    display: none;
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-links {
    display: flex;
    gap: 1.8rem;
    list-style: none;
    margin-right: 2rem;
  }

  .nav-links li a {
    text-decoration: none;
    padding: 8px;
    border-radius: 8px;
    background: transparent;
    color: black;
    font-family: sans-serif;
    font-size: 1.1rem;
    transition: all 0.3s ease;
  }

  .nav-links li a:hover {
    color: #F67011;
    font-weight: bold;
  }
}