/* Basismenu */
nav.custom-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1e293b;
  padding: 10px 20px;
}

nav.custom-menu ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

nav.custom-menu li {
  position: relative;
  margin: 0 15px;
}

nav.custom-menu a {
  color: white;
  text-decoration: none;
  padding: 10px;
  transition: all 0.3s ease;
}

nav.custom-menu a:hover {
  background: #3b82f6;
  border-radius: 6px;
}

nav.custom-menu ul.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #334155;
  flex-direction: column;
  padding: 0;
  min-width: 150px;
  z-index: 999;
}

nav.custom-menu li:hover > ul.sub-menu {
  display: flex;
}

nav.custom-menu ul.sub-menu li a:hover {
  background: #2563eb;
}

@media (max-width: 768px) {
  nav.custom-menu ul {
    flex-direction: column;
    display: none;
  }

  nav.custom-menu.active ul {
    display: flex;
  }

  .hamburger {
    display: block;
    cursor: pointer;
    color: white;
    font-size: 24px;
  }
}
