/* ═══ Единая система тем СНТ-портала ═══ */
@import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@400;500;600&family=Playfair+Display:wght@400;700&display=swap');

/* ── Светлая тема (по умолчанию) ───────────────────── */
:root {
  --bg-primary:     #faf8f3;
  --bg-secondary:   #ffffff;
  --bg-card:        #ffffff;
  --bg-input:       #ffffff;
  --header-bg:      #1a3a1f;
  --header-text:    #ffffff;
  --accent:         #2d5a27;
  --accent-hover:   #1a3a1f;
  --accent-light:   #e8f0e5;
  --gold:           #c8a84b;
  --text-primary:   #1a2018;
  --text-secondary: #5a6857;
  --text-muted:     #8a9887;
  --text-header:    #ffffff;
  --border:         #c8d8c0;
  --input-bg:       #ffffff;
  --shadow:         0 4px 24px rgba(26,58,31,.10);
  --danger:         #c0392b;
  --warning:        #e67e22;
  --success:        #27ae60;
  --info:           #2980b9;
  --radius:         12px;
  --font-main:      'Golos Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif:     'Playfair Display', serif;
  /* Маппинг для инлайн-переменных страниц */
  --bg:  #faf8f3;  --bg2: #ffffff;  --bg3: #ffffff;  --bg4: #f0ede6;  --bg5: #e8e4db;
  --text: #1a2018; --dim: #5a6857;
  --green: #27ae60; --green-bg: rgba(39,174,96,.1);
  --red: #c0392b; --red-bg: rgba(192,57,43,.08);
  --accent-bg: rgba(45,90,39,.08);
  --yellow: #c8a84b; --yellow-bg: rgba(200,168,75,.12);
}

/* ── Тёмная тема ───────────────────────────────────── */
[data-theme="dark"] {
  --bg-primary:     #0b0d11;
  --bg-secondary:   #12151c;
  --bg-card:        #1a1e28;
  --bg-input:       #242936;
  --header-bg:      #1A2E1A;
  --header-text:    #F0F0F0;
  --accent:         #818cf8;
  --accent-hover:   #6366f1;
  --accent-light:   rgba(129,140,248,.1);
  --gold:           #f59e0b;
  --text-primary:   #e8eaf0;
  --text-secondary: #6b7494;
  --text-muted:     #6b7494;
  --text-header:    #F0F0F0;
  --border:         #252a38;
  --input-bg:       #242936;
  --shadow:         rgba(0,0,0,0.3);
  --danger:         #ef4444;
  --warning:        #f59e0b;
  --success:        #22c55e;
  --info:           #3498DB;
  /* Маппинг для инлайн-переменных */
  --bg: #0b0d11; --bg2: #12151c; --bg3: #1a1e28; --bg4: #242936; --bg5: #2e3444;
  --text: #e8eaf0; --dim: #6b7494;
  --green: #22c55e; --green-bg: rgba(34,197,94,.1);
  --red: #ef4444; --red-bg: rgba(239,68,68,.1);
  --accent-bg: rgba(129,140,248,.1);
  --yellow: #f59e0b; --yellow-bg: rgba(245,158,11,.12);
}

/* ── Плавный переход при смене темы ────────────────── */
html {
  transition: background-color 0.3s ease, color 0.3s ease;
}
html[data-theme] body,
html[data-theme] .snt-header,
html[data-theme] .snt-card,
html[data-theme] input,
html[data-theme] select,
html[data-theme] textarea {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* ── Переключатель темы ────────────────────────────── */
.theme-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  transition: background 0.3s ease, transform 0.15s ease;
}
.theme-toggle:hover {
  transform: scale(1.1);
}
