/* ════════════════════════════════════════
   HERO BANNER
════════════════════════════════════════ */
.impressum-main {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.imp-hero {
    position: relative;
    text-align: center;
    padding: 80px 20px 60px;
    border-bottom: 2px solid var(--text);
    overflow: hidden;
    margin-bottom: 0;
}

/* Watermark */
.imp-hero-bg {
    position: absolute;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22vw;
    color: rgba(0,0,0,0.04);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    pointer-events: none;
    white-space: nowrap;
    user-select: none;
    letter-spacing: -0.02em;
}

.imp-hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 14vw, 9rem);
    letter-spacing: 0.06em;
    line-height: 0.9;
    color: var(--text);
    position: relative;
    transform: rotate(-1deg);
    display: inline-block;
}

.imp-subtitle {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--muted);
    margin-top: 18px;
    font-style: italic;
    position: relative;
    max-width: none;
}


/* ════════════════════════════════════════
   CONTENT WRAPPER
════════════════════════════════════════ */
.imp-content {
    padding-top: 0;
}


/* ════════════════════════════════════════
   INDIVIDUAL BLOCKS
════════════════════════════════════════ */
.imp-block {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 24px;
    padding: 40px 0;
    align-items: start;
    transition: background 0.2s;
    position: relative;
}

.imp-block::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--text);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.25s ease;
}

.imp-block:hover::before {
    transform: scaleY(1);
}

/* Nummer */
.imp-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: rgba(0,0,0,0.08);
    line-height: 1;
    padding-top: 4px;
    user-select: none;
    letter-spacing: 0.05em;
}

/* Body text area */
.imp-body h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.08em;
    color: var(--text);
    margin-bottom: 14px;
    line-height: 1;
}

.imp-body p {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    line-height: 2;
    color: var(--text);
    max-width: 58ch;
}

.imp-body a {
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--text);
    padding-bottom: 1px;
    transition: opacity 0.15s;
}

.imp-body a:hover {
    opacity: 0.45;
}


/* ════════════════════════════════════════
   DIVIDER
════════════════════════════════════════ */
.imp-divider {
    height: 1px;
    background: var(--border);
    width: 100%;
}


/* ════════════════════════════════════════
   FOOTER NOTE
════════════════════════════════════════ */
.imp-footer-note {
    margin-top: 64px;
    padding-top: 24px;
    border-top: 2px solid var(--text);
    display: flex;
    gap: 16px;
    align-items: center;
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
}


/* ════════════════════════════════════════
   DARK MODE
════════════════════════════════════════ */
body.dark {
    --bg:     #151515;
    --card:   #1a1a1a;
    --text:   #e1e1e1;
    --muted:  #666;
    --border: #2a2a2a;
}

body.dark .imp-hero-bg {
    color: rgba(255,255,255,0.04);
}

body.dark .imp-label {
    color: rgba(255,255,255,0.06);
}

#darkToggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    cursor: pointer;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    transform: none;
}   
#darkToggle img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
  
    transition: content 0.2s;
}
#darkToggleHover {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    cursor: pointer;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    transform: none;
}
#darkToggle:hover img {
  opacity: 0.8;
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 600px) {
    .imp-block {
        grid-template-columns: 40px 1fr;
        gap: 16px;
        padding: 30px 0;
    }

    .imp-label {
        font-size: 2rem;
    }

    .imp-body h2 {
        font-size: 1.4rem;
    }

    .imp-body p {
        font-size: 11px;
    }

    .imp-footer-note {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}
/* ════════════════════════════════════════
   GLOBAL BUTTONS
════════════════════════════════════════ */
button {
    background: var(--text);
    color: var(--bg);
    border: 2px solid var(--text);
    padding: 10px 18px;
    border-radius: 0;
    cursor: pointer;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 0.15s, color 0.15s, transform 0.1s, box-shadow 0.1s;
}

button:hover {
    background: var(--bg);
    color: var(--text);
    transform: translate(-2px, -2px);
    box-shadow: 3px 3px 0 var(--text);
}

button:active {
    transform: translate(0, 0);
    box-shadow: none;
}

