/* Sidebar Nav */
.sidebar-nav {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background-color: rgba(10, 14, 39, 0.95);
  border-left: 1px solid rgba(212, 175, 55, 0.3);
  z-index: 10000;
  transition: right 0.3s ease-in-out;
  padding: 3rem 2rem;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

.sidebar-nav.open {
  right: 0;
}

.sidebar-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 3rem;
  cursor: pointer;
  color: #d4af37;
  line-height: 1;
}

.sidebar-close:hover {
  color: #f5f5dc;
}

.sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.sidebar-nav ul li {
  margin-bottom: 1.5rem;
}

.sidebar-nav ul li a {
  font-size: 1.25rem;
  color: #f5f5dc;
  text-decoration: none;
  border-bottom: none;
  transition: color 0.2s;
  display: block;
  font-weight: 600;
}

.sidebar-nav ul li a:hover, .sidebar-nav ul li a.active {
  color: #d4af37;
}

.sidebar-toggle {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 50px;
  height: 50px;
  background-color: rgba(10, 14, 39, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 5px;
  z-index: 9999;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  font-size: 1.5rem;
  transition: background-color 0.2s;
}

.sidebar-toggle:hover {
  background-color: rgba(212, 175, 55, 0.3);
}

@media screen and (max-width: 480px) {
  .sidebar-nav {
    width: 250px;
    right: -250px;
    padding: 2rem 1.5rem;
  }
}
