.header-navbar {
  background: var(--cc-light-bg);
  backdrop-filter: blur(10px);
  z-index: 1000;
  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;
  font-size: 20px;
  display: flex;
}

.nav-item {
  color: var(--cc-light-bg);
  border-radius: 4px;
  padding: .5rem 1rem;
  transition: all .3s;
  position: relative;
}

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

.nav-item:hover .material-icons, .nav-item:hover span {
  color: var(--primary-color);
}

.nav-item:after {
  content: "";
  background: var(--cc-primary-accent);
  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;
}

.navbar-menu {
  margin-left: auto;
}

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

  .hamburger-line {
    background-color: var(--cc-text-color);
    width: 2rem;
    height: .25rem;
    transition: all .3s linear;
  }

  .navbar-menu {
    background-color: var(--cc-light-bg);
    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(--cc-primary-accent);
}

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

.header-logo-text {
  text-align: center;
  color: var(--cc-primary-accent);
  margin-left: 10px;
  font-size: 2rem;
  font-weight: bold;
}

.header-logo-img {
  width: auto;
  height: 64px;
  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: #d1d1d11a;
  border: 1px solid #d1d1d133;
  border-radius: 25px;
  align-items: center;
  gap: 8px;
  padding: 5px 15px;
  transition: all .3s;
  display: flex;
}

.language-button:hover {
  background: #0000000f;
  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=site-cdf.35cba62f.css.map */
