/* Platzhalter line-layer.de - statisch, ohne Fremdaufrufe */

@font-face {
    font-family: 'Jost';
    font-style: normal;
    font-weight: 400 500;
    font-display: swap;
    src: url('jost-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Jost';
    font-style: normal;
    font-weight: 400 500;
    font-display: swap;
    src: url('jost-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
    --tinte: #16233a;
    --himmel: #1d2f4d;
    --papier: #f4f6f9;
    --weiss: #ffffff;
}

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

html, body { margin: 0; }

body {
    font-family: 'Jost', system-ui, sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--tinte);
    background: var(--papier);
}

a { color: inherit; }

/* ---------- Startseite: Gemälde als Bühne ---------- */

.buehne {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    color: var(--weiss);
    background: var(--himmel) url('gemaelde.webp') 72% 50% / cover no-repeat;
}

/* Abdunklung nur links im Himmel, das Gemälde rechts bleibt unberührt */
.buehne::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(16, 28, 50, 0.62) 0%, rgba(16, 28, 50, 0.38) 38%, rgba(16, 28, 50, 0) 62%);
}

.buehne > * { position: relative; }

.inhalt {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem clamp(1.25rem, 6vw, 6rem);
    max-width: 44rem;
}

.marke {
    margin: 0;
    font-weight: 500;
    font-size: clamp(3.2rem, 7.5vw, 6rem);
    line-height: 1;
    letter-spacing: 0.14em;
    text-shadow: 0 1px 18px rgba(10, 20, 40, 0.35);
}

.linie {
    width: 5.5rem;
    height: 2px;
    margin: 1.6rem 0 1.4rem;
    background: var(--weiss);
    border: 0;
}

.name {
    margin: 0;
    font-size: clamp(1.25rem, 2.2vw, 1.6rem);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.hinweis {
    margin: 0.4rem 0 2rem;
    max-width: 30rem;
}

.kontakt {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.kontakt a {
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    padding-bottom: 0.1rem;
}

.kontakt a:hover,
.kontakt a:focus-visible { border-bottom-color: var(--weiss); }

.fuss {
    display: flex;
    gap: 1.5rem;
    padding: 1.25rem clamp(1.25rem, 6vw, 6rem);
    font-size: 1rem;
}

.fuss a { text-decoration: none; opacity: 0.9; }
.fuss a:hover, .fuss a:focus-visible { text-decoration: underline; opacity: 1; }

@media (max-width: 700px) {
    .buehne { background-position: 92% 50%; }
    /* Hochformat: Text liegt oben im Himmel, Abdunklung von oben nach unten */
    .buehne::before {
        background: linear-gradient(180deg, rgba(16, 28, 50, 0.7) 0%, rgba(16, 28, 50, 0.45) 55%, rgba(16, 28, 50, 0.1) 100%);
    }
    .inhalt { justify-content: flex-start; padding-top: 18vh; }
}

/* ---------- Rechtsseiten ---------- */

.kopf {
    padding: 1.25rem clamp(1.25rem, 6vw, 6rem);
    color: var(--weiss);
    background: var(--himmel) url('gemaelde.webp') 50% 30% / cover no-repeat;
    box-shadow: inset 0 0 0 100vmax rgba(16, 28, 50, 0.55);
}

.kopf a {
    font-weight: 500;
    letter-spacing: 0.14em;
    text-decoration: none;
}

.recht {
    max-width: 42rem;
    margin: 0 auto;
    padding: 3rem 1.25rem 4rem;
}

.recht h1 { font-weight: 500; font-size: 2rem; line-height: 1.2; margin: 0 0 1.5rem; }
.recht h2 { font-weight: 500; font-size: 1.25rem; margin: 2rem 0 0.5rem; }
.recht p { margin: 0 0 1rem; }
.recht a { color: #1f4f8a; }
