/* Grundlagen */
body {
  background-color: #ffffff; 
  color: #1a1a1a;            
  margin: 0;
  line-height: 1.6;
  text-align: center;
  
}

/* Zentriert den Inhalt der Seite */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

/* Navigation Styling */
.site-header nav {
  display: flex;
  justify-content: space-between; /* Logo links, Links rechts */
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid #eeeeee; /* Hellgraue Linie */
  flex-wrap: wrap; 
  gap: 1rem;
}

.site-header ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
  align-items: center;
}

/* Links & Aktive Seite */
.site-header a {
  text-decoration: none;
  color: inherit;
}

.site-header a[aria-current="page"] {
  font-weight: bold;
  color: #0066cc; /* Blau für die aktive Seite */
}



/* Mobile Optimierung  */
@media (max-width: 600px) {
  .site-header nav {
    flex-direction: column;
    text-align: center;
  }
  
  .site-header ul {
    justify-content: center;
    width: 100%;
  }
}

/* Seiten Leisten*/
.sidebar-left,
.sidebar-right {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 160px;
  text-align: left;
  font-size: 0.85rem;
  line-height: 1.5;
}

.sidebar-left  { left:  1rem; }
.sidebar-right { right: 1rem; }

/* Bilder drin automatisch skalieren */
.sidebar-left  img,
.sidebar-right img {
  width: 100%;
  display: block;
  margin-bottom: 0.5rem;
}

/* Auf kleinen Bildschirmen (kein Platz) verstecken */
@media (max-width: 1280px) {
  .sidebar-left,
  .sidebar-right { display: none; }
}








/* 5. Leaflet Map */
#map { 
  height: 360px; 
  width: 100%;           
  max-width: 580px;      
  margin: 0 auto;        
  display: block;
  border-radius: 6px;
}

/* Contact form */
.form {
display: grid;
}

