/*
  Advokatur Kamer – Basis-Stylesheet
  Minimalistisch, seriös, responsive. 
  Farbpalette: Dunkelblau, Hellgrau, Akzent in Gold.
*/

:root {
  --bg: #ffffff;
  --text: #1b1f23;
  --muted: #5a6470;
  --brand: #0b2a4a;   /* dunkles Blau */
  --brand-weak: #184b7a;
  --accent: #b4891d;  /* Goldton für Akzente */
  --border: #e6e9ef;
  --card: #f8fafc;
  --maxw: 1100px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji"; color: var(--text); background: var(--bg); line-height: 1.6; }
img { max-width: 100%; display: block; height: auto; }
a { color: var(--brand-weak); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 16px; }
.section { padding: 64px 0; }
.muted { color: var(--muted); }
.nav { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,0.92); backdrop-filter: saturate(180%) blur(8px); border-bottom: 1px solid var(--border); }
.nav-container { display: flex; align-items: center; justify-content: space-between; max-width: var(--maxw); margin: 0 auto; padding: 12px 16px; }
.logo { font-weight: 700; letter-spacing: 0.3px; color: var(--brand); }
.menu a { margin-left: 18px; color: var(--text); font-weight: 500; }
.menu a:hover { color: var(--brand-weak); }
.hero { background: linear-gradient(135deg, #0b2a4a 0%, #133a63 55%, #184b7a 100%); color: #fff; }
.hero-content { max-width: var(--maxw); margin: 0 auto; padding: 96px 16px; text-align: center; }
.hero h1 { margin: 0 0 8px 0; font-size: clamp(28px, 6vw, 44px); }
.hero-sub { margin: 0; opacity: 0.9; }
.hero-text { margin: 16px auto 28px; max-width: 700px; font-size: clamp(16px, 2.8vw, 20px); }
.cta { display: inline-block; background: var(--accent); color: #fff; padding: 12px 20px; border-radius: 8px; font-weight: 600; box-shadow: 0 4px 14px rgba(0,0,0,0.12); }
.cta:hover { filter: brightness(1.05); text-decoration: none; }
.about .grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
.photo { max-width: 360px; }
.photo img { border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.about h2 { margin-top: 0; }
.about h3 { margin-bottom: 6px; }
.about p { color: var(--muted); }
.services { background: var(--card); }
.cards { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 20px; }
.card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 20px; box-shadow: 0 2px 10px rgba(0,0,0,0.04); }
.card h3 { margin-top: 0; color: var(--brand); }
.card p { margin: 8px 0 0; color: var(--muted); }
.contact a { font-weight: 600; }
.contact-form { margin-top: 12px; max-width: 720px; }
.form-row { margin-bottom: 14px; }
.form-row label { display: block; font-weight: 600; margin-bottom: 6px; }
.form-row input[type="text"], .form-row input[type="email"], .form-row textarea { width: 100%; padding: 12px; border: 1px solid var(--border); border-radius: 10px; background: #fff; color: var(--text); }
.form-row textarea { resize: vertical; }
.form-row .error { color: #b3261e; font-size: 13px; height: 16px; display: block; }
.consent .checkbox { display: flex; align-items: flex-start; gap: 10px; }
.consent input[type="checkbox"] { margin-top: 4px; }
.form-hint { font-size: 13px; color: var(--muted); }
.btn { appearance: none; border: none; background: var(--brand); color: #fff; padding: 12px 18px; border-radius: 10px; font-weight: 600; cursor: pointer; }
.btn:hover { filter: brightness(1.05); }
.btn-ghost { background: transparent; color: var(--brand); border: 1px solid var(--brand); }
.legal { background: #fff; }
.legal address { font-style: normal; line-height: 1.7; }
footer { border-top: 1px solid var(--border); padding: 28px 16px; text-align: center; color: var(--muted); background: #fff; }
footer p { margin: 6px 0; }
h1, h2, h3 { line-height: 1.25; }
h2 { font-size: clamp(22px, 4.5vw, 32px); margin: 0 0 10px 0; }
h3 { font-size: clamp(18px, 3.5vw, 22px); }
p { font-size: 16px; }
.cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 2000; padding: 0 16px 16px; }
.cookie-inner { max-width: var(--maxw); margin: 0 auto; background: #ffffff; border: 1px solid var(--border); box-shadow: 0 8px 30px rgba(0,0,0,0.1); border-radius: 12px; padding: 16px; }
.cookie-inner p { margin: 0 0 10px 0; }
.cookie-actions { display: flex; gap: 10px; }
@media (min-width: 720px) { .about .grid { grid-template-columns: 360px 1fr; align-items: start; } .cards { grid-template-columns: repeat(3, 1fr); } }
@media (prefers-color-scheme: dark) { :root { --bg: #0b1117; --text: #e7ecf2; --muted: #b7c0cb; --border: #1f2937; --card: #0e1621; } .nav { background: rgba(12,17,23,0.7); } .card { background: #0f1722; } a { color: #8ab4ff; } .cookie-inner { background: #0f1722; } }
