/* Base styles and variables */
:root {
    --paper: #f8f6f1;
    --paper-soft: #ffffff;
    --ink: #2f2922;
    --muted: #6a5a4a;
    --line: #b8aa95;
    --accent: #E00;
    --heading-color: #4f3f31;
    --header-height: 80px;
}

/* Header and navigation styles (moved from header.css) */
header {
    text-align: center;
    position: relative;
    width: 100%;
    background-color: var(--paper);
    border-bottom: 1px solid var(--line);
    box-sizing: border-box;
    z-index: 100;
    min-height: var(--header-height);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
}

header h1 {
    margin: 0;
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
    font-size: 1.4rem;
    letter-spacing: 0.04em;
    font-weight: 600;
    color: var(--heading-color);
}

header h1 a,
header h1 a:visited,
header h1 a:hover,
header h1 a:active {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-underline-offset: 4px;
}

.impressum-button {
    position: absolute;
    left: 16px;
    top: calc(var(--header-height) / 2);
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--accent);
    color: #fff;
    font-size: 0.95rem;
    text-decoration: none;
}


body {
    font-family: Georgia, "Times New Roman", serif;
    color: var(--ink);
    margin: 0;
    padding: 0;
    background-color: var(--paper);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    box-sizing: border-box;
}

footer {
    margin-top: auto;
    padding: 8px 20px 12px;
    font-size: 0.72rem;
    color: var(--muted);
}

footer hr {
    border: 0;
    border-top: 1px solid var(--line);
    margin: 0 0 8px;
    opacity: 0.65;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
}

.footer-content p {
    margin: 0;
    line-height: 1.2;
}

.footer-content p:last-child {
    margin-left: auto;
    text-align: right;
}

footer a {
    color: inherit;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}
