/* Mobile Menu Styles */

/* Hamburger Button */
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 1000;
}

/* Mobile Navigation Panel */
#nav-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 260px;
  height: 100%;
  background: #111;
  display: flex;
  flex-direction: column;
  padding: 60px 20px 20px;
  transition: right 0.4s ease;
  z-index: 998;
}

#nav-panel.open {
  right: 0;
}

#nav-panel a {
  color: #fff;
  text-decoration: none;
  margin: 15px 0;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

#nav-panel a:hover,
#nav-panel a.active {
  color: #f59e0b;
}

#nav-panel .close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
  color: #fff;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  line-height: 1;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  /* Prevent scrolling when mobile menu is open */
  body.menu-open {
    overflow: hidden;
  }
}