:root {
    --color-bg: #fdfbf7; /* Leichtes Papier-Beige */
    --color-text: #2c3e50;
    --color-primary: #2c2c2c; /* Dunkelgrau */
    --color-accent: #a93226; /* Dunkles Theater-Rot */
    --color-link: #884ea0; /* Violett (Klerus/Wissenschaft) oder einfach Rot? Ich nehme Rot-Braun */
    --color-link: #922b21;
    --color-link-hover: #e74c3c;
    --font-heading: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-body: 'Georgia', 'Times New Roman', serif; /* Klassisch serif */
    --spacing-unit: 1rem;
    --max-width: 800px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    font-size: 18px;
}

/* Layout */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

/* Links - Optimiert: Sauber & Modern */
a {
    color: var(--color-link);
    text-decoration: none; /* Weg mit der harten Linie im Ruhe-Zustand */
    border-bottom: 1px solid rgba(41, 128, 185, 0.3); /* Ganz feine Linie */
    transition: all 0.2s ease;
}

a:hover {
    color: var(--color-link-hover);
    border-bottom-color: var(--color-link-hover); /* Linie wird beim Hover farbig */
    background-color: rgba(26, 188, 156, 0.1); /* Hauchzarter Hintergrund beim Hover */
}

/* Header */
header {
    background-color: white;
    padding: 2rem 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 2rem;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

h1 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 span {
    color: var(--color-accent); /* Faber vs. Homo */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav a {
    text-decoration: none;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.2s;
    border-bottom: none; /* Keine Linie in der Navi */
}

nav a:hover, nav a.active {
    color: var(--color-accent);
    background: none; /* Kein Hintergrund in der Navi */
}

/* Main Content */
main {
    padding-bottom: 4rem;
}

h2 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
}

h3 {
    font-family: var(--font-heading);
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}
h4 {
    font-family: var(--font-heading);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}


p {
    margin-bottom: 1.5rem;
}

ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

blockquote {
    border-left: 4px solid var(--color-accent);
    padding-left: 1rem;
    font-style: italic;
    margin: 2rem 0;
    color: #555;
    background: #fff;
    padding: 1rem;
    border-radius: 0 4px 4px 0;
}

/* Images & Amazon Boxes */
img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.book-recommendation {
    background: white;
    border: 1px solid #ddd;
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.book-recommendation img {
    max-width: 100px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.book-info h4 {
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

/* Buttons (resetten die Link-Styles) */
.btn {
    display: inline-block;
    background: var(--color-primary);
    color: #ffffff !important; /* Force white text */
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    margin-top: 0.5rem;
    transition: background 0.2s, transform 0.1s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--color-accent);
    color: #ffffff !important;
    transform: translateY(-1px);
    border-bottom: none; /* Keine Link-Linie beim Button */
}

.btn:active {
    transform: translateY(1px);
}

.character-card {
    background: white;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Footer */
footer {
    background: var(--color-primary);
    color: white;
    padding: 3rem 0;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    margin-top: auto;
}

footer a {
    color: #bdc3c7;
    text-decoration: none;
    border-bottom: 1px solid rgba(189, 195, 199, 0.3);
}

footer a:hover {
    color: white;
    text-decoration: none;
    border-bottom-color: white;
    background: none;
}

/* Mobile */
@media (max-width: 600px) {
    header .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .book-recommendation {
        flex-direction: column;
        text-align: center;
    }
}
