/* ============================================
   DESIGN TOKENS - DISNEYLAND PARIS DIRECT
   Single source of truth for all design values
   ============================================ */

:root {
  /* ===========================================
     BRAND COLORS
     =========================================== */

  /* Disney Brand Colors */
  --disney-blue: #024492;
  --disney-pink: #ed0282;
  --disney-pink-hover: #bf1e7e;
  --disney-gold: #FFD700;

  /* Magic Gradient - Core Brand Element */
  --magic-gradient: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  --magic-gradient-reverse: linear-gradient(135deg, #2575fc 0%, #6a11cb 100%);
  --magic-gradient-soft: linear-gradient(135deg, rgba(106, 17, 203, 0.1) 0%, rgba(37, 117, 252, 0.1) 100%);

  /* Core Palette */
  --primary-color: #1E40AF;
  --secondary-color: #F97316;
  --success-color: #22C55E;
  --warning-color: #EAB308;
  --danger-color: #EF4444;

  /* Neutrals */
  --text-primary: #1a1a2e;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --background-color: #f8fafc;
  --surface-color: #ffffff;
  --border-color: #e2e8f0;

  /* ===========================================
     SPACING SCALE
     =========================================== */
  --spacing-1: 0.25rem;   /* 4px */
  --spacing-2: 0.5rem;    /* 8px */
  --spacing-3: 0.75rem;   /* 12px */
  --spacing-4: 1rem;      /* 16px */
  --spacing-5: 1.5rem;    /* 24px */
  --spacing-6: 2rem;      /* 32px */
  --spacing-8: 3rem;      /* 48px */
  --spacing-10: 4rem;     /* 64px */
  --spacing-12: 5rem;     /* 80px */

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

  /* Font Families */
  --font-display: 'Avenir Next', 'Avenir', 'Montserrat', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  /* Font Sizes */
  --font-size-xs: 0.75rem;    /* 12px */
  --font-size-sm: 0.875rem;   /* 14px */
  --font-size-base: 1rem;     /* 16px */
  --font-size-lg: 1.125rem;   /* 18px */
  --font-size-xl: 1.25rem;    /* 20px */
  --font-size-2xl: 1.5rem;    /* 24px */
  --font-size-3xl: 2rem;      /* 32px */
  --font-size-4xl: 2.5rem;    /* 40px */
  --font-size-5xl: 3.5rem;    /* 56px */

  /* Font Weights */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Line Heights */
  --line-height-tight: 1.1;
  --line-height-snug: 1.3;
  --line-height-normal: 1.6;
  --line-height-relaxed: 1.8;

  /* ===========================================
     BORDER RADIUS
     =========================================== */
  --radius-sm: 0.375rem;   /* 6px */
  --radius-md: 0.5rem;     /* 8px */
  --radius-lg: 1rem;       /* 16px */
  --radius-xl: 1.5rem;     /* 24px */
  --radius-2xl: 2rem;      /* 32px */
  --radius-full: 9999px;

  /* ===========================================
     SHADOWS
     =========================================== */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-magic: 0 20px 40px rgba(106, 17, 203, 0.2);

  /* ===========================================
     TRANSITIONS
     =========================================== */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* ===========================================
     Z-INDEX SCALE
     =========================================== */
  --z-dropdown: 100;
  --z-sticky: 500;
  --z-fixed: 1000;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;

  /* ===========================================
     LAYOUT
     =========================================== */
  --container-max-width: 1400px;
  --header-height: 80px;
  --header-height-mobile: 70px;
  --booking-bar-height: 72px;
}
