/* ============================================
   ALMAS EN RUTA — Design Tokens
   Paleta: Navy Blue + Gold (base del JSX)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,600&family=Nunito:wght@400;600;700;800&display=swap');

:root {
  /* ── Colores Principales (Gold) ── */
  --color-primary: #C9974A;
  --color-primary-dark: #B8843A;
  --color-primary-light: #E4C07A;
  --color-primary-rgb: 201, 151, 74;

  /* ── Colores Secundarios (Navy Blue) ── */
  --color-secondary: #0F1E3C;
  --color-secondary-dark: #091529;
  --color-secondary-light: #243A60;

  --color-accent: #4A6FA5;
  --color-accent-light: #6B8FBF;

  /* ── Fondos ── */
  --bg-body: #FAF8F4;
  --bg-card: #FFFFFF;
  --bg-surface: #F0EDE6;
  --bg-surface-alt: #FEF8EE;
  --bg-dark: #0F1E3C;
  --bg-dark-secondary: #1B2B4B;

  /* ── Texto ── */
  --text-primary: #12172B;
  --text-secondary: #4A5068;
  --text-muted: #6B7280;
  --text-on-dark: #FAF8F4;
  --text-on-primary: #FFFFFF;

  /* ── Estados ── */
  --color-success: #166534;
  --color-success-light: #DCFCE7;
  --color-warning: #D4A017;
  --color-warning-light: #FEF3C7;
  --color-error: #991B1B;
  --color-error-light: #FEE2E2;

  /* ── Bordes ── */
  --color-border: #E5DDD0;

  /* ── Tipografía ── */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Nunito', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --text-xs: 0.875rem;
  --text-sm: 1rem;
  --text-base: 1.125rem;
  --text-lg: 1.375rem;
  --text-xl: 1.75rem;
  --text-2xl: 2.25rem;
  --text-3xl: 2.75rem;
  --text-hero: 3.25rem;

  --line-height: 1.7;
  --line-height-tight: 1.3;
  --letter-spacing: 0.01em;
  --letter-spacing-wide: 0.08em;

  /* ── Espaciado ── */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* ── Bordes ── */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* ── Sombras (Navy-tinted) ── */
  --shadow-sm: 0 2px 8px rgba(15, 30, 60, 0.06);
  --shadow-md: 0 4px 16px rgba(15, 30, 60, 0.08);
  --shadow-lg: 0 8px 32px rgba(15, 30, 60, 0.12);
  --shadow-xl: 0 16px 48px rgba(15, 30, 60, 0.16);
  --shadow-glow: 0 4px 20px rgba(201, 151, 74, 0.3);

  /* ── Transiciones ── */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* ── Layout ── */
  --max-width: 1320px;
  --header-height: 80px;
  --sidebar-width: 280px;
}

/* ── Modo de fuente grande ── */
[data-font-size="large"] {
  --text-xs: 1rem;
  --text-sm: 1.125rem;
  --text-base: 1.375rem;
  --text-lg: 1.625rem;
  --text-xl: 2rem;
  --text-2xl: 2.5rem;
  --text-3xl: 3rem;
  --text-hero: 3.5rem;
}

[data-font-size="small"] {
  --text-xs: 0.8125rem;
  --text-sm: 0.9375rem;
  --text-base: 1rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-3xl: 2.5rem;
  --text-hero: 3rem;
}
