/* styles.css */
/* Auto dark mode based on system preference */
@media (prefers-color-scheme: dark) {
    :root {
        --bg: #121212;
        --text: #e0e0e0;
        --border: #444;
        --accent: #8ab4f8;
    }
}
@media (prefers-color-scheme: light) {
    :root {
        --bg: #f5f5f5;
        --text: #333333;
        --border: #ccc;
        --accent: #1a0dab;
    }
}

:root {
    --font-serif: "Iowan Old Style", "Sitka Text", Palatino, "Book Antiqua", serif;
}

body {
    font-family: var(--font-serif);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    max-width: 650px;
    margin: 2.5rem auto;
    padding: 0 1.5rem;
    font-size: 17px;
}

/* More compact mobile styling */
@media (max-width: 768px) {
    body {
        font-size: 15px;
        line-height: 1.5;
        margin: 1.8rem auto;
        padding: 0 1.2rem;
        max-width: 100%;
    }
}

h1 {
    font-size: 2em;
    font-weight: normal;
    margin: 1.2em 0 0.8em;
    letter-spacing: -0.01em;
    text-align: center;
}

/* More compact mobile heading */
@media (max-width: 768px) {
    h1 {
        font-size: 1.7em;
        margin: 1em 0 0.6em;
        line-height: 1.3;
    }
}

.subtitle {
    font-size: 1.15em;
    font-style: italic;
    margin-bottom: 2.6em;
    opacity: 0.85;
    text-align: center;
}

@media (max-width: 768px) {
    .subtitle {
        font-size: 1.1em;
        margin-bottom: 2.2em;
    }
}

.stanza {
    margin-bottom: 1.8em;
}

@media (max-width: 768px) {
    .stanza {
        margin-bottom: 1.4em;
    }
}

p {
    margin-bottom: 1.2em;
    hyphens: auto;
}

.emphasis {
    font-weight: 600;
    font-style: italic;
}

.signature {
    margin-top: 2.5em;
    text-align: right;
    font-style: italic;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .signature {
        margin-top: 2em;
        font-size: 0.9em;
    }
}

.reference {
    margin-top: 3.2em;
    padding-top: 2.2em;
    border-top: 1px solid var(--border);
    font-size: 0.96em;
    opacity: 0.88;
}

@media (max-width: 768px) {
    .reference {
        margin-top: 2.8em;
        padding-top: 1.9em;
        font-size: 0.94em;
    }
}

.reference p {
    margin-bottom: 0.9em;
}

a {
    color: var(--accent);
}

h2 {
    font-size: 1.4em;
    margin: 1.8em 0 0.8em;
    padding-bottom: 0.5em;
    border-bottom: 1px solid var(--border);
}

blockquote {
    border-left: 3px solid var(--border);
    margin: 1.5em 0;
    padding-left: 1.5em;
    font-style: italic;
    opacity: 0.9;
}