/*
Theme Name: Minimal Starter
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: A minimal WordPress starter theme with only the essential files. Clean, simple, and ready to customize.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: minimal-starter
Tags: minimal, starter, simple, custom
*/

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

/* Base Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Container */
.site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    padding: 40px 0;
    border-bottom: 1px solid #e0e0e0;
}

.site-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.site-title a {
    color: #333;
    text-decoration: none;
}

.site-description {
    color: #666;
    font-size: 14px;
}

/* Main Content */
.site-main {
    padding: 60px 0;
}

/* Posts */
.post {
    margin-bottom: 60px;
}

.entry-header {
    margin-bottom: 20px;
}

.entry-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.entry-title a {
    color: #333;
    text-decoration: none;
}

.entry-title a:hover {
    color: #0073aa;
}

.entry-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.entry-content {
    margin-bottom: 20px;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.entry-content img {
    max-width: 100%;
    height: auto;
}

/* Footer */
.site-footer {
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* Links */
a {
    color: #0073aa;
}

a:hover {
    color: #005177;
}

/* Navigation */
.post-navigation,
.posts-navigation {
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.nav-previous,
.nav-next {
    flex: 1;
}

.nav-next {
    text-align: right;
}
