/* --- HEADER --- */
.site-header {
  background: #000;
  border-bottom: 2px solid #ff3d00;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .logo img {
  max-height: 50px;
  left: -10px;
}

.main-nav {
  display: flex;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 25px;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #ff3d00;
  transition: width 0.3s;
}

.main-nav a:hover {
  color: #ff3d00;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a.active {
  color: #ff3d00;
}

/* Hamburger knop */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

/* --- RESPONSIVE --- */

/* Tablet */
@media (max-width: 1024px) {
}

/* Telefoon */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 30px;
    background: #000;
    padding: 10px;
    border-radius: 8px;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .main-nav.show {
    display: flex;
  }
}