/* 
Theme Name: $200 Themes
Author: Your Name
Description: Minimal, clean, bulletproof theme foundation.
Version: 1.0
*/

:root {
    --accent: #111111;
    --background: #fafafa;
    --header: #ffffff;
    --footer: #f8f8f8;
    --links: #00598C;
    --buttons: #00598C;
    --font_base: 16px;
    --font_heading: 32px;
    --spacing: 16px;
}



/* Body */
ul {
    list-style: none !important;
}

li {
    display: inline-block !important;
}
body {
    font-family: system-ui, sans-serif;
    font-size: var(--font_base);
    line-height: 1.6;
    color: var(--accent);
    background: var(--background);
    margin: 0;
    padding: 0;
}

a { color: var(--links); text-decoration: none; }
a:hover { opacity: 0.8; }

/* Header */
.site-header {
    background: var(--header);
    border-bottom: 1px solid #eee;
}
.header-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-title a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
}

/* Navigation menu */
/* ===== MENU BASELINE ===== */

.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav ul li {
    display: inline-block;
    margin-right: 20px;
}

.site-nav ul li a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
}

.site-nav ul li a:hover {
    opacity: 0.7;
}

/* Main content */
main {
    max-width: 900px;
    margin: calc(var(--spacing)*2) auto;
    padding: 0 var(--spacing);
}
main ul { list-style: disc; padding-left: 2em; }

/* Footer */
footer {
    background: var(--footer);
    padding: var(--spacing);
    text-align: center;
    border-top: 1px solid #eee;
}