/* ============================================================
   impressum.css — Seitenspezifische Stile für impressum.html
   KFZ Wolfram
   (Gemeinsame Stile: main.css)
   ============================================================ */

/* ── Body Layout ── */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ── Nav Back ── */
.nav-back {
    display: flex;
    align-items: center;
    padding: 0 32px;
    gap: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-back:hover { color: var(--yellow); }

.nav-back svg {
    width: 16px; height: 16px;
    fill: currentColor;
}

/* ── Main ── */
main {
    flex: 1;
    margin-top: 60px;
    max-width: 900px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 80px 48px 100px;
}

/* ── Page Title ── */
.page-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.eyebrow-line {
    width: 40px; height: 2px;
    background: var(--yellow);
}

.eyebrow-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--yellow);
}

h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: clamp(52px, 8vw, 96px);
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 64px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ── Sections ── */
.section {
    margin-bottom: 52px;
}

h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

h2::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.08);
}

.content-block {
    background: var(--surface);
    padding: 28px 32px;
    border-left: 3px solid var(--yellow);
}

.content-block p,
.content-block a {
    font-size: 16px;
    font-weight: 300;
    color: rgba(240,237,232,0.8);
    line-height: 1.9;
}

.content-block a {
    color: var(--yellow);
    text-decoration: none;
    transition: opacity 0.2s;
}

.content-block a:hover { opacity: 0.75; }

.content-block strong {
    font-weight: 500;
    color: var(--white);
}

.placeholder {
    display: inline-block;
    background: rgba(245,196,0,0.15);
    border: 1px dashed rgba(245,196,0,0.4);
    color: var(--yellow);
    font-size: 13px;
    padding: 2px 8px;
    border-radius: 2px;
}

.notice-box {
    background: rgba(245,196,0,0.07);
    border: 1px solid rgba(245,196,0,0.2);
    padding: 20px 28px;
    margin-top: 48px;
}

.notice-box p {
    font-size: 14px;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.8;
}

/* ── Datenschutz ── */
.ds-text {
    font-size: 15px;
    font-weight: 300;
    color: rgba(240,237,232,0.7);
    line-height: 1.9;
    margin-bottom: 16px;
}

/* ── Footer (impressum-spezifisch) ── */
footer {
    padding: 28px 48px;
}

/* ── Responsive ── */
@media (max-width: 640px) {
    main { padding: 60px 24px 80px; }
    footer { flex-direction: column; gap: 12px; text-align: center; padding: 24px; }
    .nav-back span { display: none; }
}
