/* Header-Container (mittig ausgerichtet) */
.site-header {
  display: flex;
  justify-content: center; /* Zentriert die Navigation */
  align-items: center;
  background-color: #1a1a1a;
  padding: 1.5rem 2rem;
  font-family: 'EB Garamond', serif;
  box-sizing: border-box;
  width: 100%;
}

/* Navigations-Menü */
.nav-menu ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 3rem; /* Größerer Abstand zwischen den Punkten */
}

/* Einzelne Links */
.nav-menu a {
  color: #e8bf40;
  font-family: 'EB Garamond', serif;
  font-size: 1.2rem; /* Etwas prägnanter */
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.05em; /* Leicht erweiterter Zeichenabstand für elegante Optik */
  transition: opacity 0.2s ease;
}

<!-- CSS-Styling für den Button -->
<style>
  .email-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #0056b3; /* Hauptfarbe */
    color: #ffffff;            /* Textfarbe */
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }

  /* Effekt beim Drüberfahren mit der Maus */
  .email-button:hover {
    background-color: #003d80;
  }

</style>
/* Hover-Effekt */
.nav-menu a:hover {
  opacity: 0.7;
}

/* Aktiver Link */
.nav-menu a.active {
  font-weight: 600;
  border-bottom: 1px solid #e8bf40;
  padding-bottom: 2px;
}

/* Responsive Anpassung für kleinere Bildschirme */
@media (max-width: 600px) {
  .nav-menu ul {
    gap: 1.5rem; /* Auf Mobilgeräten etwas kompakter, damit es nebeneinander passt */
  }
  .nav-menu a {
    font-size: 1rem;
  }
}