/* style.css */
:root {
    --bg-color: #fbf9f3; /* Warmer, creamier off-white */
    --text-color: #4a4a4a; /* Slightly darker charcoal for better contrast */
    --heading-color: #555555;
    --accent-color: #8b3a79; /* Softer magenta/purple */
    --divider-color: #e8e5de; /* The muted grey/taupe bands */
    
    /* Clean sans-serif for body text */
    --body-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    
    /* Cursive/Script stack to match the casual look of the original headings */
    --heading-font: 'Courgette', 'Comic Sans MS', 'Segoe Print', 'Bradley Hand', cursive; 
}

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

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

a {
    color: var(--accent-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Layout Containers */
.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.divider-band {
    height: 30px;
    background-color: var(--divider-color);
    width: 100%;
}

/* Header & Navigation */
.site-header {
    padding: 30px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.site-logo img {
    max-height: 80px; 
    height: auto;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--accent-color); /* Explicitly purple in the nav */
}

/* Typography */
h1, h2, h3 {
    font-family: var(--heading-font);
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: normal; /* Script fonts usually look better without bolding */
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }

/* Main Content Area */
.site-content {
    flex: 1;
    padding: 50px 0;
}

/* Paragraph spacing */
p {
    margin-bottom: 1.5em;
}

/* Image alignment for the bookends */
.alignright {
    float: right;
    margin: 0 0 20px 20px;
    max-width: 100%;
    height: auto;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
    color: var(--heading-color);
}