/* =============================================
   BUY A TIX - DESIGN SYSTEM
   CSS Custom Properties & Global Defaults
   ============================================= */

:root {
  /* ===== BRAND COLORS ===== */
  --bat-green: #9ED13C;
  --bat-green-light: #B8E56A;
  --bat-green-dark: #7AB22E;
  --bat-green-50: rgba(158, 209, 60, 0.08);
  --bat-green-100: rgba(158, 209, 60, 0.15);

  --bat-cyan: #29C5BB;
  --bat-cyan-light: #4ED9CF;
  --bat-cyan-dark: #1FA99F;
  --bat-cyan-50: rgba(41, 197, 187, 0.08);
  --bat-cyan-100: rgba(41, 197, 187, 0.15);

  --bat-blue: #5386E4;
  --bat-blue-light: #7AA3F0;
  --bat-blue-dark: #3A6BD1;
  --bat-blue-50: rgba(83, 134, 228, 0.08);
  --bat-blue-100: rgba(83, 134, 228, 0.15);

  /* ===== NEUTRALS ===== */
  --bat-black: #1A1A2E;
  --bat-gray-900: #212529;
  --bat-gray-800: #343a40;
  --bat-gray-700: #495057;
  --bat-gray-600: #6c757d;
  --bat-gray-500: #adb5bd;
  --bat-gray-400: #ced4da;
  --bat-gray-300: #dee2e6;
  --bat-gray-200: #e9ecef;
  --bat-gray-100: #f5f7fa;
  --bat-white: #ffffff;

  /* ===== SEMANTIC COLORS ===== */
  --bat-bg-page: #f5f7fa;
  --bat-bg-card: #ffffff;
  --bat-bg-footer: #1A1A2E;
  --bat-bg-nav: #ffffff;
  --bat-text-primary: #212529;
  --bat-text-secondary: #6c757d;
  --bat-text-muted: #adb5bd;
  --bat-text-on-dark: #f5f7fa;
  --bat-text-on-accent: #ffffff;
  --bat-link-color: var(--bat-blue);
  --bat-link-hover: var(--bat-blue-dark);

  /* ===== ACCENT / CTA ===== */
  --bat-accent: var(--bat-blue);
  --bat-accent-hover: var(--bat-blue-dark);
  --bat-cta-gradient: linear-gradient(135deg, var(--bat-green) 0%, var(--bat-cyan) 100%);

  /* ===== TYPOGRAPHY ===== */
  --bat-font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --bat-font-size-xs: 0.75rem;
  --bat-font-size-sm: 0.875rem;
  --bat-font-size-base: 1rem;
  --bat-font-size-lg: 1.125rem;
  --bat-font-size-xl: 1.25rem;
  --bat-font-size-2xl: 1.5rem;
  --bat-font-size-3xl: 2rem;
  --bat-font-weight-normal: 400;
  --bat-font-weight-medium: 500;
  --bat-font-weight-semibold: 600;
  --bat-font-weight-bold: 700;
  --bat-line-height-tight: 1.25;
  --bat-line-height-normal: 1.5;
  --bat-line-height-relaxed: 1.75;

  /* ===== BORDERS & RADIUS ===== */
  --bat-radius-sm: 6px;
  --bat-radius-md: 10px;
  --bat-radius-lg: 16px;
  --bat-radius-xl: 24px;
  --bat-radius-pill: 50rem;
  --bat-border-color: var(--bat-gray-300);

  /* ===== SHADOWS ===== */
  --bat-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --bat-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --bat-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --bat-shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.15);
  --bat-shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06);
  --bat-shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.12);

  /* ===== TRANSITIONS ===== */
  --bat-transition-fast: 150ms ease;
  --bat-transition-base: 250ms ease;
  --bat-transition-slow: 400ms ease;

  /* ===== CAROUSEL ===== */
  --bat-carousel-height: 500px;
  --bat-carousel-height-mobile: 300px;
  --bat-carousel-overlay: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

/* ===== GLOBAL DEFAULTS ===== */
body {
  background-color: var(--bat-bg-page);
  font-family: var(--bat-font-family);
  color: var(--bat-text-primary);
}
