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;
}


/* Überschrift wie bei anderen Seiten */
.text {
  padding: 60px 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.text h2 {
  font-size: 48px;
  font-weight: 700;
  color: #222;
  margin: 0;
  text-align: left;
}

/* Kartenbereich mit Hintergrundbild */
.info-karten {
  background-image: url("Infobild.JPEG");
  background-size: cover;
  background-position: center;
  padding: 80px 40px;
}

.info-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Karten selbst */
.card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  width: 300px;
  position: relative;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: left;
}

.card h3 {
  margin-top: 0;
  font-size: 20px;
  color: #333;
}

.card p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin: 10px 0;
}

/* Nummern-Badge */
.number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: #eee;
  width: 50px;
  height: 50px;
  font-size: 24px;
  font-weight: bold;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
}
.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 für Handy
   ================ */
@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;
  }

  .text {
    padding: 30px 20px 10px;
  }

  .text h2 {
    font-size: 32px;
    text-align: center;
  }

  .info-karten {
    padding: 40px 20px;
    background-position: center;
  }

  .info-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .card {
    width: 100%;
    max-width: 340px;
    padding: 25px;
  }

  .number {
    top: -20px;
    width: 40px;
    height: 40px;
    font-size: 20px;
    line-height: 40px;
  }

  .card h3 {
    font-size: 18px;
  }

  .card p {
    font-size: 15px;
  }

  .footer {
    font-size: 13px;
    padding: 15px 10px;
  }

  .footer a {
    display: block;
    margin: 6px 0;
  }
}