body {
    margin: 0;
    padding: 0;
    background: #fff;
    color: #222;
    font-family: Arial, sans-serif;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 850px;
    min-width: 400px;
    height: 180px; /* ggf. erhöhen */
    z-index: 10;
    background: transparent;
    pointer-events: none;
}


.logo {
font-family: 'Sreda', sans-serif;
  font-size: 80px;
  letter-spacing: 0.01em;
  line-height: 0.9;
  margin: 30px 0 0 40px;
  color: oklch(90.109% 0.2328 127.707);
  white-space: pre-line;
  word-break: keep-all;
  width: max-content;
}





main {
    max-width: 100vw;
    margin: 0;
    padding: 0;
    padding-top: 60px;
    min-height: 80vh;
    position: relative;
    overflow-x: hidden;
}

.thema {
    display: none;
    min-height: 60vh;
    position: relative;
    width: 100vw;
    margin: 0;
    padding: 0;
}

.thema.active {
    display: block;
}

.thema-label {
    position: absolute;
    top: 24px;
    left: 54vw;
    font-size: 0.95rem;
    color: #888;
    background: rgba(255,255,255,0.8);
    padding: 3px 12px 3px 8px;
    border-radius: 8px;
    z-index: 12;
    font-weight: 400;
    letter-spacing: 0.04em;
    pointer-events: none;
}

.bilder-collage {
    position: relative;
    width: 100vw;
    min-height: 60vh;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
}
.bild {
    position: absolute;
    border: none;
    box-shadow: none;
    background: #eee;
    object-fit: cover;
  
}
.bild.contain {
  object-fit: contain;
  background: #fff; /* optional neutraler Hintergrund */
}

/* Einzelbild mittig */
.bilder-collage img:only-child {
    left: 50% !important;
    transform: translateX(-50%);
    width: 70vw !important;
    height: 70vh !important;
}

.arrow {
    position: absolute;
    top: 75%;         /* unteres Drittel */
    font-size: 2rem;
    background: none;
    border: none;
    color: #222;
    cursor: pointer;
    z-index: 20;
    outline: none;
    transition: color 0.2s;
    transform: translateY(-50%);
    opacity: 0.7;
}
.arrow.left { left: 30px; }
.arrow.right { right: 30px; }
.arrow:hover {
    color: #888;
    opacity: 1;
}


footer {
    width: 100vw;
    position: relative;
    text-align: left;
    margin-top: 60px;
    padding: 0;
    min-height: 50px;
}

.footer-info {
    font-size: 0.8rem;
    color: #888;
    margin: 20px 0 20px 30px;
    line-height: 1.4;
}

.legal-links {
  position: fixed;
  right: 18px;
  bottom: 12px;
  z-index: 250;
  background: rgba(255,255,255,0.85);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.93rem;
  color: #888;
}
.legal-links a {
  color: #888;
  text-decoration: underline;
}
.legal-links a:hover {
  color: #222;
}
@media (max-width: 900px) {
  .legal-links {
    right: 8px;
    bottom: 8px;
    font-size: 0.85rem;
  }
}


/* Bilder laufen unter das Logo */
header { pointer-events: none; }
.logo { pointer-events: auto; }

/* Mobile Anpassung */
@media (max-width: 900px) {
    .logo { font-size: 1.4rem; margin: 10px 0 0 10px; }
    header { width: 220px; height: 45px; }
    .bild {
        position: static !important;
        width: 90vw !important;
        height: auto !important;
        max-width: 100vw !important;
        margin: 20px auto 0 auto !important;
        left: 0 !important;
        top: 0 !important;
        transform: none !important;
        display: block !important;
    }
    .bilder-collage { min-height: 30vh; }
    .arrow { font-size: 2.5rem; }
    .arrow.left { left: 10px; }
    .arrow.right { right: 10px; }
    .footer-info { font-size: 0.75rem; margin-left: 10px; }
    .thema-label {
        position: static;
        display: block;
        margin: 10px 0 10px 0;
        background: none;
        padding: 0;
        left: auto;
        top: auto;
        border-radius: 0;
    }
.legal-links {
  position: fixed;
  right: 18px;
  bottom: 12px;
  z-index: 250;
  background: rgba(255,255,255,0.85);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.93rem;
  color: #888;
}
.legal-links a {
  color: #888;
  text-decoration: underline;
}
.legal-links a:hover {
  color: #222;
}
@media (max-width: 900px) {
  .legal-links {
    right: 8px;
    bottom: 8px;
    font-size: 0.85rem;
  }
}

