/* =====================================
   Grundlayout Startseite
   ===================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  color: #000;
  background-color: #fff;
  text-align: center;
  margin: 0;
}


/* =====================================
   Links
   ===================================== */

a:link,
a:visited {
  color: #000;
  text-decoration: underline;
}

a:hover {
  font-weight: bold;
  text-decoration: underline;
  transition: 0.3s ease;
}

/* =====================================
   Lauftext – unten am Screen
   (aktuell auskommentiert im HTML)
   ===================================== */

.ticker {
  position: fixed;
  bottom: 70px;
  left: 0;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  z-index: 100;
  background: transparent;
  color: #000;
  font-size: 16px;
  letter-spacing: 0.02em;
  padding: 4px 0;
}

.ticker span {
  display: inline-block;
  padding-left: 100%;
  animation: ticker-move 40s linear infinite;
}

@keyframes ticker-move {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.ticker a {
  color: #000;
  text-decoration: none;
  transition: 0.3s ease;
}

.ticker a:hover {
  text-decoration: underline;
}

/* =====================================
   Fullscreen Hintergrundbild mit Content
   ===================================== */

.fullscreen-bg {
  position: relative;
  width: 100vw;
  min-height: 100vh;

 /* background-image: url("/static/img/intro.jpg");*/
	background-color: #ffffff;   /* Weißer Hintergrund */
  background-image: none;      /* Bild aus */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
	
  display: flex;
  flex-direction: column;
  justify-content: center;   /* vertikal zentriert */
  align-items: center;       /* horizontal zentriert */
  text-align: center;

  padding: 0 20px;           /* nur seitlicher Abstand */
  gap: 60px;                 /* Abstand zwischen Name und Menü */
}

/* Name im Bild */

.fullscreen-bg .name {
  font-size: 20px;
  font-weight: normal;
  margin: 0;
}

/* Menü im Bild */

.fullscreen-bg .menu {
  line-height: 2.5;
  /* kein margin-top mehr – Abstand kommt über gap */
}

.menu-meta {
  display: block;
  margin-top: 30px;
  font-size: 14px;
  line-height: 1.4;
  opacity: 0.7;
  text-decoration: none;
}

.menu-meta a {
  text-decoration: none;
  color: #000;
}

/* =====================================
   Mobilanpassungen
   ===================================== */

@media (max-width: 700px) {
  body.index-page {
    font-size: 16px;
  }

  .fullscreen-bg {
    padding: 0 12px;
  }

  .fullscreen-bg .name {
    font-size: 18px;
  }

  .menu-meta {
    font-size: 13px;
  }
}