/* ===== Basis ===== */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin: 0;
  background: #f7f7f7;
  color: #333;
}

/* ===== Karte ===== */
#map {
  height: 100vh;
}

/* Marker */
.marker {
  background: #007bff;
  color: white;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  border: 2px solid white;
}

/* Popup */
.popup h3 {
  margin: 0 0 5px;
  font-size: 16px;
}

.popup img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 5px;
}

.popup p {
  font-size: 14px;
}

/* Rechtliches Overlay */
.legal {
  position: fixed;
  bottom: 5px;
  left: 10px;
  background: rgba(255,255,255,0.7);
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 12px;
  z-index: 1000;
}

/* ===== Dokumentseiten ===== */
.container {
  max-width: 700px;
  margin: auto;
  padding: 20px;
  background: white;
  min-height: 100vh;
}

h1 {
  font-size: 26px;
  margin-bottom: 10px;
}

h2 {
  margin-top: 25px;
  font-size: 18px;
}

h3 {
  margin-top: 15px;
  font-size: 16px;
}

p {
  margin: 8px 0;
  line-height: 1.6;
}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.back {
  display: inline-block;
  margin-bottom: 15px;
  font-size: 14px;
}
