/* Allgemein */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fefefe;
}

/* Hinweisbanner */
.top-banner {
  background-color: #eaf4f2;
  color: #004d40;
  font-size: 14px;
  text-align: center;
  padding: 8px 0;
}

/* Header */
.main-header {
  background-color: #ffffff;
  border-bottom: 1px solid #ddd;
  padding: 10px 20px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px;
}

/* Navigation */
.header-nav {
  display: flex;
  align-items: center;
}

.header-nav button {
  background: none;
  border: none;
  font-size: 24px;
  margin-left: 15px;
  cursor: pointer;
}


.mitglied-btn:hover {
  background-color: #00796b;
}

/* Hauptmenü (mobil aufklappbar) */
.main-menu {
  display: none;
  flex-direction: column;
  background-color: #f7f9f9;
  padding: 15px 20px;
  list-style: none;
  margin: 0;
  animation: slideDown 0.3s ease-in-out;
}

.main-menu.show {
  display: flex;
}

.main-menu li {
  margin: 12px 0;
}

.main-menu a {
  text-decoration: none;
  color: #004d40;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.2s ease;
}

.main-menu a:hover {
  color: #00897b;
}

/* Animation für Menü */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero-Bereich auf Startseite */
.hero {
  padding: 60px 20px;
  text-align: center;
  background: #eaf4f2;
}

.hero h1 {
  font-size: 2.5em;
  color: #004d40;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
  color: #333;
}

.main-footer {
  background-color: #004f46; /*  Grün */
  color: #fff; /* weiße Schrift */
  text-align: center;
  padding: 1.5em 0;
  font-family: sans-serif;
  font-size: 1rem;
}

.main-footer a {
  color: #fff;
  text-decoration: none;
}

.main-footer a:hover {
  text-decoration: underline;
}

.main-footer div {
  margin-top: 0.5em; /* kleiner Abstand zur oberen Zeile */
}