/* ----- // Positioner // ----- */
.navbar-container {
  position: sticky;
  top: 150px;
  z-index: 1000;
  margin-bottom: 100px;
}
/* --------------------------------------- */

/* ----- // Container & Link Styling // ----- */
/* Nav-Link Container */
.nav-links {
  background: var(--navlink-bg); /* Light Mode Glass */
  border: 1px solid var(--navlink-border);
  box-shadow: var(--navlink-box-shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 30px;
  display: flex;
  justify-content: center;
  max-width: fit-content;
  padding: 8px 15px;
  margin: 0 auto;
  gap: 15px;
}

/* Nav-Link Styling */
.nav-links a {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Hover Effects */
.nav-links a:hover {
  /*background: rgba(0, 0, 0, 0.05); /* Very light gray for light mode */
  background: rgba(255, 255, 255, 0.15); 
  color: var(--text-main);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
}

/* Nav-Link Active state (scroll-tracked) */
.nav-links a.active {
  background: var(--accent-color);
  color: #ffffff !important;
}

/* Hover Effect for the ACTIVE link */
.nav-links a.active:hover {
  background: color-mix(in srgb, var(--accent-color), white 15%);
  box-shadow: 0 0 15px var(--accent-color);
  transform: translateY(-1px);
}
/* ----------------------------------- */