/* ================= SIDEBAR PARTIAL CSS ================= */

/* Sidebar container */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 230px;
  height: 100vh;
  padding: 30px 20px;
  box-sizing: border-box;
  z-index: 10;

  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 4px 0 15px rgba(0, 0, 0, 0.3);

  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Sidebar title */
.sidebar h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 25px;
  text-align: center;
}

/* Sidebar menu list */
.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;

  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Sidebar list item */
.sidebar li {
  width: 100%;
}

/* Sidebar button (matches your Get Started / Select style) */
.menu-btn {
  width: 100%;
  padding: 14px 0;

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;

  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;

  border: none;
  border-radius: 12px;
  cursor: pointer;

  position: relative;
  overflow: hidden;

  transition: all 0.35s ease;
  box-shadow: 0 4px 18px rgba(102, 126, 234, 0.35);
}

/* Shine animation */
.menu-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );

  transition: left 0.5s ease;
}

.menu-btn:hover::before {
  left: 100%;
}

.menu-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(102, 126, 234, 0.55);
}

.menu-btn:active {
  transform: translateY(1px);
  box-shadow: 0 3px 12px rgba(102, 126, 234, 0.4);
}
