body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: white;
  color: #222;
}

.hero {
    background-image: url('see.jpg');
    background-size: cover;
    background-position: center;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    padding: 0 20px;
}

.navigation {
    text-align: center;
    background: white;
    padding: 15px 0;
    border-bottom: 1px solid #ccc;
}

.navigation a {
    margin: 0 20px;
    text-decoration: none;
    color: #000;
    font-size: 16px;
}

.navigation a:hover {
    color: #0066cc;
}
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f5f5f5;
  min-width: 200px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 999;
}

.dropdown-content a {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Hauptinhalt */
.content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 40px;
  gap: 40px;
  flex-wrap: wrap;
}

.verein-textblock {
  flex: 2;
  min-width: 300px;
  max-width: 800px;
  margin: 0 auto;
}

.verein-textblock h2 {
  font-size: 48px;
  margin-bottom: 10px;
  font-weight: 700;
}

.verein-textblock p {
  font-size: 18px;
  line-height: 1.6;
}

.verein-bild {
  flex: 1;
  min-width: 300px;
  margin-top: 20px;
}

.verein-bild img {
  width: 100%;
  height: auto;
  border: none;
}

/* Vorstand */
.vorstand-box {
  display: flex;
  flex-wrap: wrap;
  background-color: #f1f1f1;
  padding: 30px;
  margin: 10px auto;
  max-width: 900px;
  gap: 30px;
  align-items: center;
}

.vorstand-bild img {
  width: 250px;
  height: auto;
  display: block;
}

.vorstand-info {
  flex: 1;
}

.vorstand-info .rolle {
  font-size: 18px;
  margin-bottom: 5px;
  color: #333;
}

.vorstand-info .name {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

.vorstand-info .email a {
  color: #000;
  text-decoration: underline;
  font-size: 16px;
}

/* Footer */
.footer {
  border-top: 1px solid #e0e0e0;
  background-color: #f5f5f5;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  margin-top: 60px;
}

.footer a {
  margin: 0 15px;
  color: #555;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
  color: #0066cc;
}

/* =====================================
   Responsive Design für Mobilgeräte
   ===================================== */
@media (max-width: 768px) {

  .hero {
    height: auto;
    font-size: 24px;
    padding: 40px 10px;
  }

  .navigation {
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .navigation a {
    margin: 8px 0;
    font-size: 18px;
  }

  .dropdown-content {
    position: static;
    width: 100%;
    box-shadow: none;
  }

  .dropdown-content a {
    text-align: center;
    padding: 10px;
  }
  .content {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    align-items: center;
  }

  .verein-textblock,
  .verein-bild {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .verein-textblock h2 {
    font-size: 32px;
  }

  .verein-textblock p {
    font-size: 16px;
  }

  .vorstand-box {
    flex-direction: column;
    text-align: center;
  }

  .vorstand-bild img {
    width: 80%;
    max-width: 300px;
    height: auto;
  }

  .footer {
    font-size: 13px;
    padding: 15px 10px;
  }

  .footer a {
    display: block;
    margin: 5px 0;
  }

  /* Alle Bilder & Videos responsive */
  img, video {
    max-width: 100%;
    height: auto;
  }
}
