/*
Theme Name: Competent Marketing
Theme URI: https://competent.marketing
Author: Александр Мар
Author URI: https://competent.marketing
Description: Современная тема блога для competent.marketing
Version: 1.0.0
License: GPL v2 or later
Text Domain: competent-marketing
*/
/* СНАЧАЛА ВСЕ ИМПОРТЫ */
/* ========== БАЗОВЫЕ СТИЛИ ========== */
@import url('base.css');

/* ========== КОМПОНЕНТЫ ========== */
@import url('components.css');

/* ========== ХЕДЕР ========== */
@import url('header.css');

/* ========== БЛОГ И ПОСТЫ ========== */
@import url('blog.css');

/* ========== ФУТЕР ========== */
@import url('footer.css');

/* ========== АНИМАЦИИ ========== */
@import url('animations.css');

/* ========== АДАПТИВНОСТЬ ========== */
@import url('responsive.css');

/* ========== ПЕРЕМЕННЫЕ И БАЗОВЫЕ СТИЛИ ========== */
:root {
  /* Основной тёмно‑синий акцент */
  --color-primary: #1a3a52;
  --color-primary-light: #2d5a78;
  --color-primary-lighter: #4a7ba7;
  
  --color-bg-dark: #0f1419;
  --color-bg-light: #1a1f28;
  --color-bg-card: #242d3a;
  
  --color-text-primary: #e4e6eb;
  --color-text-secondary: #a0a6b0;
  --color-text-tertiary: #757d8a;
  
  --color-accent: #4a9fd8;
  --color-accent-hover: #3a8ec7;
  --color-success: #4caf50;
  --color-warning: #ff9800;
  --color-error: #f44336;
  
  --color-border: rgba(255, 255, 255, 0.1);
  --color-border-light: rgba(255, 255, 255, 0.05);
  
  --font-main: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'Courier New', monospace;
  
  --font-size-xs: 11px;
  --font-size-sm: 13px;
  --font-size-base: 15px;
  --font-size-md: 17px;
  --font-size-lg: 20px;
  --font-size-xl: 24px;
  --font-size-2xl: 32px;
  --font-size-3xl: 40px;
  
  --line-height-tight: 1.2;
  --line-height-normal: 1.6;
  --line-height-relaxed: 1.8;
  
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 12px;
  --spacing-lg: 16px;
  --spacing-xl: 24px;
  --spacing-2xl: 32px;
  --spacing-3xl: 48px;
  
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.5);
  
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --ease-standard: cubic-bezier(0.16, 1, 0.3, 1);
}

