/*
Theme Name: Chiang Mai Moto Classic
Theme URI: https://canonsetup-canon.com
Description: A professional, high-converting classic blog theme with a sidebar, standard readable typography, and vibrant travel styling tailored for motorbike rentals in Chiang Mai.
Version: 1.0.0
Author: Moto Web Studio
Author URI: https://canonsetup-canon.com
License: GNU General Public License v2 or later
License URI: http://gnu.org
Text Domain: chiangmai-moto
*/

:root {
    --primary: #0f172a;
    --accent: #e11d48;
    --accent-hover: #be123c;
    --bg-body: #f8fafc;
    --bg-card: #ffffff;
    --text-main: #334155;
    --text-light: #64748b;
    --border: #cbd5e1;
    
    --font-base: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-size-body: 16px;
    --line-height-body: 1.6;
    
    --container-width: 1200px;
    --sidebar-width: 320px;
}

/* --- БАЗОВЫЙ СБРОС --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-base);
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
    color: var(--text-main);
    background-color: var(--bg-body);
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-container {
    max-width: var(--container-width);
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
    width: 100%;
}

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

.widget-area {
    width: var(--sidebar-width);
    flex-shrink: 0;
}

@media (max-width: 960px) {
    .site-container {
        flex-direction: column;
    }
    .widget-area {
        width: 100%;
    }
}
