/* Gemeinsames Stylesheet für Impressum, Datenschutz und AGB.
   Bewusst schlank gehalten – diese Seiten brauchen nur Typografie,
   Kopfzeile und Fußzeile, nicht das komplette Layout der Startseite. */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
    --green-light: #8EA87D;
    --green-dark: #2b3426;
    --cream: #F4EDE5;
    --offwhite: #F6F4F2;
    --white: #ffffff;
    --radius: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #2b3426;
    background: var(--offwhite);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #6d8a5e; text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--green-dark); }
ul, ol { padding-left: 1.3em; }

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

/* ===== KOPFZEILE ===== */
.rt-nav {
    background: var(--white);
    border-bottom: 1px solid rgba(43, 52, 38, 0.08);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 10;
}
.rt-nav .container {
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.rt-nav img { height: 42px; width: auto; }
.rt-zurueck {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green-dark);
    text-decoration: none;
}
.rt-zurueck svg { width: 18px; height: 18px; }
.rt-zurueck:hover { color: var(--green-light); }

/* ===== INHALT ===== */
.rt-inhalt { padding: 64px 0 80px; }
.rt-inhalt h1 {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px;
}
.rt-stand { font-size: 0.85rem; color: #8a9484; margin-bottom: 40px; }
.rt-inhalt h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 40px 0 12px;
    padding-top: 24px;
    border-top: 1px solid rgba(43, 52, 38, 0.1);
}
.rt-inhalt h2:first-of-type { border-top: 0; padding-top: 0; }
.rt-inhalt h3 { font-size: 1rem; font-weight: 700; margin: 24px 0 8px; }
.rt-inhalt p, .rt-inhalt ul, .rt-inhalt ol { margin-bottom: 14px; font-size: 0.95rem; }
.rt-inhalt li { margin-bottom: 6px; }

.rt-karte {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin-bottom: 20px;
}
.rt-karte p:last-child { margin-bottom: 0; }

/* Noch einzutragende Angaben – absichtlich auffällig,
   damit sie nicht unbemerkt live gehen. */
.rt-luecke {
    background: #fff3cd;
    border-bottom: 2px solid #d4a017;
    padding: 1px 6px;
    border-radius: 3px;
    font-weight: 600;
    color: #7a5c00;
}

/* ===== FUSSZEILE ===== */
.rt-footer {
    background: var(--green-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 40px 0;
    font-size: 0.85rem;
}
.rt-footer .container {
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.rt-footer a { color: rgba(255, 255, 255, 0.7); }
.rt-footer a:hover { color: var(--white); }
.rt-footer-links { display: flex; gap: 24px; }

@media (max-width: 640px) {
    .rt-inhalt { padding: 40px 0 56px; }
    .rt-nav img { height: 34px; }
    .rt-footer .container { flex-direction: column; align-items: flex-start; }
}
