.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: transform 0.309s ease;
  z-index: 1000;
}
.header.hide {
  transform: translateY(-110%);
  transition: transform 0.618s ease;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  background: url(../bgimg003.svg);
  background-repeat: no-repeat;
  background-size: cover;
  color: rgba(30, 30, 30, 0.6);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 10;
  min-height: 60px;
}
.navbar .logo {
  text-shadow: 0 3px 0 rgba(223, 222, 221, 0.85), 0 4px 8px rgba(0, 0, 0, 0.15), 0 4px 2px rgba(0, 0, 0, 0.1), 0 5px 30px rgba(0, 0, 0, 0.1);
  font-size: 2em;
}
.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.navbar .nav-links li a {
  color: rgba(30, 30, 30, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}
.navbar .nav-links li a:hover {
  color: rgba(30, 30, 30, 0.9);
}
.navbar .toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 11;
}
.navbar .toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #cdcdcd;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.navbar .toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar .toggle.active span:nth-child(2) {
  opacity: 0;
}
.navbar .toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.navbar .lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: rgba(30, 30, 30, 0.6);
}
.navbar .lang-switch button {
  background: none;
  border: none;
  padding: 4px 6px;
  cursor: pointer;
  color: rgba(30, 30, 30, 0.6);
  font-weight: 500;
  transition: color 0.3s ease;
}
.navbar .lang-switch button:hover {
  color: rgba(30, 30, 30, 0.9);
}
.navbar .lang-switch button.active {
  color: rgba(30, 30, 30, 0.9);
  font-weight: 600;
}
.navbar .lang-switch span {
  opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr auto auto;
    grid-template-areas: "logo toggle lang";
    gap: 1rem;
    align-items: center;
  }
  .navbar .logo {
    grid-area: logo;
    font-size: 1.0618rem;
    justify-self: start;
  }
  .navbar .toggle {
    grid-area: toggle;
    display: flex;
    justify-self: end;
    margin-right: 0.5rem;
  }
  .navbar .lang-switch {
    position: static;
    grid-area: lang;
    justify-self: end;
  }
  .navbar .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: #fff;
    padding: 1rem 0;
    gap: 1rem;
    text-align: center;
    transform: translateY(-200%);
    transition: transform 0.3s ease;
    background: url(../bgimg003.svg);
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
    z-index: -1;
  }
  .navbar .nav-links li a {
    display: block;
    padding: 0.5rem;
  }
  .navbar .nav-links.active {
    transform: translateY(0);
  }
}

/*# sourceMappingURL=menu.css.map */
