/*
Theme Name: CleanBrand
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Description: Minimal WordPress theme for brand sites, lightweight and clean.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cleanbrand
Tags: minimal, custom, lightweight, elementor
*/

/* Reset и базовые стили */
html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

a:hover {
    text-decoration: underline;
}

/* Контейнер контента */
.content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Шапка */
.site-header {
    padding: 15px 30px;
}

.site-branding {
    margin: 0;
}

.site-title {
    margin: 0;
    font-size: 1.5em;
}

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

.site-description {
    margin: 0;
    font-size: 0.9em;
    opacity: 0.8;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    display: inline-block;
    margin-right: 15px;
}

.main-navigation a {
    color: inherit;
    text-decoration: none;
}

.main-navigation a:hover {
    text-decoration: underline;
}

/* Посты и страницы */
.entry-header {
    margin-bottom: 20px;
}

.entry-title {
    margin: 0;
    font-size: 1.8em;
}

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

.read-more {
    display: inline-block;
    margin-top: 10px;
}

/* Подвал */
.site-footer {
    padding: 15px 30px;
    text-align: center;
}

.site-info {
    font-size: 0.9em;
}

/* Адаптивность */
@media (max-width: 768px) {
    .content-area, .site-header, .site-footer {
        padding: 10px;
    }
    .site-title {
        font-size: 1.2em;
    }
    .entry-title {
        font-size: 1.5em;
    }
}

/* SEOблок в админке */
#cleanbrand_seo_meta_box label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}
#cleanbrand_seo_meta_box input[type="text"],
#cleanbrand_seo_meta_box textarea {
    width: 100%;
    max-width: 600px;
    margin-bottom: 15px;
}