/**
 * Sistem de Tipografie Global v2.2 - Constantia
 * Tema: E_Cartop
 */

:root {
  /* FONTUL PRINCIPAL PE TOT SITE-UL */
  --font-main: "Constantia", Georgia, "Times New Roman", Times, serif;

  /* DIMENSIUNI DE FONT (Font Sizes) - Scară tipografică redusă */
  --font-size-sm: 0.875rem; /* 14px - fix, pentru consistență */
  --font-size-base: 1rem;   /* 16px - fix, paragrafe */

  /* Titluri */
  --font-size-h4: 1.125rem; /* 18px */
  --font-size-h3: 1.25rem;  /* 20px */
  --font-size-h2: 1.5rem;   /* 24px */
  --font-size-h1: 2.25rem;  /* 36px */

  /* GROSIMI DE FONT (Font Weights) */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
}

/* APLICAREA STILURILOR GLOBALE */
body {
  font-family: var(--font-main);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  line-height: 1.7;
  color: var(--color-text-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
  font-family: var(--font-main);
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: var(--color-text-main);
}

h1, .h1 { font-size: var(--font-size-h1); font-weight: var(--font-weight-bold); letter-spacing: -0.02em; }
h2, .h2 { font-size: var(--font-size-h2); font-weight: var(--font-weight-semibold); }
h3, .h3 { font-size: var(--font-size-h3); font-weight: var(--font-weight-semibold); }
h4, .h4 { font-size: var(--font-size-h4); font-weight: var(--font-weight-semibold); }

p { margin-top: 0; margin-bottom: 1.5rem; }
a { font-weight: var(--font-weight-medium); }
strong, b { font-weight: var(--font-weight-semibold); }
