.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(28, 19, 16, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(252, 231, 243, 0.12);
  box-shadow: 0 10px 24px rgba(28, 19, 16, 0.25);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 1.32rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--accent-pink-light);
}

.hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px 6px;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
}

.hamburger .bar {
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background-color: #ffffff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.open .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.open .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-menu {
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  max-height: 0;
  overflow: hidden;
  background: rgba(28, 19, 16, 0.98);
  transition: max-height 0.35s ease;
}

.nav-menu.open {
  max-height: 420px;
  box-shadow: 0 16px 28px rgba(28, 19, 16, 0.3);
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 24px;
}

.nav-link {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: #ece0d1;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-link:hover {
  background: rgba(252, 231, 243, 0.12);
  color: #ffffff;
}

.nav-link.active {
  background: linear-gradient(135deg, var(--primary), var(--accent-pink));
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(126, 34, 206, 0.3);
}
