:root {
  /* Farben aus dem Logo */
  --color-bg: #f0e8da;        /* Creme-Hintergrund */
  --color-dark: #2c2b2a;      /* Anthrazit */
  --color-cream: #e9e0cd;     /* helle Schrift */
  --color-rust: #bf4e2e;      /* Rostrot */
  --color-sage: #8b9683;      /* Salbeigrün */
  --color-muted: #6f6a62;
  --max-width: 760px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: var(--color-dark);
  background: var(--color-bg);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Hintergrund-Diashow ---------- */
.bg-slideshow {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: var(--color-bg);
  pointer-events: none;
}

.bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2.5s ease-in-out;
}

.bg-layer.is-visible {
  opacity: 0.09; /* ganz schwach */
}

/* ---------- Landing / Coming Soon ---------- */
.landing {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.landing-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
  gap: 1rem;
}

.logo-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.18));
}

.coming-soon {
  margin-top: 1.5rem;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-rust);
}

.tagline {
  color: var(--color-muted);
  max-width: 32ch;
}

/* ---------- Footer ---------- */
.landing-footer {
  padding: 1.75rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(44, 43, 42, 0.12);
}

.landing-footer a {
  color: var(--color-dark);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.landing-footer a:hover {
  color: var(--color-rust);
}

/* ---------- Impressum / Unterseiten ---------- */
.page-header {
  padding: 1.5rem;
}

.back-link {
  color: var(--color-dark);
  text-decoration: none;
  font-weight: 600;
}

.back-link:hover {
  color: var(--color-rust);
}

.page-main {
  padding-top: 1rem;
  padding-bottom: 3rem;
}

.page-main h1 {
  color: var(--color-rust);
  margin-bottom: 1.5rem;
}

.page-main h2 {
  color: var(--color-sage);
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.page-main a {
  color: var(--color-rust);
}
