/*
Theme Name: Custom WordPress Theme
Theme URI: https://example.com/custom-theme
Author: Gemini
Author URI: https://example.com
Description: Ein vollständiges, modernes und voll funktionsfähiges WordPress Theme.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: custom-theme
Tags: responsive, custom-colors, two-columns, blog, translation-ready
*/

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover, a:focus {
    text-decoration: underline;
}

/* Layout */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 1.5rem 2rem;
}

.site-branding .site-title {
    margin: 0;
    font-size: 1.8rem;
}

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

.site-description {
    margin: 0.25rem 0 0;
    color: #666666;
    font-size: 0.95rem;
}

.main-navigation {
    margin-top: 1rem;
}

.main-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
}

.main-navigation a {
    font-weight: 600;
    color: #444444;
}

.site-container {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 0 1.5rem;
    display: flex;
    gap: 2rem;
}

.content-area {
    flex: 3;
    min-width: 0;
}

.sidebar {
    flex: 1;
    background: #ffffff;
    padding: 1.5rem;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    height: fit-content;
}

/* Posts */
.post-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.post-title {
    margin-top: 0;
    font-size: 1.6rem;
}

.post-meta {
    font-size: 0.85rem;
    color: #777777;
    margin-bottom: 1rem;
}

.entry-content {
    margin-top: 1rem;
}

/* Pagination */
.pagination {
    margin-top: 2rem;
    display: flex;
    gap: 0.5rem;
}

.pagination .page-numbers {
    padding: 0.5rem 0.8rem;
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 3px;
}

.pagination .page-numbers.current {
    background: #0066cc;
    color: #ffffff;
    border-color: #0066cc;
}

/* Footer */
.site-footer {
    background-color: #111111;
    color: #ffffff;
    text-align: center;
    padding: 2rem 1.5rem;
    margin-top: 3rem;
}

.site-footer a {
    color: #ffffff;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .site-container {
        flex-direction: column;
    }
}
