/*
Theme Name: Simple Modern Blog
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: A simple, clean WordPress theme inspired by JamesClear.com and mrmoneymustache.com
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: simple-modern-blog
Tags: blog, simple, clean, responsive, minimal
*/

/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #2d3748;
    background-color: #fff;
}

/* Container */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header */
.site-header {
    padding: 50px 0;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 50px;
}

.site-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 5px;
    letter-spacing: -0.02em;
}

.site-title a {
    color: #1a202c;
    text-decoration: none;
}

.site-description {
    font-size: 20px;
    color: #718096;
    font-style: normal;
    font-weight: 300;
}

/* Navigation */
.main-navigation {
    margin-top: 30px;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.main-navigation a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    font-size: 17px;
    transition: color 0.2s ease;
}

.main-navigation a:hover {
    color: #2b6cb0;
}

/* Main Content */
.main-content {
    margin-bottom: 80px;
}

/* Blog Posts */
.post {
    margin-bottom: 80px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.post-title {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.03em;
}

.post-title a {
    color: #1a202c;
    text-decoration: none;
}

.post-title a:hover {
    color: #2b6cb0;
}

.post-meta {
    font-size: 16px;
    color: #718096;
    margin-bottom: 30px;
    font-style: normal;
    font-weight: 400;
}

.post-content {
    margin-bottom: 40px;
    font-size: 20px;
    line-height: 1.9;
}

.post-content p {
    margin-bottom: 35px;
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
}

.post-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 60px 0 25px;
    line-height: 1.4;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.post-content h3 {
    font-size: 26px;
    font-weight: 700;
    margin: 45px 0 20px;
    line-height: 1.4;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Sidebar */
.sidebar {
    margin-bottom: 80px;
}

.widget {
    margin-bottom: 40px;
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Footer */
.site-footer {
    padding: 40px 0;
    border-top: 1px solid #eee;
    color: #666;
    font-size: 14px;
}

.site-footer p {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .site-title {
        font-size: 28px;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .post-title {
        font-size: 26px;
    }
}