/* css/variables.css */

@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --primary-color: #004b87; /* Deep Blue from Nawy */
  --primary-color-hover: #003666;
  --accent-color: #ff6b00; /* Orange Accent */
  --accent-color-hover: #e65c00;
  
  --bg-main: #fcfcfc;
  --bg-card: #ffffff;
  --bg-subtle: #f2f4f7;
  
  --text-primary: #111827;
  --text-secondary: #6b7280;
  --text-inverse: #ffffff;
  
  --border-color: #e5e7eb;
  
  --success-color: #10b981;
  --success-bg: #d1fae5;

  /* Typography */
  /* We use Alexandria for Arabic and Poppins for English */
  --font-family: 'Alexandria', 'Poppins', sans-serif;

  /* Font Sizes (Unified & Calibrated to be lighter and sleeker) */
  --font-size-xs: 0.72rem;   /* 11.5px - for micro tags and subtitles */
  --font-size-sm: 0.82rem;   /* 13px - for card details and descriptions */
  --font-size-base: 0.92rem; /* 14.7px - for standard body text */
  --font-size-md: 1.05rem;   /* 16.8px - for medium buttons and section titles */
  --font-size-lg: 1.2rem;    /* 19.2px - for major titles and headers */
  --font-size-xl: 1.35rem;   /* 21.6px - for page welcomes and hero titles */
  --font-size-2xl: 1.6rem;   /* 25.6px - for extra-large hero headings */

  /* Font Weights (Set to be clean and elegant) */
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  /* 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 -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-floating: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Layout */
  --bottom-nav-height: 70px;
  --safe-area-bottom: env(safe-area-inset-bottom, 0px);
}

/* Dark Mode Variables (Optional for later) */
@media (prefers-color-scheme: dark) {
  /* You can uncomment and modify these later for dark mode */
  /*
  :root {
    --bg-main: #111827;
    --bg-card: #1f2937;
    --bg-subtle: #374151;
    --text-primary: #f9fafb;
    --text-secondary: #9ca3af;
    --border-color: #374151;
  }
  */
}
