.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #ffffff;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 80px;
}

.navbar__logo img {
  height: 56px;
  width: auto;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.navbar__link {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 1rem;
  color: var(--color-nav-text);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.navbar__link:hover {
  color: var(--color-light-blue);
}

.navbar__divider {
  width: 100%;
  height: 1px;
  background-color: #e0e0e0;
}

/* menu button */
.navbar__menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--color-nav-text);
}

.navbar__menu-btn i {
  width: 26px;
  height: 26px;
}

/* side drawer */
.navbar__drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background-color: #ffffff;
  z-index: 300;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.08);
}

.navbar__drawer.is-open {
  transform: translateX(0);
}

.navbar__drawer-logo {
  margin-bottom: 2rem;
}

.navbar__drawer-logo img {
  height: 52px;
  width: auto;
}

.navbar__drawer-links {
  display: flex;
  flex-direction: column;
}

.navbar__drawer-item {
  border-bottom: 1px solid #e0e0e0;
}

.navbar__drawer-link {
  display: block;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 1rem;
  color: var(--color-dark-blue);
  text-decoration: none;
  padding: 1rem 0;
  transition: color 0.2s ease;
}

.navbar__drawer-link:hover {
  color: var(--color-light-blue);
}

/* Overlay */
.navbar__overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 299;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.navbar__overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar__links {
    display: none;
  }

  .navbar__inner {
    justify-content: space-between;
  }

  .navbar__menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}