/* ============================================
   VARIABLES.CSS - Barcelona Private Tour
   Sistema de diseño: Ink (negro azulado mate) + Gold (dorado cálido)
   Tipografía: Cormorant Garamond (serif) + Montserrat (sans-serif)
   ============================================ */

:root {
  /* ===== COLORES - INK (Negro azulado mate) ===== */
    --ink-900: #0A0E14;  /* Principal - fondos más oscuros */
    --ink-800: #0F1520;
    --ink-700: #151D2B;  /* Cards de tours, secciones oscuras */
    --ink-600: #1C2738;
    --ink-500: #243244;
    --ink-400: #344A62;
    --ink-300: #4A6580;
    --ink-200: #6B8BA8;
    --ink-100: #A8BDD0;
    --ink-050: #D6E3EE;

  /* ===== COLORES - GOLD (Dorado cálido) ===== */
    --gold-900: #3D2800;
    --gold-800: #6B4500;
    --gold-700: #8C5C00;
    --gold-600: #B07820;
    --gold-500: #C9943A;
    --gold-400: #D4A84B;   /* Principal - CTAs, acentos, dorado base */
    --gold-300: #E2BF6E;
    --gold-200: #EDD494;
    --gold-100: #F5E6BC;
    --gold-050: #FAF3E0;

  /* ===== COLORES - NEUTROS Y FONDOS ===== */
    --cream: #F7F2E8;           /* Fondo secciones cálidas */
    --white-warm: #FDFAF5;      /* Fondo principal claro */
    --white: #FFF;
    --black: #000000;

  /* ===== TIPOGRAFÍA - FAMILIAS ===== */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Jost', sans-serif;
    --font-mono: 'SF Mono', monospace;

  /* ===== TIPOGRAFÍA - TAMAÑOS (Escala modular) ===== */
    --text-xs: 0.75rem;     /* 12px */
    --text-sm: 0.875rem;    /* 14px */
    --text-base: 1rem;      /* 16px */
    --text-md: 1.125rem;    /* 18px */
    --text-lg: 1.25rem;     /* 20px */
    --text-xl: 1.5rem;      /* 24px */
    --text-2xl: 1.75rem;    /* 28px */
    --text-3xl: 2rem;       /* 32px */
    --text-4xl: 2.5rem;     /* 40px */
    --text-5xl: 3rem;       /* 48px */
    --text-6xl: 4rem;       /* 64px */

  /* ===== TIPOGRAFÍA - PESOS ===== */
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;

  /* ===== TIPOGRAFÍA - Tamaños ===== */
    --font-lg: clamp(42px, calc(1rem + 7svh), 81px);
    --font-base: clamp(18px, calc(0.1 + 6svh), 24px);

  /* ===== TIPOGRAFÍA - Espaciado de letras ===== */
    --ls-strech: 1.2px;

  /* ===== TIPOGRAFÍA - ALTURAS DE LÍNEA ===== */
    --leading-tight: 1.2;
    --leading-normal: 1.5;
    --leading-relaxed: 1.7;
    --leading-loose: 2;

    --lh-section: 0.9;        /* h2 section line height*/
    --lh-paragraph: 1.15;

  /* ===== TIPOGRAFÍA - ESPACIADO ENTRE LETRAS ===== */
    --tracking-tighter: -0.02em;
    --tracking-tight: -0.01em;
    --tracking-normal: 0;
    --tracking-wide: 0.06em;
    --tracking-wider: 0.1em;
    --tracking-widest: 0.12em;

  /* ===== BORDES Y SOMBRAS ===== */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    --border-radius-full: 9999px;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 4px 12px rgba(212, 168, 75, 0.2);

  /* ===== ESPACIADO (Spacing) ===== */
    --spacing-0: 0;
    --spacing-1: 0.25rem;   /* 4px */
    --spacing-2: 0.5rem;    /* 8px */
    --spacing-3: 0.75rem;   /* 12px */
    --spacing-4: 1rem;      /* 16px */
    --spacing-5: 1.25rem;   /* 20px */
    --spacing-6: 1.5rem;    /* 24px */
    --spacing-8: 2rem;      /* 32px */
    --spacing-10: 2.5rem;   /* 40px */
    --spacing-12: 3rem;     /* 48px */
    --spacing-16: 4rem;     /* 64px */
    --spacing-20: 5rem;     /* 80px */

  /* ===== BREAKPOINTS RESPONSIVE ===== */
    --breakpoint-sm: 640px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 1024px;
    --breakpoint-xl: 1280px;
    --breakpoint-2xl: 1536px;


  /* ===== CONTENEDORES Y ANCHOS ===== */
    --mw-content: 1200px; /* Max-width para contenido principal */
    --mw-md: 1080px;      /* Max-width para pantallas medianas */
    --mw-sm: 720px;       /* Max-width para pantallas pequeñas */
    --mw-full: 100%;        /* Max-width completo */
    --mw-vw: 100vw;          /* Max-width de la ventana */

    --mb-section: 44px;

    --h2-mb: 48px;


  /* ===== MARGINS & PADDINGS ===== */
    --mb-heading: 48px;
    --gap-base: 32px;
}
