:root {
  --main-bg-color: #040509;
  --accent-color: #00f0ff;
}

body {
  background-color: var(--main-bg-color);
  color: white;
  scroll-behavior: smooth;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(to right, #00f0ff, #8e2de2);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* Custom Hover Dropdown */
.nav-item.group {
  position: relative;
}

.dropdown-menu-custom {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #1f1f1f;
  border: 1px solid #333;
  min-width: 200px;
  padding: 0;
  z-index: 999;
  border-radius: 6px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.nav-item.group:hover .dropdown-menu-custom {
  display: block;
}

.dropdown-menu-custom li {
  border-bottom: 1px solid #333;
}

.dropdown-menu-custom li:last-child {
  border-bottom: none;
}

.dropdown-menu-custom a {
  display: block;
  padding: 10px 16px;
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.dropdown-menu-custom a:hover {
  background-color: #333;
  color: var(--accent-color);
}

/* Optional spacing helper */
.spacer {
  width: 10vw;
}

ul.text-start {
  list-style-type: disc;
  padding-left: 1.5rem; /* adjust as needed */
}

.dropdown-menu-custom {
  list-style: none;
  margin: 0;
  padding: 0;
}

