/*
Theme Name:        Turbo ZNO
Theme URI:         https://turbo-zno.example/
Author:            Turbo
Author URI:         https://turbo-zno.example/
Description:       Custom WordPress theme for the Turbo ZNO website.
Version:           0.1.0
Requires at least: 6.0
Tested up to:      6.6
Requires PHP:      8.2
License:           Proprietary
Text Domain:       turbo-zno-theme
Tags:              custom
*/

/* ---------- Reset / base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                 "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1f2937;
    background: #ffffff;
}

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

a { color: #2563eb; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- Minimal layout ---------- */
.site-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.site-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.site-title a { color: inherit; }

.site-main {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.site-footer {
    margin-top: 4rem;
    padding: 2rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
}

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