/*
Theme Name: Subtle Text
Author: You
Description: A minimal, text-centric theme inspired by Medium and Textual.
Version: 1.0
*/

/* --- Reset & Basics --- */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: #FAFAFA; /* Subtle off-white */
    color: #292929; /* Dark Grey */
    font-family: "Georgia", "Times New Roman", serif; /* Classic Serif for reading */
    font-size: 20px; /* Large, readable text */
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; border-bottom: 1px solid #ddd; transition: 0.2s; }
a:hover { border-color: #292929; }

/* --- Layout Containers --- */
.container {
    max-width: 700px; /* Limits width for reading focus */
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header --- */
header.site-header {
    padding: 40px 0;
    margin-bottom: 60px;
    text-align: center;
}
.site-title {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}
.site-title a { border: none; }

/* --- Post Styles (The List) --- */
article.post { margin-bottom: 80px; }

h2.entry-title {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 2rem;
    margin-bottom: 10px;
    line-height: 1.2;
}
h2.entry-title a { border: none; }
h2.entry-title a:hover { color: #555; }

.entry-meta {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.85rem;
    color: #757575;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.entry-content {
    font-weight: 400;
}

/* --- Typography inside content --- */
.entry-content p { margin-bottom: 1.5em; }
.entry-content h3, .entry-content h4 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin-top: 2em;
    margin-bottom: 0.5em;
}
blockquote {
    border-left: 3px solid #292929;
    padding-left: 20px;
    font-style: italic;
    color: #555;
    margin: 2em 0;
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 40px 0;
    font-family: sans-serif;
    font-size: 0.8rem;
    color: #999;
    border-top: 1px solid #eee;
    margin-top: 60px;
}

/* --- Navigation Menu Styles --- */
.site-nav {
    margin-top: 20px;
    border-top: 1px solid #eee; /* Subtle separation line */
    padding-top: 20px;
}

.site-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.site-nav li {
    display: inline-block;
    margin: 0 15px;
}

.site-nav a {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    border-bottom: none; /* Remove underline from menu items */
    font-weight: 600;
}

.site-nav a:hover {
    color: #03a87c; /* Medium Green hover effect */
}

/* Current Page Highlighting */
.site-nav .current-menu-item a {
    color: #292929;
}

/* Clean up the Site Description */
.site-description {
    color: #777;
    font-family: sans-serif;
    font-size: 0.9rem;
    margin-top: 5px;
}