.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between; /* verteilt Titel links, Menü rechts */
  padding: 15px 30px;
  background-color: #1a1a1a;
}

.navbar-title {
  font-size: 1.8rem;
  color: white;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-title .dot {
  color: white;
}

.navbar-title i {
  font-size: 1.6rem;
  color: white;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-links li a {
  color: white; /* durchgehend weiß */
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.navbar-links li a:hover {
  text-decoration: underline; /* kein Farbübergang, nur Unterstreichung */
}

/* Responsive Layout */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
  }

  .navbar-title {
    margin-bottom: 10px;
  }

  .navbar-links {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
}
