/* =========================================================
   Basis-Styles
   ========================================================= */

:root {
    --bg-color: #6C7C98;
    --text-color: #ffffff;
    --muted-color: #666666;
    --link-color: #EAF044;
    --link-hover-color: #fcffa0;
    --content-width: 760px;
    --side-padding: 24px;
}

/* archivo-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400;
  src: url('archivo-v25-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* archivo-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Archivo';
  font-style: italic;
  font-weight: 400;
  src: url('archivo-v25-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* archivo-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 700;
  src: url('archivo-v25-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* archivo-700italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Archivo';
  font-style: italic;
  font-weight: 700;
  src: url('archivo-v25-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    min-height: 100vh;
    background: var(--bg-color);
    color: var(--text-color);
    font-family: Archivo, Arial, sans-serif;
    line-height: 1.6;
}

/* =========================================================
   Teaser
   ========================================================= */

.teaser-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.teaser-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px var(--side-padding);
}

.teaser-content {
    text-align: center;
}

.logo {
    display: block;
    width: min(320px, 75vw);
    height: auto;
    margin: 0 auto 24px;
}

.coming-soon {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 400;
}

.teaser-footer {
    padding: 24px var(--side-padding);
    text-align: center;
}

.footer-links {
    display: inline-flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

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

a:hover,
a:focus-visible {
    color: var(--link-hover-color);
    text-decoration: none;
    /*border-bottom: 3px solid #fcffa0;*/
}

/* =========================================================
   Content pages: Impressum / Datenschutz
   ========================================================= */

.content-page {
    min-height: 100vh;
    padding: 80px var(--side-padding);
}

.content {
    width: min(100%, var(--content-width));
    margin: 0 auto;
    text-align: center;
}

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
    line-height: 1.25;
    margin-top: 2em;
    margin-bottom: 0.7em;
}

.content h1 {
    margin-top: 0;
    font-size: 2.2rem;
}

.content h2 {
    font-size: 1.7rem;
}

.content h3 {
    font-size: 1.4rem;
}

.content h4 {
    font-size: 1.2rem;
}

.content h5 {
    font-size: 1.05rem;
}

.content h6 {
    font-size: 0.95rem;
}

.content p,
.content ul,
.content ol,
.content address {
    margin: 0 0 1.2em;
}

.content ul,
.content ol {
    padding-left: 1.5em;
    text-align: left;
    display: inline-block;
    max-width: 100%;
}

.content address {
    font-style: normal;
}

.content hr {
    margin: 3rem auto;
    border: 0;
    border-top: 1px solid #ddd;
    width: 60%;
}

/* Fixierter Zurück-Button */
.back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 16px;
    border: none;
    border-radius: 999px;

    background: #000;
    color: #fff;

    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.back-button:hover,
.back-button:focus-visible {
    background: var(--link-color);
    color: #000;
    text-decoration: none;
}

/* =========================================================
   Responsive Anpassungen
   ========================================================= */

@media (max-width: 600px) {
    :root {
        --side-padding: 18px;
    }

    .teaser-main {
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .logo {
        width: min(280px, 80vw);
        margin-bottom: 20px;
    }

    .coming-soon {
        font-size: 1.1rem;
    }

    .teaser-footer {
        padding-bottom: 20px;
    }

    .footer-links {
        gap: 12px 20px;
    }

    .content-page {
        padding-top: 90px;
    }

    .content h1 {
        font-size: 1.8rem;
    }

    .content h2 {
        font-size: 1.5rem;
    }

    .back-button {
        top: 12px;
        right: 12px;
        padding: 9px 13px;
    }
}
