.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #0a0a0a;
  border-bottom: 1px solid #1f1f1f;
  padding: 0 5%;
  z-index: 100;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.3px;
  color: #ffffff;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: url('/views/assets/img/logo.png') center/contain no-repeat;
}

.logo span {
  color: #5a5a5a;
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: #b0b0b0;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #ffffff;
}

.btn-outline-nav {
  border: 1px solid #2c2c2c;
  padding: 0.4rem 1.2rem;
  border-radius: 40px;
  background: transparent;
  color: #ffffff;
  font-weight: 500;
  font-size: 0.8rem;
  transition: all 0.2s;
}

.btn-outline-nav:hover {
  border-color: #5a5a5a;
  background: #1a1a1a;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid #2c2c2c;
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #ffffff;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-drawer {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  z-index: 99;
  background: #0a0a0a;
  border-bottom: 1px solid #1f1f1f;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.nav-drawer.open {
  max-height: 300px;
}

.nav-drawer-inner {
  display: flex;
  flex-direction: column;
  padding: 1rem 5%;
}

.nav-drawer-inner a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: #b0b0b0;
  padding: 0.75rem 0;
  border-bottom: 1px solid #1f1f1f;
}

.nav-drawer-inner a:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
}