.no-js #nav-menu{
  display: block;
}

.js .menu-collapsed{
  display: none;
}

.hamburger-menu{
  position: fixed;
  top:  10px;
  left: 10px;
  background: #1e1e2f;
  border: 2px solid yellowgreen;
  border-radius: 10px;
  padding: 1rem;
  z-index: 1000;
}

.hamburger-menu button{
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1rem;
}

#menu-toggle{
  font-size: 18px;
  background: none;
  color: #00d9ff;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

#menu-toggle:hover {
  background-color: rgba(0, 217, 255, 0.1);
  color: #FF9900;
  border-radius: 5px;
}

#nav-menu ul{
  list-style: none;
  margin: 1rem 0 0;
  padding:  0;
  text-align: left;
}

#nav-menu li{
  margin-bottom: 0.5rem;
  padding-left: 10px;
}

#nav-menu a{
  text-decoration: none;
  color: darkgoldenrod;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s;
  display: block;
}

#nav-menu a:hover{
  background-color: rgba(0, 217, 255, 0.2);
  border-radius: 5px;
  opacity: 0.5;
}

.projektmenu-toggle {
  background: none;
  border: none;
  color: darkgoldenrod;
  font-weight: bold;
  cursor: pointer;
  font-size: 1em;
  text-align: left;
  padding: 0;
  transition: background-color 0.3s, color 0.3s;
}

.projektmenu-toggle:hover {
  background-color: rgba(0, 217, 255, 0.2);
  border-radius: 5px;
  opacity: 0.5;
}

.menuicon{
  color: darkgoldenrod;
}

.scroll-down-btn .menuicon{
  font-size: 1.8rem;
  margin-top: 0.5rem;
  width: 2rem;
}