﻿/* public/style.css */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root{
  --bg: #ffffff;
  --surface: #f6f7f9;
  --border: rgba(17,17,17,.10);
  --text: #111111;
  --muted: rgba(17,17,17,.68);
  --accent: #0a7a66;          /* Handsli-Grün (anpassbar) */
  --accent2: #f2a900;         /* optionaler Akzent */
  --radius: 18px;
  --shadow: 0 10px 30px rgba(17,17,17,.08);
}

*{ box-sizing:border-box; }
html, body{ margin:0; padding:0; }
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a{ color:inherit; }
.container{ max-width: 1100px; margin: 0 auto; padding: 22px; }

header{
  position: sticky; top: 0;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 5;
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between; gap: 16px;
}
.brand{
  font-weight: 800; letter-spacing: .2px; text-decoration:none;
  display:flex; align-items:center; gap:10px;
}
.badge{
  font-size: 12px; font-weight: 700;
  padding: 4px 10px; border: 1px solid var(--border); border-radius: 999px;
  color: var(--muted); background: #fff;
}
.nav{ display:flex; gap: 16px; flex-wrap:wrap; }
.nav a{ text-decoration:none; color: var(--muted); font-weight: 600; }
.nav a:hover{ color: var(--text); }

.hero{
  padding: 54px 0 20px;
  background:
    radial-gradient(900px 500px at 85% 10%, rgba(10,122,102,.14), transparent 60%),
    radial-gradient(700px 400px at 15% 30%, rgba(242,169,0,.10), transparent 55%);
}
.hero-grid{
  display:grid; grid-template-columns: 1.2fr .8fr; gap: 26px;
  align-items: center;
}
.kicker{
  font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted);
}
h1{
  margin: 12px 0 12px;
  font-size: 44px; line-height: 1.08;
}
.lead{
  margin: 0 0 18px;
  font-size: 18px;
  color: var(--muted);
  max-width: 62ch;
}
.actions{ display:flex; gap: 12px; flex-wrap:wrap; align-items:center; }
.btn{
  display:inline-block; text-decoration:none; font-weight: 700;
  padding: 12px 16px; border-radius: 12px;
  border: 1px solid var(--border);
  background:#fff;
}
.btn-primary{
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #0c8a74);
  box-shadow: var(--shadow);
}
.btn-primary:hover{ filter: brightness(.98); }
.btn-ghost{
  background: transparent;
  color: var(--text);
}
.meta{
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.hero-art{
  height: 320px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background:
    radial-gradient(160px 160px at 35% 40%, rgba(10,122,102,.40), transparent 70%),
    radial-gradient(220px 220px at 70% 55%, rgba(242,169,0,.28), transparent 70%),
    linear-gradient(180deg, #fff, #f4f6f8);
  box-shadow: var(--shadow);
}

.trust{
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(246,247,249,.65);
}
.trust-row{
  display:flex; flex-wrap:wrap; gap: 10px 14px; align-items:center;
  color: var(--muted); font-weight: 600; font-size: 13px;
}
.chip{
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background:#fff;
}

.section{ padding: 44px 0; }
.section.alt{ background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section h2{ margin:0 0 10px; font-size: 28px; }
.section p{ margin:0 0 14px; color: var(--muted); max-width: 80ch; }

.grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.card{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:#fff;
  padding: 16px;
  box-shadow: 0 1px 0 rgba(17,17,17,.03);
}
.card h3{ margin: 0 0 8px; font-size: 16px; }
.card p{ margin: 0 0 10px; color: var(--muted); font-size: 14px; }
.card a{ color: var(--accent); text-decoration:none; font-weight: 700; }
.card a:hover{ text-decoration: underline; }

.footer{
  border-top: 1px solid var(--border);
  padding: 18px 0 30px;
}
.footer-inner{ display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap: 12px; }
.small{ font-size: 13px; color: var(--muted); }
.footer-links{ display:flex; gap: 10px; flex-wrap:wrap; }

@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-art{ height: 240px; }
  .grid{ grid-template-columns: 1fr; }
  h1{ font-size: 36px; }
}
