
:root {
  --text-size: 1.2rem;
  --claim-size: 1.2rem;
}

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

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  font-family: 'Quicksand', sans-serif;
  color: #000000;
  background-color: #ffffff;
  background-image: none;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  transition: background-color 0.5s ease, color 0.5s ease;
  position: relative;
  z-index: 0;
}

/* Hauptcontainer */
.container {
  position: absolute;
  top: 12vh;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  z-index: 1;
}

/* Logo + Bild */
.image {
  width: 60%;
  height: auto;
  max-width: 70vw;
  cursor: pointer;
}

@media (min-width: 768px) {
  .image {
    width: 320px;
    max-width: none;
  }
}

/* Textzeilen */
.text {
  margin-top: 0.1rem;
  font-size: var(--text-size);
  letter-spacing: 0.06em;
  line-height: 1.6;
  text-transform: uppercase;
}

/* Fixierter Banner oben */
.top-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 120px;
  background-image: url('markise-banner.png');
  background-repeat: repeat-x;
  background-position: top center;
  background-size: auto 100%;
  z-index: 1000;
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.top-banner.shown {
  transform: translateY(0);
  opacity: 1;
}

.top-banner.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

/* Footer fixiert */
.footer {
  position: fixed;
  bottom: 0;
  width: 100vw;
  text-align: center;
  padding: 16px 0 25px 0;
  font-size: 18px;
  background: transparent;
  z-index: 1000;
}

/* Sprachwahl */
.lang-select {
  margin-top: 0.6rem;
}

.lang-select .lang {
  color: #555;
  margin: 0 0.8rem;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.3s, color 0.3s;
  text-decoration: none;
  font-size: 18px;
}

.lang-select .lang:hover {
  opacity: 1;
  text-decoration: underline;
}

.lang-select .lang.active {
  color: #222;
  opacity: 1;
  text-decoration: underline;
}

@keyframes zoomLoop {
  0%   { background-size: 104%; }
  50%  { background-size: 100%; }
  100% { background-size: 104%; }
}