/* ============================================
   LUXO TRANSFER FLORIDA - Design Tokens
   ============================================ */

:root {
  /* Primary Colors */
  --color-black: #0A0A0A;
  --color-charcoal: #1A1A2E;
  --color-midnight: #16213E;

  /* Accent - Gold */
  --color-gold: #C9A84C;
  --color-gold-light: #D4B96A;
  --color-gold-dark: #A68A3E;

  /* Neutral */
  --color-white: #FAFAFA;
  --color-silver: #B0B0B0;
  --color-gray: #2A2A2A;
  --color-gray-light: #3A3A3A;

  /* Functional */
  --color-whatsapp: #25D366;
  --color-whatsapp-dark: #1DA851;
  --color-star: #F4B400;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, rgba(10, 10, 10, 0.85), rgba(26, 26, 46, 0.75));
  --gradient-gold: linear-gradient(135deg, #C9A84C, #D4B96A);
  --gradient-dark: linear-gradient(180deg, #0A0A0A 0%, #1A1A2E 100%);

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Raleway', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Type Scale (1.25 - Major Third) */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.563rem;
  --text-3xl: 1.953rem;
  --text-4xl: 2.441rem;
  --text-5xl: 3.052rem;
  --text-6xl: 3.815rem;

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

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-8: 3rem;
  --space-10: 4rem;
  --space-12: 5rem;
  --space-16: 8rem;

  /* Layout */
  --container-max-width: 1200px;
  --container-padding: var(--space-4);
  --section-padding-y: var(--space-12);
  --nav-height: 80px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 4px 16px rgba(201, 168, 76, 0.3);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;
}
