/* CSS Variables for consistent theming */
:root {
    --primary-color: #2c2c2c; /* Charcoal */
    --accent-color: #c5a880; /* Muted Gold */
    --bg-color: #faf9f7; /* Soft Cream */
    --text-color: #555555;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Playfair Display', sans-serif;
}

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

/* Flexbox setup to keep footer at the bottom */
body.site-wrapper {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, .brand a, .footer-brand {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease, border-color 0.3s ease;
}

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

