/* Hamburger Menu Icon - Glassmorphism */
.hamburger-menu {
  position: fixed;
  top: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  z-index: 1300;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hamburger-menu:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.hamburger-menu.active {
  background: rgba(255, 255, 255, 0.05);
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Navigation Menu - Glassmorphism */
.nav-menu {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1200;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 120px 50px 50px;
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.3);
}

.nav-menu.active {
  right: 0;
}

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

.nav-menu-item {
  color: #ffffff;
  text-decoration: none;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  display: block;
  cursor: pointer;
}

.nav-menu-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(-5px);
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
}

/* Menu overlay backdrop */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger-menu {
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }

  .nav-menu {
    width: 100%;
    right: -100%;
    padding: 100px 30px 30px;
  }

  .nav-menu-item {
    font-size: 24px;
    padding: 12px 15px;
  }
}
