/* Qed-Mathelabor — gemeinsame Gestaltung der beiden Seiten.
   Angelehnt an die App: Pergament und Navy, Serifen in den Überschriften.
   Bewusst schlicht: Das hier sind Textseiten, keine Werbung. */

:root {
    --grund: #f6f1e4;
    --grund-tief: #efe7d4;
    --schrift: #1e2733;
    --schrift-leise: #55606d;
    --navy: #16233a;
    --linie: #d9cfb8;
    --akzent: #2f5d8a;
}

@media (prefers-color-scheme: dark) {
    :root {
        --grund: #131c2b;
        --grund-tief: #1a2536;
        --schrift: #e9e3d4;
        --schrift-leise: #a3adba;
        --navy: #e9e3d4;
        --linie: #2c3a4f;
        --akzent: #8fb6dd;
    }
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    padding: 0;
    background: var(--grund);
    color: var(--schrift);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 1.05rem;
    line-height: 1.65;
}

.blatt {
    max-width: 44rem;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 4rem;
}

header.kopf {
    border-bottom: 1px solid var(--linie);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

h1, h2, h3 {
    font-family: Georgia, "Iowan Old Style", "Times New Roman", serif;
    color: var(--navy);
    line-height: 1.25;
    margin: 2.25rem 0 0.75rem;
}

h1 { font-size: 2rem; margin-top: 0; }
h2 { font-size: 1.35rem; }
h3 { font-size: 1.1rem; }

p, ul, ol { margin: 0 0 1rem; }
ul, ol { padding-left: 1.35rem; }
li { margin-bottom: 0.4rem; }

a { color: var(--akzent); }
a:hover { text-decoration: none; }

strong { font-weight: 650; }

.leise {
    color: var(--schrift-leise);
    font-size: 0.95rem;
}

.kernsatz {
    background: var(--grund-tief);
    border-left: 3px solid var(--akzent);
    border-radius: 0 6px 6px 0;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0 2rem;
}

.kernsatz p:last-child { margin-bottom: 0; }

hr {
    border: none;
    border-top: 1px solid var(--linie);
    margin: 2.5rem 0;
}

code {
    background: var(--grund-tief);
    padding: 0.1em 0.35em;
    border-radius: 4px;
    font-size: 0.9em;
}

nav.pfad {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

footer.fuss {
    border-top: 1px solid var(--linie);
    margin-top: 3rem;
    padding-top: 1.25rem;
    color: var(--schrift-leise);
    font-size: 0.9rem;
}

footer.fuss a { color: var(--schrift-leise); }

.knopfreihe {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.75rem 0;
}

.knopf {
    display: inline-block;
    padding: 0.6rem 1.1rem;
    border: 1px solid var(--linie);
    border-radius: 8px;
    background: var(--grund-tief);
    color: var(--navy);
    text-decoration: none;
    font-size: 0.98rem;
}

.knopf:hover { border-color: var(--akzent); }
