:root {
  --ember: #ff6b35;
  --coral: #e8402f;
  --asphalt: #1a1a1f;
  --card: #26262c;
  --text: #f5f5f0;
  --muted: #a5a5ad;
  --maxw: 900px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--asphalt);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
}

header {
  position: relative;
  /* Cineastisches Hero-Foto mit dunklem Verlauf unten (für lesbare Schrift).
     Solange kein hero.jpg vorhanden ist, greift der warme Fallback-Verlauf. */
  background:
    linear-gradient(180deg, rgba(14,12,20,.12) 0%, rgba(14,12,20,.42) 50%, rgba(14,12,20,.9) 100%),
    linear-gradient(160deg, #2a160e 0%, #3d1f0e 100%);
  background-size: cover;
  background-position: center 33%;
  padding: 2rem 1.5rem 22vh;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
}
/* Sobald du website/hero.jpg ablegst, wird es automatisch zum Hintergrund. */
header.with-photo {
  background:
    linear-gradient(180deg, rgba(14,12,20,.12) 0%, rgba(14,12,20,.42) 50%, rgba(14,12,20,.9) 100%),
    url("hero.jpg");
  background-size: cover;
  background-position: center 33%;
}

h1 { font-size: 4.2rem; margin: .2rem 0 .4rem; letter-spacing: -1px; color: #fff; text-shadow: 0 2px 22px rgba(0,0,0,.65); }
h1 .four { color: var(--ember); font-size: 1.18em; } /* Orange, etwas größer als Bike/Love */
.claim { color: #fff; opacity: .96; text-transform: uppercase; letter-spacing: 2.5px; font-weight: 700; margin: 0 0 .45rem; font-size: 1.05rem; text-shadow: 0 2px 14px rgba(0,0,0,.75); }
.tagline { color: #fff; opacity: .9; letter-spacing: 3px; text-transform: uppercase; font-weight: 700; font-size: .8rem; margin: .1rem 0 0; text-shadow: 0 2px 10px rgba(0,0,0,.75); }

main { max-width: var(--maxw); margin: 0 auto; padding: 3rem 1.5rem 4.5rem; }
.lead { font-size: 1.3rem; line-height: 1.75; }

h2 { font-size: 1.5rem; margin-top: 2.5rem; }
h3 { font-size: 1.1rem; margin-top: 1.8rem; }

a { color: var(--ember); }

.features { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); margin: 2.5rem 0; }
.feature { background: var(--card); border-radius: 16px; padding: 1.7rem; }
.feature .icon { font-size: 2.3rem; }
.feature h3 { margin: .6rem 0 .4rem; font-size: 1.3rem; }
.feature p { margin: 0; color: var(--muted); font-size: 1.05rem; line-height: 1.6; }

.notice {
  background: rgba(255, 107, 53, .12);
  border-left: 3px solid var(--ember);
  padding: 1rem 1.2rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  font-size: .95rem;
}

table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: .93rem; }
th, td { text-align: left; padding: .6rem .5rem; border-bottom: 1px solid #38383f; vertical-align: top; }
th { color: var(--ember); }

nav.pagelinks { text-align: center; padding: 1.5rem; border-top: 1px solid #38383f; }
nav.pagelinks a { margin: 0 .7rem; font-size: .92rem; white-space: nowrap; }

footer { text-align: center; color: var(--muted); font-size: .85rem; padding: 0 1.5rem 3rem; }

.back { display: inline-block; margin-bottom: 1.5rem; color: var(--muted); text-decoration: none; }
