/*
Theme Name: My Custom Theme
Theme URI: https://example.com/my-custom-theme
Author: Your Name
Author URI: https://example.com
Description: A lightweight custom WordPress theme built from scratch.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-custom-theme
*/

/* Basic Reset & Typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
    color: #222;
    background: #f9f9f9;
    line-height: 1.6;
}

.site-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

header.site-header {
    background: #fff;
    padding: 20px;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 30px;
}

nav.main-nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

article.post {
    background: #fff;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 6px;
    border: 1px solid #eee;
}

footer.site-footer {
    text-align: center;
    padding: 20px;
    color: #777;
    margin-top: 40px;
}