/*
Theme Name: Konsorts
Theme URI: https://konsorts.lv
Author: SIA Konsorts
Description: Modern Corporate 2026 - Premium consulting theme for SIA Konsorts. Minimalist, high-trust design.
Version: 0.9
License: GNU General Public License v2 or later
Text Domain: konsorts
*/

/* ===== CSS Variables (blikkservice24.no style) ===== */
:root {
  --color-primary: #1E3A5F;
  --color-accent: #2E5A8F;
  --color-hover: #1E3A5F;
  --color-bg-light: #F4F7FA;
  --color-content-bg: #f9fafb;
  --color-bg-dark: #0F1E32;
  --color-text: #1E293B;
  --color-text-secondary: #64748B;
  /* LAD / Valsts kanceleja (lad.gov.lv): Verdana для информационных материалов */
  --font-heading: Verdana, Arial, Helvetica, sans-serif;
  --font-body: Verdana, Arial, Helvetica, sans-serif;
  --shadow-soft: 0 4px 24px rgba(30, 58, 95, 0.06);
  --shadow-card: 0 12px 40px rgba(30, 58, 95, 0.08);
  --shadow-elevated: 0 20px 50px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 16px;
  /* Premium unified cards */
  --card-radius: 16px;
  --card-shadow: 0 12px 40px rgba(30, 58, 95, 0.08);
  --card-shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.12);
  --card-padding: 24px;
  --card-border: 1px solid rgba(30, 58, 95, 0.06);
  --card-hover-lift: -6px;
  /* Unified buttons */
  --btn-padding: 14px 28px;
  --btn-radius: 10px;
  --btn-font-size: 15px;
  /* Unified spacing */
  --section-padding: 100px;
  --section-padding-mobile: 60px;
  --gap-section: 60px;
  --gap-cards: 24px;
  --color-bullet: #F59E0B;
  --color-svc-icon-bg: #E0E7FF;
  --color-svc-link: #3B82F6;
  --shadow-svc-card: 0 4px 10px rgba(0, 0, 0, 0.1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  /* Typography — единый стиль (заголовки −4px) */
  --font-size-h1: clamp(28px, 5vw, 52px);
  --font-size-h2: clamp(22px, 3.5vw, 32px);
  --font-size-h3: 22px;
  --font-size-h4: 18px;
  --font-size-body: 16px;
  --font-size-body-lg: 18px;
  --font-size-small: 14px;
  --font-size-tiny: 13px;
  --line-height-tight: 1.2;
  --line-height-body: 1.6;
}

/* ===== Reset & Base ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* Section spacing — responsive */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-body-lg);
  line-height: var(--line-height-body);
  color: var(--color-text);
  background: var(--color-content-bg);
  /* overflow-x: hidden removed — WPBakery stretch rows need visible overflow for full-width backgrounds */
}

input, select, textarea, button {
  font-family: var(--font-body);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 { font-size: var(--font-size-h1); margin-bottom: 0.5em; line-height: var(--line-height-tight); }
h2 { font-size: var(--font-size-h2); margin-bottom: 1rem; line-height: var(--line-height-tight); }
h3 { font-size: var(--font-size-h3); margin-bottom: 0.75rem; }
h4 { font-size: var(--font-size-h4); margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; font-size: var(--font-size-body); }

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons (unified premium style) ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--btn-padding);
  font-family: var(--font-heading);
  font-size: var(--btn-font-size);
  font-weight: 600;
  border-radius: var(--btn-radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(30, 58, 95, 0.35);
}

.btn-primary:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 58, 95, 0.4);
}

.btn-secondary {
  background: #fff;
  color: var(--color-primary) !important;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.9);
  border-color: #fff;
}
