.navbar-wrapper {
  position: relative;
}

/* Mobile hamburger button */
.mobile-menu-btn {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1001;
  display: none;
}

/* Navbar - side nav on desktop */
.navbar {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 250rem;
  padding: 20px;
  overflow-y: auto;
  transition: transform 0.3s ease;
}

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

.nav-logo {
  font-size: 1.2rem;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.nav-links a {
  text-decoration: none;
  display: block;
  padding: 10px;
  transition: background 0.2s;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.close-btn {
  display: none;
  margin-bottom: 20px;
}

.drawer-overlay {
  display: none;
}

/* Mobile styles */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .navbar {
    transform: translateX(-100%);
    z-index: 1002;
  }

  .navbar.drawer-open {
    transform: translateX(0);
  }

  .close-btn {
    display: block;
  }

  .drawer-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }
}

/* Add left margin to main content on desktop */
@media (min-width: 769px) {
  body {
    margin-left: 250px;
  }
}
