/* HAMBURGER BUTTON */
.hamburger {
  position: fixed;
  top: 20px;
  right: 20px; /* keep button on top-right */
  font-size: 2rem;
  background: #1aff1a;
  border: none;
  border-radius: 6px;
  padding: 8px 14px;
  cursor: pointer;
  z-index: 1400;
}

/* SIDEBAR MENU ON RIGHT */
.sidebar-menu {
  position: fixed;
  top: 0;
  right: -250px; /* hidden offscreen to the right */
  width: 250px;
  height: 100vh;
  background: #183b56;
  display: flex;
  flex-direction: column;
  padding-top: 30px;
  transition: right 0.3s ease; /* transition now on right */
  z-index: 1300;
}

.sidebar-menu.active {
  right: 0; /* slide in from right */
}

/* Sidebar header with logo and close button */
.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.sidebar-header img {
  height: 50px;
}

.close-sidebar {
  font-size: 1.5rem;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* Sidebar navigation links */
.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 50px;
  padding-left: 20px;
}

.sidebar-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  transition: color 0.3s;
}

.sidebar-nav a:hover {
  color: #1aff1a;
}
