/* Reset light */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
position:relative;
 background-color: white; padding:1em;
  min-height: 100vh;
  display: flex;
  justify-content: center; /* horizontal */

}

body::after {
position:fixed;left:0; top:0; width:100vw;height:100vh; content:''; background:url('bg.png'); background-size:cover; background-position:center; z-index:-1; opacity:0.5;}


 h1 {text-transform: uppercase; padding:0.2em; text-align: right;}
h2 {padding:1em 0em 1.5em 0em;}
h3 {padding:0.5em 0em 1em 0em; font-size:1.2em;}
/* Header */
.header {
  background: #111;
  color: #fff;
  padding: 0 1rem;
}

/* Navigation */
.nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* Menü */
.menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.menu li a:hover {
  text-decoration: underline;
}

/* Burger Button */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  width: 26px;
  height: 3px;
  background: #fff;
  display: block;
}

/* Mobile */
@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .menu {
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: #111;
    flex-direction: column;
    gap: 0;
    display: none;
  }

  .menu li {
    border-top: 1px solid #333;
  }

  .menu li a {
    padding: 1rem;
    display: block;
  }

  .menu.open {
    display: flex;
  }
}










.start-wrapper {
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1rem;
  align-items: center;
}

.map-column,
.info-column {
  flex: 1;
}

/* Karte */
.map-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.map-link iframe {
  width: 100%;
  height: 350px;
  border: 0;
  display: block;
  pointer-events: none; /* Klick geht auf den Link */
}

/* Overlay-Hinweis */
.map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.map-link:hover .map-overlay {
  opacity: 1;
}

/* Mobile */
@media (max-width: 768px) {
  .start-wrapper {
    flex-direction: column;
  }

  .map-link iframe {
    height: 280px;
  }
}


hr {
opacity:0;}

footer ul {margin:0;}
footer ul li a {text-decoration: none; color:white;}



/* Grundlegender Textfluss */
body {
  line-height: 1.6;
}

/* Abschnittsüberschriften */
h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.4rem;

  font-size: 1.6rem;
  font-weight: 600;
  color: #1f2937;

  border-bottom: 2px solid #e5e7eb;
}

/* Unterüberschriften */
h3 {
  margin-top: 1.8rem;
  margin-bottom: 0.5rem;

  font-size: 1.2rem;
  font-weight: 600;
  color: #374151;
}

/* Text unter Überschriften */
h2 + p,
h3 + p,
h3 + ul {
  margin-top: 0;
}

/* Listen sauber einrücken */
ul {
  margin: 0.5rem 0 1rem 1.2rem;
  padding: 0;
}

/* Absätze */
p {
  margin: 0 0 1rem 0;
}
