/* Inter - lokal eingebunden, keine externen Requests (DSGVO) */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('../Fonts/inter-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;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('../Fonts/inter-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+2074, U+20AC,
                   U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Farben aus dem bisherigen Auftritt */
:root {
    --blau: #3861AD;
    --text: #212529;
    --grau: #6c757d;
}

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

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text);
    background: #fff;
    text-align: left;
}

.visually-hidden {
    position: absolute; width: 1px; height: 1px; padding: 0;
    margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* --- Gesamtaufbau: schmale Leiste links, Inhalt rechts --- */
.o-stripContainer {
    display: flex;
    min-height: 100vh;
}

/* --- Blaue Leiste mit den Rechts-Links --- */
.o-menustrip {
    background: var(--blau);
    padding: 0 5px 1.5em;
    display: flex;
    align-items: flex-end;
    width: 70px;
    flex: 0 0 70px;
}
.c-stripmenu {
    list-style: none;
    padding-left: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.c-stripmenu .stripmenu-item { display: block; padding-bottom: 10px; }
.c-stripmenu .stripmenu-item:last-child { padding-bottom: 0; }
.c-stripmenu a { display: block; text-decoration: none; }
.circle {
    height: 40px;
    width: 40px;
    background-color: rgba(255,255,255,.5);
    border-radius: 30px;
    display: flex;
    transition: background-color .15s ease-in-out;
}
.c-stripmenu a:hover .circle,
.c-stripmenu a:focus-visible .circle { background-color: rgba(255,255,255,.85); }
.circle .icon { fill: #fff; width: 20px; height: 20px; margin: auto; }

/* --- Inhaltsbereich --- */
.c-textContainer { flex: 1 1 auto; min-width: 0; }
.c-textContainer .wrap { margin-left: 4em; margin-right: 4em; padding-bottom: 3em; }
.c-textContainer .text { max-width: 600px; hyphens: auto; }
.c-textContainer a { hyphens: auto; word-wrap: break-word; }

.c-sitelogo { display: block; padding-top: 3em; padding-bottom: 1.5em; }
.c-sitelogo img { width: auto; height: 160px; max-width: 100%; }

h1 { font-size: 2.25rem; font-weight: 700; margin: 0 0 .5rem; line-height: 1.2; }
h2 { font-size: 1.5rem; font-weight: 500; margin: 2rem 0 .5rem; }
h3 { font-size: 1.25rem; font-weight: 600; margin: 1.75rem 0 .5rem; }
.text > .ce:first-child h1 { margin-top: 0; }
p { margin: 0 0 1rem; }
.subheader { font-size: 1.25rem; color: var(--grau); margin: 0 0 1.5rem; }
a { color: var(--blau); }
img { max-width: 100%; height: auto; }
ul, ol { padding-left: 1.25em; }

/* --- Shop-Verweis als Schaltflaeche, wie bisher --- */
.text a.btn,
.text a[href*="shop.kleenwerbung"] {
    display: inline-block;
    background-color: var(--blau);
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 1.2em;
    margin-top: 1em;
    text-decoration: none;
}
.text a.btn:hover,
.text a[href*="shop.kleenwerbung"]:hover { background-color: #2d4f8f; }

/* --- Bildspalte rechts, Breiten wie im bisherigen Auftritt --- */
.c-image {
    width: 800px;
    flex: 0 0 800px;
    background-image: url('../Images/wurm-strand.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
@media screen and (max-width: 1600px) {
    .c-image { width: 600px; flex-basis: 600px; }
}
@media screen and (max-width: 1350px) {
    .c-image { width: 500px; flex-basis: 500px; }
}
@media (max-width: 991.98px) {
    .c-image { display: none; }
}

/* --- Fusszeile --- */
.c-footerList {
    list-style: none;
    padding-left: 0;
    padding-top: 1.5em;
    margin: 2em 0 0;
}
.c-footerList li { display: inline-block; color: var(--grau); }
.c-footerList li:after { content: '|'; padding-left: 5px; padding-right: 5px; }
.c-footerList li:last-child:after { content: ""; padding-right: 0; }
.c-footerList a { color: var(--grau); text-decoration: none; }
.c-footerList a:hover { color: var(--blau); text-decoration: underline; }

/* --- Schmalere Bildschirme --- */
@media (max-width: 1199.98px) {
    .c-textContainer .wrap { margin-left: 3em; margin-right: 3em; }
}
@media (max-width: 991.98px) {
    .o-stripContainer { flex-direction: column; }
    .o-menustrip {
        width: 100%;
        flex: 0 0 50px;
        height: 50px;
        padding: 0 5px;
        align-items: center;
        justify-content: center;
    }
    .c-stripmenu { flex-direction: row; margin: 0 auto; }
    .c-stripmenu .stripmenu-item { padding-bottom: 0; padding-right: .5em; }
    .c-stripmenu .stripmenu-item:last-child { padding-right: 0; }
    .circle { height: 34px; width: 34px; }
    .circle .icon { width: 17px; height: 17px; }
}
@media (max-width: 767.98px) {
    .c-textContainer .wrap { margin-left: 15px; margin-right: 15px; }
    .c-sitelogo { padding-top: 1.5em; }
    .c-sitelogo img { height: 90px; }
    h1 { font-size: 1.75rem; }
    .c-footerList li { display: block; }
    .c-footerList li:after { content: ""; }
}

/* --- Hinweis auf technisch notwendige Cookies --- */
.hinweis {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 100;
    background: var(--text); color: #f8f9fa;
    box-shadow: 0 -2px 12px rgba(0,0,0,.18);
}
.hinweis--weg { display: none !important; }
/* Solange der Hinweis steht, unten Platz lassen - auch im Menuestreifen,
   dessen Symbole am unteren Rand sitzen. */
body.hat-hinweis .c-textContainer .wrap {
    padding-bottom: calc(var(--hinweis-hoehe, 6rem) + 3em);
}
@media (min-width: 992px) {
    body.hat-hinweis .o-menustrip {
        padding-bottom: calc(var(--hinweis-hoehe, 6rem) + 1.5em);
    }
}
.hinweis-inner {
    max-width: 60rem; margin: 0 auto; padding: 1rem 1.25rem;
    display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
}
.hinweis-text { margin: 0; font-size: .9375rem; line-height: 1.5; flex: 1 1 20rem; }
.hinweis-text a { color: #9ec5fe; }
.hinweis-btn {
    flex: 0 0 auto; font: inherit; font-size: .9375rem;
    padding: .5rem 1.25rem; border: 1px solid #f8f9fa; border-radius: 20px;
    background: transparent; color: #f8f9fa; cursor: pointer;
}
.hinweis-btn:hover { background: #f8f9fa; color: var(--text); }
