/* ===============================
   BBH – INDEX / GANZER HINTERGRUND
=============================== */

html, body {
  height: 100%;
}

body {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;

  /* GANZER HINTERGRUND – statischer Regenbogen */
  background: linear-gradient(
    135deg,
    #fde2e2,
    #fff1c1,
    #e6f4ea,
    #e3edff,
    #f1e6ff
  );

  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}

/* Gesamter Klickbereich */
.entry {
  max-width: 760px;
  padding: 28px;
  text-decoration: none;
  color: #000; /* neutral */
}

/* Logo */
.entry img {
  max-width: 100%;
  height: auto;
  margin: 16px auto 32px; /* kompakter Abstand oben & unten */
  display: block;
}

/* Überschrift */
.entry h1 {
  color: #000;
  font-size: 2rem;
  margin-bottom: 12px; /* enger Abstand zum Logo */
}

/* Claim & Text – enger Abstand für kompakte Ansicht */
.claim {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 8px; /* kompakter Abstand */
  color: #000;
}

.text {
  font-size: 1rem;
  line-height: 1.5; /* etwas dichter für kompakte Ansicht */
  margin: 0 0 16px; /* kompakter Abstand unter Fließtext */
  color: #000;
}

/* Eintritt */
.enter {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #000;
}

.entry:hover .enter {
  text-decoration: underline;
}

/* Sanftes Einblenden */
.fade-in {
  opacity: 0;
  animation: fadeIn 1.2s ease-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Barrierefreiheit */
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    animation: none;
    opacity: 1;
  }
}
