.hamburger-menu {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1000;
}

.hamburger-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger-icon {
  width: 30px;
  height: 20px;
  position: relative;
}

.hamburger-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  position: absolute;
  transition: 0.3s;
}

.hamburger-icon span:nth-child(1) { top: 0; }
.hamburger-icon span:nth-child(2) { top: 9px; }
.hamburger-icon span:nth-child(3) { top: 18px; }

.hamburger-icon.open span:nth-child(1) { transform: rotate(45deg); top: 9px; }
.hamburger-icon.open span:nth-child(2) { opacity: 0; }
.hamburger-icon.open span:nth-child(3) { transform: rotate(-45deg); top: 9px; }

.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
}

.menu-panel {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background: var(--glass-bg, rgba(15, 23, 42, 0.95));
  backdrop-filter: blur(10px);
  transition: 0.3s;
  padding: 20px;
  display: flex;
  flex-direction: column;
  z-index: 10000;
}

.menu-panel.open {
  left: 0;
}

.lang-switcher {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.lang-switcher a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
}

.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.menu-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.2rem;
}
