body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  color: #333;
}

header {
  background: #2c3e50;
  color: white;
  padding: 20px 0;
  text-align: center;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 12px;
  font-weight: bold;
}

nav a.active, nav a:hover {
  text-decoration: underline;
}

main {
  max-width: 800px;
  margin: 30px auto;
  background: white;
  padding: 20px;
  border-radius: 8px;
}

footer {
  text-align: center;
  padding: 15px;
  background: #2c3e50;
  color: white;
  margin-top: 30px;
}

.main-image {
  display: block;
  margin: 20px auto;
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.vereinslogo {
  width: 40px;        /* Größe anpassen */
  height: auto;
  margin-left: 8px;   /* etwas Abstand zum Text */
  vertical-align: middle;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.gallery img {
  width: 300px;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

form {
  display: flex;
  flex-direction: column;
}

input, textarea, button {
  font-size: 1em;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

button {
  background-color: #2c3e50;
  color: white;
  cursor: pointer;
  margin-top: 10px;
}

button:hover {
  background-color: #34495e;
}
/* Vorheriger Stil bleibt bestehen */

.back-link {
  display: inline-block;
  margin-top: 20px;
  color: #2c3e50;
  text-decoration: none;
  font-weight: bold;
}

.back-link:hover {
  text-decoration: underline;
}
