/* ===  Sticky navigation bar  === */
.top-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 85px;
  overflow: hidden;
  margin-bottom: -85px;
}

/* --- Angled colour layers (SVG backgrounds from original paths) --- */
.nav-layers {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Light blue — widest angled strip (cls-24: #6cc6e2) */
.nav-layer--light {
  position: absolute;
  inset: 0;
  background: url('nav-light.svg') no-repeat left top / 100% 100%;
}

/* Teal — middle layer (cls-57: #008fbf) */
.nav-layer--teal {
  position: absolute;
  inset: 0;
  background: url('nav-teal.svg') no-repeat left top / 100% 100%;
}

/* Dark blue — narrowest, full height (cls-15: #133e68) */
.nav-layer--dark {
  position: absolute;
  inset: 0;
  background: url('nav-dark.svg') no-repeat left top / 100% 100%;
}

/* --- Nav content --- */
.nav-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100%;
  width: min(1115px, 100% - 2rem);
  margin-inline: auto;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 50px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
  margin-right: 250px;
  align-items: center;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .2s;
}

.nav-links a:hover {
  color: #a2ecfc;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
}
