/* assets/style.css */
/* Ziel: Header #425F8A, Seitenhintergrund hell, Content-Bereiche weiß, sehr gut lesbar */

:root{
  /* Brand */
  --brand-blue:#425F8A;
  --accent:#ff7a18;

  /* Neutrals */
  --page:#f3f6fb;         /* Seitenhintergrund (hell) */
  --surface:#ffffff;      /* Karten/Content */
  --surface-2:#f7f9fc;    /* leichte Abhebung */
  --text:#111827;         /* Haupttext */
  --muted:#475569;        /* Sekundärtext */
  --line:#e5e7eb;         /* Linien/Borders */

  /* Effects */
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.10);

  /* Layout */
  --max:1100px;
  --radius:16px;
}

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

a{color:inherit;text-decoration:none}
.container{max-width:var(--max);margin:0 auto;padding:24px}

/* Header / Navigation */
header.topbar .container{
  padding-left:24px;
  padding-right:24px;
}
.topbar{
  background:var(--brand-blue);
  border-bottom:1px solid rgba(255,255,255,.18);
}
.nav{
  position:sticky;
  top:0;
  z-index:20;
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:18px 0;
}

/* Brand / Logo (WICHTIG: nur eine Regel, keine doppelten height-Angaben) */
.brand{
  display:flex;
  align-items:center;
  gap:0;
  color:#fff;
  min-height:56px;           /* sorgt für Platz im Header */
}

/* Header-Logo Größe */
.brand img{
  height:80px;               /* <- HIER größer/kleiner machen (56–80px) */
  width:auto;
  display:block;
  max-height:none;
}

/* falls du inline SVG nutzt */
.brand svg{
  height:64px;
  width:auto;
  display:block;
}
.brand svg text{ fill:#fff; }

/* Subtext (bei dir aktuell nicht genutzt, kann bleiben) */
.brand .sub{
  font-size:12px;
  font-weight:800;
  opacity:.95;
  color:#fff;
  white-space:nowrap;
}

.menu{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}
.menu a{
  color:rgba(255,255,255,.92);
  font-weight:700;
  padding:8px 10px;
  border-radius:999px;
}
.menu a:hover{
  color:#fff;
  background:rgba(255,255,255,.12);
}

/* Hero */
.hero{padding:24px 0 16px}
.kicker{
  color:var(--brand-blue);
  font-weight:900;
  letter-spacing:.6px;
  text-transform:uppercase;
  font-size:12px;
}
h1{
  margin:10px 0 10px;
  font-size:40px;
  line-height:1.05;
}
.lead{
  color:var(--muted);
  font-size:18px;
  line-height:1.6;
  max-width:75ch;
}
@media (max-width:900px){h1{font-size:34px}}

/* Layout grids */
.grid{display:grid;gap:16px}
.grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
@media (max-width:900px){.grid-2,.grid-3{grid-template-columns:1fr}}

/* Content areas (weiß) */
.card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}
.card h2,.card h3{margin:8px 0 8px}
.card p{color:var(--muted);margin:0 0 12px;line-height:1.6}

/* Pills */
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  background:var(--surface-2);
  border:1px solid var(--line);
  color:var(--muted);
  font-weight:800;
  font-size:12px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:10px 14px;
  font-weight:900;
  border:1px solid var(--line);
  gap:10px;
  cursor:pointer;
  user-select:none;
}
.btn-primary{
  background:var(--brand-blue);
  color:#fff;
  border-color:transparent;
}
.btn-primary:hover{filter:brightness(1.05)}
.btn-ghost{
  background:#fff;
  color:var(--text);
}
.btn-ghost:hover{background:var(--surface-2)}

.split{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  margin-top:14px;
}

/* Lists & separators */
.list{margin:0;padding-left:18px;color:var(--muted);line-height:1.7}
.hr{height:1px;background:var(--line);margin:18px 0}

/* Footer */
.footer{
  padding:30px 0;
  color:var(--muted);
  font-size:14px;
}
.footer a{
  color:var(--muted);
  text-decoration:underline;
  text-decoration-color:rgba(17,24,39,.25);
}
.footer a:hover{color:var(--text)}

/* Floating contact buttons */
.fab{
  position:fixed;
  right:18px;
  bottom:18px;
  display:flex;
  flex-direction:column;
  gap:10px;
  z-index:99;
}
.fab a{
  background:#ffffff;
  border:1px solid var(--line);
  padding:10px 12px;
  border-radius:999px;
  font-weight:900;
  box-shadow:var(--shadow);
}
.fab a:hover{background:var(--surface-2)}

/* OPTIONAL: allgemeine Logo-Klasse (nur nutzen, wenn du sie im HTML verwendest)
.logo{ height:64px; width:auto; display:block; }
*/
/* Anker-Ziele nicht vom Sticky Header verdecken lassen */
#pakete{
  scroll-margin-top: 110px; /* anpassen, z.B. 90–140 */
}