/* pekt-shell.css — Gemeinsame Stile für Navigation und Footer
   Wird von allen Seiten geladen. Änderungen hier wirken überall. */

nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 24px 0;
  flex-wrap: wrap;
}
nav a {
  color: var(--text-muted, rgba(255,255,255,0.5));
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 7px 14px;
  border-radius: 24px;
  transition: all 0.2s ease;
}
nav a:hover {
  background: rgba(255,255,255,0.08);
  color: var(--text, #e8e6e3);
}
nav a.active {
  background: rgba(255,255,255,0.1);
  color: var(--text, #e8e6e3);
}

footer {
  padding: 48px 0 32px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-dim, rgba(255,255,255,0.35));
  line-height: 2.2;
}
footer a {
  color: var(--text-muted, rgba(255,255,255,0.5));
  text-decoration: none;
}
footer a:hover {
  color: var(--text, #e8e6e3);
}
