/* Layout und Grundstruktur */

/* Einheitliches Box-Modell */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}




body {
    background-size: cover;
    margin: 0;
    padding-top: 100px;
}

.container {
    display: flex;
}

.textbox {
    width: 80%;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #FFFFFF;
    text-align: justify;
    hyphens: none;
}

.content {
  margin-top: 190px; /* vorher 140px → jetzt mehr Abstand nach unten */
  text-align: center;
}


.content img {
    max-width: 100%;
    height: auto;
    margin: 10px;
}

/* Schriftarten und Textstile */
.klUeSchrift {
    font-family: "Spectral SC", serif;
    font-weight: 200;
    font-size: 24px;
    color: #FFFFFF;
    text-align: center;
    margin-left: 10%;
    margin-right: 10%;
}
.weisseSchriftabstand {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    color: #FFFFFF;
    text-align: center;
}

.UeSchrift {
  position: fixed;
  top: 30px;
  left: 0;
  width: 100%;
  background-color: black;
  color: #FFFFFF;
  font-family: "Spectral SC", serif;
  font-size: clamp(50px, 2.5vw, 60px);
  font-weight: 200;
  text-align: center;
  z-index: 1000;
  
}


.roteSchrift {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(18px, 2.5vw, 20px); /* vorher: 14–18px */
    color: #ff5400;
    text-align: center;
    height: 24px;
padding-top: 10px;

}

.Notizen {
    font-family: Arial, Helvetica, sans-serif;
    font-size: medium;
    font-style: normal;
    color: #FFFFFF;
    text-align: left;
    margin-left: 10%;
    margin-right: 10%;
}

/* Navigation und Menü */
.menu {
  position: fixed;
  top: 95px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: black;
  list-style: none;
  padding: 5px 0;
  z-index: 1000;
  border: 1px solid white;
}



.menu li, .submenu li {
    padding: 5px 15px;
}

.menu li a, .submenu li a {
  text-decoration: none;
font-weight: bold;
  font-size: clamp(18px, 2.5vw, 24px); /* vorher: 14–18px */
  font-family: Arial, Helvetica, sans-serif;
}


.menu li a:hover, .menu li a:active {
    color: orange;
    text-decoration: underline;
}

.menu li.inactive {
    font-size: clamp(18px, 2.5vw, 24px); /* vorher: 14–18px */
    font-family: Arial, sans-serif;
    font-weight: bold;
    color: #FF5400;
    cursor: default;
}

.submenu {
    width: 100%;
    background-color: #FF5C00;
    text-align: center;
    position: fixed;
    margin-top: 40px;
    list-style: none;
    display: flex;
    justify-content: space-around;
}

.submenu li a:link,
.submenu li a:visited {
    color: white;
}

.submenu li a:hover {
    color: #04dcff;
}

.submenu li a:active {
    color: blue;
}

.submenu li.inactive {
    font-size: clamp(18px, 2.5vw, 24px); /* vorher: 14–18px */
    font-family: Arial, sans-serif;
    font-weight: bold;
    color: black;
    opacity: 0.7;
    cursor: default;
}

/* Kopfbereich */

.zwischenzeile {
  position: fixed;
  top: 80px;
  width: 100%;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: clamp(18px, 2.5vw, 24px); /* vorher: 14–18px */
  color: #FF5C00;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  padding: 5px 0;
}






.header-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: black;
    z-index: 998;
}

.fixed-subtitle {
    position: relative;
    top: 80px;
    width: 100%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    font-size: 1.2em;
    z-index: 1000;
}

/* Boxen */
.box, .boxnews, .boxkaufen {
    text-align: center;
    font-size: large;
    color: #000000;
    border-radius: 5px;
    margin: auto;
    padding: 5px;
    position: absolute;
}

.box {
    width: 80px;
    background-color: #3DE23A;
    right: 30px;
    top: 50px;
}

.boxnews {
    width: 100px;
    background-color: #EBBA81;
    left: 30px;
    top: 50px;
}

.boxkaufen {
    width: 80px;
    background-color: #B65555;
    right: 30px;
    top: 100px;
}

/* Footer und Laufschrift */
.footer {
    position: fixed;
    bottom: 0px;
    width: 100%;
    background-color: black;
    color: white;
    padding: 10px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
}

.footer-nav a:hover {
    text-decoration: underline;
}


.marquee {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: black;
    color: yellow;
    padding: 5px 0;
    white-space: nowrap;
    overflow: hidden;
    z-index: 999;
}

.marquee div {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}

/* Links */
a:link, a:visited, a:hover, a:active {
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    text-decoration: none;
}

/*
* {
  outline: 1px solid red;
}*/
