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;
}


/* Flexlayout für den 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;
  font-family: Arial, sans-serif;
}

.text {
  flex: 2;
  min-width: 300px;
}

.text h2 {
  font-size: 48px;
  margin: 0 0 10px;
  font-weight: 700;
  color: #222;
}

.text h3 {
  font-size: 24px;
  margin: 30px 0 10px;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
}

.text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #222;
  text-align: left;
}

.video {
  flex: 1;
  min-width: 300px;
  text-align: right;
  margin-top: 20px;
}

.video video {
  width: 100%;
  max-width: 400px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.image {
  flex: 1;
  min-width: 300px;
  text-align: right;
  margin-top: 20px;
}

.image img,
.image image {
  width: 100%;
  max-width: 400px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.nach-unten {
  margin-top: 40px;
}

.section-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin-top: 30px;
  display: block;
}

.gallery,
.gallery1 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 40px;
  flex-direction: row;
  align-items: stretch;
}

.gallery img,
.gallery1 img {
  width: 300px;
  height: auto;
  display: block;
  object-fit: cover;
}


.verein-textblock p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #222;
  text-align: left;
}

/* Bild rechts im Flexbereich */
.image {
  flex: 1;
  min-width: 300px;
  text-align: right;
  margin-top: 20px;
}

.image img,
.image image {
  width: 100%;
  max-width: 400px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.nach-unten {
  margin-top: 40px;
}

/* Galerie mit Weiherbildern */
.gallery1 {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 40px auto;
  max-width: 1200px;
  padding: 0 40px;
}

.gallery1 img {
  width: 300px;
  height: auto;
  display: block;
}

/* Bild unter Text */
.section-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin-top: 30px;
  display: block;
}

/* Galerie mit Regenbildern */
.gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 40px;
}

.gallery img {
  width: auto;
  max-height: 300px;
  height: auto;
  display: block;
  object-fit: contain;
}
.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 Handy
   ================================ */
@media (max-width: 768px) {
  .gallery,
  .gallery1 {
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
    gap: 10px;
  }

  .gallery img,
  .gallery1 img {
    width: 100%;
    max-width: 350px;
    height: auto;
  }
  
  .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;
    align-items: center;
    padding: 0 20px;
    gap: 20px;
  }
  }

    @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;
  }
}