/* Visdeurbel — shared project nav */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,800&family=PT+Sans:wght@400;700&display=swap');

.vdb-nav {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  background: #01463c;
  border-bottom: 1px solid rgba(253, 247, 239, 0.15);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  height: 52px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
}

.vdb-nav__home {
  color: #fdf7ef;
  text-decoration: none;
  font-size: 15px;
  opacity: 0.7;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.1s;
}

.vdb-nav__home:hover {
  opacity: 1;
}

.vdb-nav__divider {
  color: rgba(253, 247, 239, 0.3);
  font-size: 14px;
  flex-shrink: 0;
}

.vdb-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.vdb-nav__link {
  color: #fdf7ef;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 25px;
  border: 1px solid transparent;
  transition: background 0.1s, border-color 0.1s;
  white-space: nowrap;
}

.vdb-nav__link:hover {
  background: rgba(253, 247, 239, 0.1);
  border-color: rgba(253, 247, 239, 0.3);
}

.vdb-nav__link[aria-current="page"] {
  background: #c0a8ff;
  border-color: #fdf7ef;
  color: #01463c;
}

@media (max-width: 600px) {
  .vdb-nav {
    padding: 0 12px;
    gap: 4px;
  }

  .vdb-nav__link {
    font-size: 13px;
    padding: 5px 10px;
  }
}
