body {
    font-family: 'Georgia', serif;
    margin: 0;
    padding: 0;
    background-color: #f9f5eb;
    color: #333;
}

.site-header {
    background-color: #8A9A8E; /* Sage Green */
    color: #F4E8C1; /* Buttercup Yellow */
    padding: 1rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.site-logo {
    max-height: 150px;      /* Good starting size - adjust if needed */
    width: auto;
    display: block;
}

.logo-link {
    flex-shrink: 0;
    margin: 0;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

header h1 {
    margin: 0 0 8px 0;
    font-size: 2.2rem;
    color: #F4E8C1;
}

nav {
    margin-top: 5px;
}

nav a {
    color: #F4E8C1;
    margin: 0 15px;
    text-decoration: none;
    font-weight: 500;
}

nav a:hover {
    color: #C8A2C8; /* Mauve Pink */
}

/* Footer */
footer {
    background-color: #C8A2C8; /* Mauve Pink */
    color: white;
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
}

main {
    min-height: 70vh;
    padding: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        justify-content: center;
        text-align: center;
    }

    .header-right {
        align-items: center;
    }

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

    header h1 {
        font-size: 1.8rem;
    }

    nav a {
        margin: 0 10px;
    }
}