/*
Theme Name: Daniel Genis Editorial
Theme URI: https://danielgenis.net
Author: Construction Media Group
Author URI: https://danielgenis.net
Description: A minimalist, high-contrast brutalist editorial theme for structural engineering insights and California construction standards. Built with inline styles and zero footprints.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://gnu.org
Text Domain: daniel-editorial
*/

/* --- RESET & BASE STYLES --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-color: #fbfbfb;
    --text-color: #111827;
    --text-muted: #6b7280;
    --accent: #ea580c; /* Construction Orange */
    --accent-hover: #c2410c;
    --border-color: #111827;
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    font-size: 18px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 2px solid var(--border-color);
    transition: all 0.2s ease;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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