/*
Theme Name: Aero Calculator
Theme URI: https://example.com/aero-calculator
Author:
Description: Класична WordPress-тема з інтегрованим аеродинамічним калькулятором для проєктування RC/БЛА (крило, оперення, нейтральна точка, CG, VH/VV, T/W). Розрахунок виконується на сервері через WordPress REST API, з можливістю збереження результатів у PDF на клієнті. Вставляється шорткодом [aero_calculator] або через шаблон сторінки "Аеродинамічний калькулятор".
Version: 1.3.2
Requires at least: 5.9
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aero-calculator
*/

:root {
  --ac-bg: #f0f4f8;
  --ac-panel: #ffffff;
  --ac-border: #c8d6e5;
  --ac-accent: #2563eb;
  --ac-text: #1e293b;
  --ac-muted: #64748b;
}

* { box-sizing: border-box; }

body {
  background: var(--ac-bg);
  color: var(--ac-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin: 0;
  line-height: 1.5;
}

.site-container { max-width: 1100px; margin: 0 auto; padding: 0 16px; }

.site-header {
  background: var(--ac-panel);
  border-bottom: 1px solid var(--ac-border);
  padding: 14px 0;
}
.site-header .site-container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.site-title { font-size: 18px; font-weight: 800; margin: 0; }
.site-title a { color: var(--ac-text); text-decoration: none; }
.site-title a:hover { color: var(--ac-accent); }
.site-description { color: var(--ac-muted); font-size: 12px; margin: 0; }

.primary-nav ul { list-style: none; display: flex; gap: 18px; margin: 0; padding: 0; }
.primary-nav a { color: var(--ac-text); text-decoration: none; font-size: 13px; }
.primary-nav a:hover { color: var(--ac-accent); }

main { padding: 28px 0 60px; }

.site-footer {
  border-top: 1px solid var(--ac-border);
  padding: 18px 0;
  color: var(--ac-muted);
  font-size: 12px;
  text-align: center;
}

.entry-content { margin: 0 auto 24px; }
