/* =====================================
   DESIGN TOKENS - Adegas Lareu Sabatelius
   ===================================== */

:root {
  /* =========================
     COLOR PALETTE
     ========================= */

  /* Primary Colors - Granate/Wine (Acentos, Botones, Títulos) */
  --color-primary: #8B1E3F;
  /* Granate/Wine */
  --color-primary-dark: #6B1730;
  /* Granate escuro (Hover) */
  --color-primary-light: #A52A4D;
  /* Granate claro */

  /* Secondary Colors - Jet Black (Texto Principal, Fondos Oscuros) */
  --color-secondary: #2C3539;
  /* Jet Black */
  --color-secondary-dark: #1A2024;
  /* Jet Black oscuro */
  --color-secondary-light: #4B4540;
  /* Taupe */

  /* Neutral Colors */
  --color-cream: #F8F9FA;
  /* Blanco Roto / Fondo Base */
  --color-cream-dark: #E0E0E0;
  /* Gris Claro (Líneas/Separación) */
  --color-white: #FFFFFF;
  --color-black: #1A1A1A;
  --color-gray-100: #F8F9FA;
  --color-gray-200: #E0E0E0;
  /* Líneas y Separación */
  --color-gray-300: #C4C4C4;
  --color-gray-400: #9E9E9E;
  --color-gray-500: #757575;
  --color-gray-600: #4B4540;
  /* Taupe */
  --color-gray-700: #2C3539;
  /* Jet Black */
  --color-gray-800: #1A2024;

  /* Semantic Colors */
  --color-success: #4A7C59;
  --color-error: #B91C1C;
  --color-warning: #D97706;

  /* =========================
     TYPOGRAPHY
     ========================= */

  /* Font Families */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  /* 12px */
  --text-sm: 0.875rem;
  /* 14px */
  --text-base: 1rem;
  /* 16px */
  --text-lg: 1.125rem;
  /* 18px */
  --text-xl: 1.25rem;
  /* 20px */
  --text-2xl: 1.5rem;
  /* 24px */
  --text-3xl: 1.875rem;
  /* 30px */
  --text-4xl: 2.25rem;
  /* 36px */
  --text-5xl: 3rem;
  /* 48px */
  --text-6xl: 3.75rem;
  /* 60px */
  --text-7xl: 4.5rem;
  /* 72px */

  /* Font Weights */
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;

  /* Line Heights */
  --leading-tight: 1.2;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;

  /* Letter Spacing */
  --tracking-tight: -0.025em;
  --tracking-normal: 0;
  --tracking-wide: 0.05em;
  --tracking-wider: 0.1em;
  --tracking-widest: 0.2em;

  /* =========================
     SPACING
     ========================= */

  --space-0: 0;
  --space-1: 0.25rem;
  /* 4px */
  --space-2: 0.5rem;
  /* 8px */
  --space-3: 0.75rem;
  /* 12px */
  --space-4: 1rem;
  /* 16px */
  --space-5: 1.25rem;
  /* 20px */
  --space-6: 1.5rem;
  /* 24px */
  --space-8: 2rem;
  /* 32px */
  --space-10: 2.5rem;
  /* 40px */
  --space-12: 3rem;
  /* 48px */
  --space-16: 4rem;
  /* 64px */
  --space-20: 5rem;
  /* 80px */
  --space-24: 6rem;
  /* 96px */
  --space-32: 8rem;
  /* 128px */

  /* =========================
     LAYOUT
     ========================= */

  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  --container-2xl: 1536px;

  /* =========================
     BORDERS
     ========================= */

  --radius-none: 0;
  --radius-sm: 0.125rem;
  /* 2px */
  --radius-md: 0.375rem;
  /* 6px */
  --radius-lg: 0.5rem;
  /* 8px */
  --radius-xl: 0.75rem;
  /* 12px */
  --radius-2xl: 1rem;
  /* 16px */
  --radius-full: 9999px;

  --border-thin: 1px;
  --border-medium: 2px;
  --border-thick: 4px;

  /* =========================
     SHADOWS
     ========================= */

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* =========================
     TRANSITIONS
     ========================= */

  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-slower: 700ms ease;

  /* =========================
     Z-INDEX
     ========================= */

  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
  --z-agegate: 9999;
}

/* =========================
   BREAKPOINTS (for reference)
   - Mobile: max-width: 767px
   - Tablet: 768px - 1023px
   - Desktop: 1024px+
   ========================= */