/*
Theme Name: Simple Theme
Theme URI: https://example.com
Description: A minimal WordPress theme with basic HTML and CSS
Version: 1.0
Author: Your Name
Author URI: https://example.com
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: simple-theme
*/

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

/* Body */
body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

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

/* Header */
header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    margin-bottom: 30px;
}

header h1 {
    font-size: 28px;
}

header p {
    font-size: 14px;
    color: #ccc;
}

/* Navigation */
nav ul {
    list-style: none;
    margin-top: 15px;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Main Content */
main {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 30px;
    min-height: 400px;
}

/* Posts */
article {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

article h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

article h2 a {
    color: #333;
    text-decoration: none;
}

article h2 a:hover {
    color: #0073aa;
}

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

.post-content {
    margin-top: 15px;
}

.post-content p {
    margin-bottom: 15px;
}

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

/* Pagination */
.pagination {
    margin: 30px 0;
}

.pagination a {
    color: #0073aa;
    text-decoration: none;
    margin-right: 10px;
}

.pagination a:hover {
    text-decoration: underline;
}

/* Sidebar */
aside {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 30px;
}

aside h3 {
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}

aside ul {
    list-style: none;
}

aside ul li {
    margin-bottom: 8px;
}

aside ul li a {
    color: #0073aa;
    text-decoration: none;
}

aside ul li a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
}

footer p {
    font-size: 14px;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Comments */
.comments-area {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #ddd;
}

.comment-list {
    list-style: none;
}

.comment {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f9f9f9;
}

.comment-author {
    font-weight: bold;
    margin-bottom: 5px;
}

.comment-meta {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="url"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
}

input[type="submit"] {
    background-color: #0073aa;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #005177;
}
