/* ============================================================
   ProfiBüro GO – Stylesheet für Impressum und Datenschutz
   Nutzt dieselben Tokens wie index.html, aber nur den Teil,
   den reine Textseiten brauchen.
============================================================ */
:root {
  --primary:       #1C3D5A;
  --primary-dark:  #122840;
  --accent:        #C96A00;
  --accent-bg:     #FFF3E0;
  --bg:            #FAFAF8;
  --bg-section:    #F2EFE8;
  --text:          #1A1A1A;
  --text-muted:    #5A5A5A;
  --text-light:    #8A8A8A;
  --border:        #DDD8CF;
  --card:          #FFFFFF;
  --radius:        10px;
  --font-head:     'Lora', Georgia, serif;
  --font-body:     'Source Sans 3', system-ui, sans-serif;
  --nav-h:         68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; background: var(--bg); }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--accent); }

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.container { max-width: 780px; margin: 0 auto; padding: 0 24px; }

/* --- Kopfzeile --- */
.rt-nav {
  height: var(--nav-h);
  background: var(--card);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.rt-nav .container {
  max-width: 1160px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.rt-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }

.rt-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rt-logo-icon svg { width: 19px; height: 19px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.rt-logo-text {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 600;
  color: var(--primary-dark);
}

.rt-logo-text span { color: var(--accent); }
.rt-zurueck { font-size: 15px; font-weight: 600; color: var(--text-muted); text-decoration: none; white-space: nowrap; }
.rt-zurueck:hover { color: var(--accent); }

/* --- Inhalt --- */
.rt-main { padding: 64px 0 88px; }

.rt-main h1 {
  font-family: var(--font-head);
  font-size: clamp(30px, 5vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--primary-dark);
  margin-bottom: 12px;
  text-wrap: balance;
}

.rt-stand { font-size: 14px; color: var(--text-light); margin-bottom: 44px; }

.rt-main h2 {
  font-family: var(--font-head);
  font-size: clamp(21px, 3vw, 26px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--primary-dark);
  margin: 48px 0 14px;
  text-wrap: balance;
}

.rt-main h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 30px 0 8px;
}

.rt-main p { margin-bottom: 16px; color: var(--text-muted); }
.rt-main strong { color: var(--text); font-weight: 600; }

.rt-main ul { margin: 0 0 18px 0; padding-left: 22px; color: var(--text-muted); }
.rt-main li { margin-bottom: 7px; }

.rt-adresse {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 22px;
  line-height: 1.8;
}

/* Platzhalter: muss vor dem Livegang ersetzt werden */
.pf {
  background: #FFE9C7;
  border-bottom: 2px solid var(--accent);
  padding: 1px 6px;
  border-radius: 3px;
  font-weight: 600;
  color: #7A3E00;
  font-size: 0.95em;
}

.rt-hinweis {
  background: var(--accent-bg);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 28px 0;
  font-size: 15px;
  color: #7A3E00;
}

.rt-hinweis strong { color: #5E3000; }
.rt-hinweis p:last-child { margin-bottom: 0; }

/* --- Weiterlesen-Block am Artikelende --- */
.weiterlesen {
  margin: 44px 0 8px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.weiterlesen-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}

.weiterlesen a {
  display: block;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.weiterlesen a:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); transform: translateY(-2px); border-color: var(--accent); }
.weiterlesen strong { display: block; font-family: var(--font-head); font-size: 18px; color: var(--primary-dark); margin-bottom: 5px; }
.weiterlesen span { font-size: 14.5px; color: var(--text-muted); line-height: 1.55; }

/* --- Fußzeile --- */
.rt-footer {
  background: #0C1D2A;
  padding: 32px 0;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
}

.rt-footer .container {
  max-width: 1160px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.rt-footer a { color: rgba(255,255,255,0.55); text-decoration: none; }
.rt-footer a:hover { color: #fff; }
.rt-footer nav { display: flex; flex-wrap: wrap; gap: 10px 20px; }

@media (max-width: 560px) {
  .rt-main { padding: 44px 0 64px; }
  .rt-adresse { padding: 18px 20px; }
}
