    body {
      margin: 0;
      padding-top: 20px;
      font-family: Arial, sans-serif;
      background: #000 url("left-bg.jpg") left top no-repeat,
                        url("right-bg.jpg") right top no-repeat;
      background-size: contain;
      background-color: #070709;
      color: #f7f7f7;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center; /* vertikale Zentrierung */
  gap: 1rem;
  background: #000;
  padding: 0 1rem; /* horizontaler Innenabstand */
  z-index: 1000;
  border-bottom: 1px solid white;
}


  nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem;
  }

  .dropdown {
    position: relative;
	margin-top: 0px;
	margin-left: -2px;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    background: #070709;
    padding: 0.5rem 0;
    top: 100%;
    left: 0;
    min-width: 160px;
    z-index: 1000;
  }

  .dropdown-content a {
    display: block;
    padding: 0.5rem 1rem;
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }

  .dropdown-content a:hover {
    background: #070709;
  }

    .banner {
      width: 100%;
      background-color: #070709;
      text-align: center;
      padding: 30px 0;
      margin-left: -320px;   /* nach rechts */
    }

    .banner img {
      max-width: 90%;
      height: auto;
    }

    .content {
      max-width: 800px;
      margin: 40px auto;
      background-color: #070709;
      padding: 30px;
      flex: 1;
	  margin-top: -40px;
    }

    h1 {
      text-align: center;
    }
	footer {
      background-color: #000;
      text-align: center;
      padding: 15px;
      font-size: 0.9em;
	  border-top: 1px solid white;
    }

    footer a {
      color: #f7f7f7;
      text-decoration: none;
      margin: 0 10px;
    }

    footer a:hover {
      color: white;
    }
	a:link {
  color: #f7f7f7;         /* Standardfarbe für nicht besuchte Links */
  text-decoration: none;
  font-weight: bold;
}

a:visited {
  color: #f7f7f7;          /* Farbe für besuchte Links */
  font-weight: bold;
}

a:hover {
  color: darkred;           /* Farbe, wenn man mit der Maus drüberfährt */
  text-decoration: none;
  font-weight: bold;
}
html {
  scroll-behavior: smooth;
}
.fading-line {
  height: 2px;
  background: linear-gradient(to right, transparent, #4d1d1b 50%, transparent);
  margin: 2rem 0;
}
.news-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.news-post {
  background-color: #070709;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid #4d1d1b;
}

.news-post .date {
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
/* Galerie-Bild */
.gallery img {
  cursor: pointer;
  border: 2px solid #444;
  transition: 0.3s;
}

.gallery img:hover {
  opacity: 0.8;
}

/* Lightbox Overlay */
#lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border: 4px solid white;
}
.important {
    font-weight: bold;
    color: #ffffff;
}

