/* ==========================
   HEADER / NAV
=========================== */

/* Header bar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(20px);
  background: radial-gradient(circle at 0% 0%, rgba(15,23,42,0.94), rgba(15,23,42,0.98));
  border-bottom: 1px solid rgba(15,23,42,0.9);
}

/* Logo + nav row */
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Right side: nav links + CTA */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;            /* <— space between About / Services / Contact */
  font-size: 0.9rem;
}

/* Individual nav link */
.nav-link {
  position: relative;
  padding-inline: 0.15rem;
  color: #cbd5e1;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #e5e7eb;
}

/* Optional: thin vertical separators between links */
.nav-link + .nav-link::before {
  content: "";
  position: absolute;
  left: -0.9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: rgba(148,163,184,0.35);
}

/* Mobile: stack nav items if needed */
@media (max-width: 768px) {
  .nav-row {
    gap: 1rem;
  }
  .nav-links {
    gap: 1rem;
    font-size: 0.85rem;
  }
}

/* ==========================
   NAV LINKS
=========================== */
.nav-link {
  position: relative;
  padding-inline: 0.75rem;
  font-size: 0.9rem;
}

.nav-link + .nav-link::before {
  content: "";
  position: absolute;
  left: -0.1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: rgba(148,163,184,0.35);
}

