/* NAVBAR */
nav {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  box-shadow: 0px 1px 10px #999;
}
.nav-container {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-container {
  margin: 0.8em 0 0.2em 5em;
}
.logo-container img {
  width: 350px;
  height: auto;
}
.col-right-nav {
  display: flex;
}
.menu {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
  list-style-type: none;
  padding: 0.7rem;
}
nav a {
  color: var(--text-color);
  font-size: 17px;
  margin-right: 3em;
}
nav a:hover {
  opacity: 0.8;
}

.hamburger {
  display: none;
  font-size: 1em; /* Increase this value as needed */
}
#insta {
  font-size: 1.4em;
}

/* DROPDOWN MENU */
.sm-box a {
  margin-right: 1em;
}

.dropdown .fa-sort-down {
  position: relative;
  top: -6px;
  left: 4px;
}
.dropdown img {
  height: 21px;
  width: 25px;
  position: relative;
  top: 2px;
}
.dropdown .bw {
  -webkit-filter: grayscale(90%);
  -moz-filter: grayscale(90%);
  -ms-filter: grayscale(90%);
  -o-filter: grayscale(90%);
  filter: grayscale(90%);
}

.dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #f9f9f9;

  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 10;
  border-radius: 3px;
}

.dropdown-content a {
  padding: 0.5em;
  display: block;
  margin: 0 auto;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}
.dropdown-hover:hover .dropdown-content {
  display: block;
}
/* versteckt Flagge im desktop mode */
.dropdown-responsive {
  display: none;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  /*   NAVBAR RESPONSIVE */
  nav {
    justify-content: center;
  }
  .logo-container {
    margin: 0.3em;
    margin-top: 1em;
  }
  .logo-container a {
    margin: 0 auto;
  }
  .logo-container img {
    width: 275px;
    height: auto;
  }
  .nav-container {
    flex-direction: column;
  }
  .hamburger {
    position: absolute;
    display: block;
    cursor: pointer;
    top: 28px;
    right: 23px;
   z-index: 1001;
  }
  .menu {
    flex-direction: column;
  }
  .menu li {
    padding-top: 1rem;
  }
  .hidden {
    display: none;
    padding-top: 1rem;
  }
  nav a {
    margin: 0 auto;
  }

  .sm-box a {
    margin: 0.5em 0.8em;
  }


}
