.header-navbar {
  backdrop-filter: blur(10px);
  z-index: 1000;
  background: #1a1e3bf2;
  border-bottom: 1px solid #ffffff1a;
  justify-content: flex-start;
  align-items: center;
  padding: 1rem 2rem;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 4px 30px #0000001a;
}

.nav-links {
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  margin-left: 1rem;
  display: flex;
}

.nav-item {
  color: #ffffffe6;
  border-radius: 4px;
  padding: .5rem 1rem;
  transition: all .3s;
  position: relative;
}

.nav-item:hover {
  color: var(--primary-color);
  background: #ffffff1a;
  transform: translateY(-2px);
}

.nav-item:after {
  content: "";
  background: var(--primary-color);
  width: 0;
  height: 2px;
  transition: all .3s;
  position: absolute;
  bottom: 0;
  left: 50%;
}

.nav-item:hover:after {
  width: 100%;
  left: 0;
}

.mobile-menu-button {
  cursor: pointer;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: space-around;
  width: 2rem;
  height: 2rem;
  padding: 0;
  display: none;
}

@media (width <= 768px) {
  .mobile-menu-button {
    display: flex;
  }

  .hamburger-line {
    background-color: #fff;
    width: 2rem;
    height: .25rem;
    transition: all .3s linear;
  }

  .navbar-menu {
    background-color: #1a1e3b;
    padding: 1rem;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
  }

  .navbar-menu.is-mobile-open {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

.nav-item:hover {
  color: var(--primary-color);
}

.header-logo {
  align-items: center;
  margin-right: 2rem;
  display: flex;
}

.header-logo-img {
  width: auto;
  height: 40px;
  transition: transform .3s;
}

.header-logo-img:hover {
  transform: scale(1.05);
}

@media (width <= 768px) {
  .header-logo-img {
    height: 32px;
  }
}

.flag-icon {
  border-radius: 2px;
  width: 24px;
  height: 16px;
  transition: opacity .3s;
}

.inactive-flag {
  opacity: .4;
}

.language-switcher {
  margin-left: auto;
  padding: 0 10px;
}

.language-button {
  cursor: pointer;
  background: #ffffff1a;
  border: 1px solid #fff3;
  border-radius: 25px;
  align-items: center;
  gap: 8px;
  padding: 5px 15px;
  transition: all .3s;
  display: flex;
}

.language-button:hover {
  background: #fff3;
  transform: scale(1.05);
}

@media (width <= 768px) {
  .language-switcher {
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
  }

  .language-button {
    padding: 3px 10px;
  }

  .flag-icon {
    width: 20px;
    height: 14px;
  }
}
/*# sourceMappingURL=agora-main.35cba62f.css.map */
