/* Base styling */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #32004b;
  color: #ffffff;
  overflow-x: hidden; /* prevent scroll when menu is hidden */
}

h1 {
  color: #57d667;
  text-align: center;
  margin-top: 20px;
}

p {
  color: #00ffa1;
  text-align: center;
  font-size: 1.2rem;
}

/* Content area */
.content {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Sidebar menu */
.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 300px;
  max-width: 80%;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  box-shadow: -2px 0 8px rgba(0,0,0,0.5);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1000;
  padding: 20px;
}

.sidebar.active {
  transform: translateX(0);
}

.sidebar h2 {
    margin-top: 0;
    color: #57d667;
    position: relative;
    top: 7px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin-top: 34px;
}

.sidebar ul li {
  margin: 15px 0;
}

/* Sidebar nav items styling */
.sidebar ul li a {
  display: block;
  padding: 12px 20px;
  margin: 10px 0;
  background: #4b0078; /* darker purple */
  border: 1px solid #32004b; /* slightly darker border */
  border-radius: 12px; /* rounded pill shape */
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.sidebar ul li a:hover {
  background: #6a00a1; /* slightly brighter on hover */
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
  color: #00ffa1; /* keep your accent color for hover text */
}

/* Toggle button */
.menu-toggle {
  position: fixed;
  top: 15px;
  right: 15px;
  background: #57d667;
  color: #32004b;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 1100;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.menu-toggle:hover {
  background: #00ffa1;
}

@media (max-width: 768px) {
  .sidebar {
	width: 100%;
  }
}