/* Gemeinsames Stylesheet für Unterseiten (Impressum, Datenschutz, Danke) */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --gold: #d4af37;
    --gold-gradient: linear-gradient(135deg, #f3e5ab 0%, #d4af37 50%, #aa7c11 100%);
    --bg: #0a0a0a;
    --card: #141414;
    --border-soft: #1a1a1a;
    --text: #e8e8e8;
    --text-dim: #9a9a9a;
    --text-muted: #6e6e6e;
    --radius: 8px;
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Outfit', system-ui, -apple-system, sans-serif;
    font-weight: 300;
    line-height: 1.75;
    letter-spacing: 0.4px;
}

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.page-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px clamp(16px, 5vw, 48px);
    border-bottom: 1px solid var(--border-soft);
    background: rgba(10, 10, 10, 0.95);
    position: sticky;
    top: 0;
    z-index: 10;
}

.page-header img {
    height: 52px;
    width: 52px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.55);
}

.page-header .brand { display: flex; flex-direction: column; line-height: 1.1; }

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-sub {
    font-size: 0.52rem;
    letter-spacing: 0.4em;
    color: #fff;
    text-transform: uppercase;
    margin-top: 3px;
}

.page-header a { color: inherit; text-decoration: none; display: flex; align-items: center; gap: 14px; }

main {
    max-width: 780px;
    margin: 0 auto;
    padding: clamp(40px, 7vw, 80px) clamp(16px, 5vw, 24px) 80px;
}

h1 {
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: clamp(1.5rem, 4vw, 2.1rem);
    margin-bottom: 8px;
}

h1::after {
    content: '';
    display: block;
    width: 56px;
    height: 2px;
    margin-top: 18px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

h2 {
    font-weight: 400;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #fff;
    margin: 42px 0 12px;
}

h3 { font-weight: 400; font-size: 0.95rem; color: #fff; margin: 24px 0 8px; }

p, li { color: var(--text-dim); font-size: 0.95rem; }
p { margin-bottom: 14px; }
ul, ol { margin: 0 0 16px 22px; }
li { margin-bottom: 7px; }
strong { color: var(--text); font-weight: 500; }

.todo {
    background: rgba(212, 175, 55, 0.07);
    border: 1px dashed rgba(212, 175, 55, 0.4);
    border-radius: var(--radius);
    padding: 18px 20px;
    margin-bottom: 34px;
    font-size: 0.88rem;
    color: var(--text-dim);
}
.todo strong { color: var(--gold); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    min-height: 48px;
    border-radius: var(--radius);
    background: var(--gold-gradient);
    color: #000;
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn:hover {
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212, 175, 55, 0.28);
}

footer {
    text-align: center;
    padding: 30px 16px;
    background: #050505;
    border-top: 1px solid var(--border-soft);
    color: #4a4a4a;
    font-size: 0.78rem;
}
footer a { color: #6e6e6e; }

.center { text-align: center; }
.center h1::after { margin-inline: auto; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: 0.01ms !important; }
}
