body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #222;
}

header {
  border-bottom: 2px solid #ccc;
}

.header-top {
  text-align: center;
  padding: 10px;
}

.header-top h2 {
  margin: 5px;
  font-size: 18px;
}

.header-top h3 {
  margin: 5px;
  font-size: 22px;
  font-weight: bold;
}

.lauftext {
  background: #c00;
  overflow: hidden;
  white-space: nowrap;
  color: white;
  font-weight: bold;
  padding: 6px 0;
  margin-top: 10px;
}

.scroll-text {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 18s linear infinite;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Navigation */
nav {
  background-color: #f7f7f7;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

nav ul.menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

nav ul.menu li {
  position: relative;
}

nav ul.menu li a {
  display: block;
  padding: 10px 18px;
  color: #000;
  text-decoration: none;
  font-weight: bold;
}

nav ul.menu li a:hover {
  background-color: #c00;
  color: white;
}

/* Dropdown */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  border: 1px solid #ccc;
  min-width: 180px;
  z-index: 10;
}

.dropdown-content li {
  display: block;
}

.dropdown-content li a {
  padding: 8px 10px;
  display: block;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Layout */
.content {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
}

.left-col {
  flex: 1 1 200px;
  text-align: center;
}

.logo {
  width: 120px;
  height: auto;
}

.web-links a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
}

.web-links a:hover {
  text-decoration: underline;
}

.right-col {
  flex: 3 1 400px;
  padding: 20px;
}

/*.foto-platzhalter {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-style: italic;
  margin-bottom: 20px;
}
*/
.foto-platzhalter img.responsive {
  max-width: 300px;  /* maximale Breite für das Bild */
  width: 100%;        /* passt sich kleineren Bildschirmen an */
  height: auto;       /* proportional skalieren */
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.responsive {
  width: 100%;
  height: auto;
}

.text-block {
  margin-bottom: 25px;
}

.text-block ul {
  padding-left: 20px;
}

footer {
  background: #f7f7f7;
  text-align: center;
  padding: 10px;
  border-top: 1px solid #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .content {
    flex-direction: column;
    align-items: center;
  }
  .left-col {
    margin-bottom: 20px;
  }
  nav ul.menu {
    flex-direction: column;
  }
}
