/* =========================================
   fritts — Impressum Page Styles
   ========================================= */

body {
    background-color: #2a8385;
}

/* =========================================
   Impressum Content
   ========================================= */
.impressum {
    width: 100%;
    min-height: 100svh;
    padding: 8em 4em 6em;
    display: flex;
    justify-content: center;
}

.impressum-inner {
    width: 100%;
    max-width: 60em;
    display: flex;
    flex-direction: column;
    gap: 2.5em;
}

/* Page title */
.impressum-title {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-bold);
    font-size: 3.5em;
    color: var(--color-brand-white);
    line-height: 1.1;
    letter-spacing: 0.02em;
}

/* Section blocks */
.impressum-block {
    opacity: 0;
    transform: translateY(3em);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.impressum-block.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.impressum-block h2 {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-bold);
    font-size: 1.5em;
    color: var(--color-brand-white);
    margin-bottom: 0.5em;
    line-height: 1.3;
}

.impressum-block h3 {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-bold);
    font-size: 1.15em;
    color: var(--color-brand-white);
    margin-bottom: 0.35em;
    line-height: 1.3;
}

.impressum-block p {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-regular);
    font-size: 1em;
    color: var(--color-brand-white);
    line-height: 1.7;
    opacity: 0.85;
}

.impressum-block p + p {
    margin-top: 0.75em;
}

.impressum-block ul {
    margin: 0;
    padding-left: 1.25em;
    display: flex;
    flex-direction: column;
    gap: 0.6em;
}

.impressum-block li {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-regular);
    font-size: 1em;
    color: var(--color-brand-white);
    line-height: 1.7;
    opacity: 0.85;
}

.impressum-block a {
    color: var(--color-brand-white);
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.impressum-block a:hover {
    opacity: 0.7;
}

/* Divider line between blocks */
.impressum-block + .impressum-block {
    padding-top: 2em;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* =========================================
   Mobile
   ========================================= */
@media (max-width: 768px) {
    .impressum {
        padding: 14em 4em 4em;
    }

    .impressum-inner {
        max-width: none;
        gap: 3em;
    }

    .impressum-title {
        font-size: 7em;
    }

    .impressum-block h2 {
        font-size: 5.5em;
        margin-bottom: 0.6em;
    }

    .impressum-block h3 {
        font-size: 4.5em;
        margin-bottom: 0.5em;
    }

    .impressum-block p,
    .impressum-block li {
        font-size: 4em;
        line-height: 1.8;
    }

    .impressum-block a {
        font-size: 1em;
    }

    .impressum-block ul {
        gap: 0.8em;
    }

    .impressum-block + .impressum-block {
        padding-top: 2.5em;
    }
}
