/* stylesheet_4.css - Header and Navigation Components */
header.full-width {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 50;
  background: rgba(6, 16, 43, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(129, 140, 248, 0.2);
}

.nav-link {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--brand-reg);
}