/*
Theme Name: Custom Theme
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: Пустая кастомная тема для разработки
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
*/

/* ==========================================================================
   Global Styles
   ========================================================================== */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.page {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 20px 0;
}

.site-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

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

/* ==========================================================================
   Navigation
   ========================================================================== */

.main-navigation {
    margin-top: 20px;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.main-navigation a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: #0073aa;
}

/* ==========================================================================
   Content
   ========================================================================== */

.site-content {
}

.content-area {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.entry-title {
    font-size: 32px;
    margin-bottom: 15px;
    color: #333;
}

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

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

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    border-top: 1px solid #000;
    text-align: center;
    margin: 0 20px;
    padding: 20px 0;
}
