
/* base.css – Grunddesign */
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #333;
  background-color: #fefefe;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.5em;
}

a {
  color: #3a3a3a;
  text-decoration: underline;
  text-decoration-color: rgba(0,0,0,0.25);
}

a:hover,
a:focus {
  color: #1f1f1f;
  text-decoration-color: rgba(0,0,0,0.45);
}

.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 2rem;
}

section {
  padding: 2rem 1rem;
}

/* Standard = Quadrat */
.responsive-map-container {
  position: relative;
  width: 100%;
  padding-top: 100%;
}

/* Desktop – 16:9 Format */
@media (min-width: 768px) {
  .responsive-map-container {
    padding-top: 56.25%; /* 16:9 */
  }
}

#map-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* Header-Leiste */
.header-bar {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #fefefe;
  border-bottom: 1px solid #eee;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

/* Logo-Größe */
.header-logo img {
  max-height: 60px;
  height: auto;
  width: auto;
  display: block;
}

/* Footer */
footer {
  background-color: #f4f4f4;
  color: #777;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.95rem;
  border-top: 1px solid #ddd;
}
footer p {
  font-size: 0.9rem;
  color: #666;
  text-align: center;
  padding: 1rem 0;
}

footer a {
  color: #6b5b95;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
