/*
Theme Name: Patrick Estel Author
Theme URI: https://example.com
Author: Example Developer
Author URI: https://example.com
Description: A minimal, accessible WordPress theme for author Patrick Estel. It emphasizes a calm, professional layout with an off‑white background, dark grey text and a subtle red accent color. Designed to be lightweight and SEO‑friendly.
Version: 1.0.0
License: GPL-2.0-or-later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: patrick-estel
Tags: accessibility-ready, custom-logo, custom-menu, one-column, two-columns
*/

/* Base styles */
body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
        Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background-color: #f9f9f7; /* very light off‑white */
    color: #333333; /* dark grey text */
    line-height: 1.6;
}

a {
    color: #8a2e37; /* muted red accent */
    text-decoration: none;
}

a:hover, a:focus {
    color: #5f1e26;
    text-decoration: underline;
}

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

/* Header */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.main-navigation {
    display: flex;
    gap: 20px;
}

.main-navigation a {
    font-weight: 600;
    color: #333333;
}

.main-navigation a:hover,
.main-navigation a:focus {
    color: #8a2e37;
}

/* Content area */
.site-content {
    padding: 40px 0;
}

article {
    margin-bottom: 40px;
}

article h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.8em;
}

article .entry-meta {
    font-size: 0.9em;
    color: #777777;
    margin-bottom: 15px;
}

/* Footer */
.site-footer {
    background-color: #ffffff;
    border-top: 1px solid #e5e5e5;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9em;
}

.site-footer a {
    margin: 0 10px;
}