
:root {
    --bg-color: #fdf6e3;
    --text-color: #333;
    --link-color: #b58900;
    --border-color: #eee8d5;
    --font-heading: "Cinzel", "Garamond", serif;
    --font-body: "EB Garamond", "Georgia", serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 1.25rem;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

header {
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    text-align: center;
}

h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-top: 0;
    color: #8b0000; /* Deep red for alchemical terms */
}

a {
    color: var(--link-color);
    text-decoration: none;
    border-bottom: 1px dotted var(--link-color);
}

a:hover {
    color: #d33682;
    border-bottom: 1px solid #d33682;
}

.entry-list {
    list-style: none;
    padding: 0;
}

.entry-list li {
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 0.5rem;
}

.entry-content {
    background: #fff;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.meta {
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
}

.nav-links {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    font-family: var(--font-heading);
}

/* Typography Enhancements */
p { margin-bottom: 1.5rem; }
