/**
 * ============================================================================
 * Country ISO API - Public Website Theme System
 * ============================================================================
 * Mobile-first, modern, clean design with easy theme customization
 * Reuses portal CSS variable system for consistency
 * ============================================================================
 */

:root {
  /* ========================================================================
   * PRIMARY COLORS - Change these 3 colors to rebrand entire website
   * ======================================================================== */
  --primary-color: #2563eb;           /* Main brand color - buttons, links */
  --primary-hover: #1d4ed8;           /* Hover state for primary */
  --primary-light: #dbeafe;           /* Light backgrounds, highlights */
  --primary-dark: #1e40af;            /* Dark accents */

  /* ========================================================================
   * SECONDARY COLORS
   * ======================================================================== */
  --secondary-color: #64748b;         /* Secondary elements */
  --secondary-hover: #475569;         /* Secondary hover state */
  --secondary-light: #f1f5f9;         /* Light secondary backgrounds */

  /* ========================================================================
   * ACCENT COLORS
   * ======================================================================== */
  --accent-color: #10b981;            /* Success, positive actions */
  --accent-hover: #059669;            /* Accent hover */
  --accent-light: #d1fae5;            /* Light accent backgrounds */

  /* ========================================================================
   * BACKGROUND COLORS
   * ======================================================================== */
  --bg-primary: #ffffff;              /* Main background */
  --bg-secondary: #f9fafb;            /* Alternate sections */
  --bg-tertiary: #f3f4f6;             /* Cards, panels */
  --bg-dark: #111827;                 /* Dark mode background */
  --bg-overlay: rgba(0, 0, 0, 0.5);   /* Modal overlays */
  --bg-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);

  /* ========================================================================
   * TEXT COLORS
   * ======================================================================== */
  --text-primary: #111827;            /* Main text */
  --text-secondary: #6b7280;          /* Secondary text */
  --text-muted: #9ca3af;              /* Muted, disabled text */
  --text-inverse: #ffffff;            /* Text on dark backgrounds */
  --text-link: var(--primary-color); /* Links */

  /* ========================================================================
   * BORDER COLORS
   * ======================================================================== */
  --border-color: #e5e7eb;            /* Default borders */
  --border-light: #f3f4f6;            /* Light borders */
  --border-dark: #d1d5db;             /* Darker borders */
  --border-focus: var(--primary-color); /* Focus state */

  /* ========================================================================
   * STATUS COLORS
   * ======================================================================== */
  --success: #10b981;                 /* Success messages */
  --success-bg: #d1fae5;              /* Success backgrounds */
  --warning: #f59e0b;                 /* Warning messages */
  --warning-bg: #fef3c7;              /* Warning backgrounds */
  --danger: #ef4444;                  /* Error messages */
  --danger-bg: #fee2e2;               /* Error backgrounds */
  --info: #3b82f6;                    /* Info messages */
  --info-bg: #dbeafe;                 /* Info backgrounds */

  /* ========================================================================
   * SPACING SCALE (Mobile-first)
   * ======================================================================== */
  --space-xs: 0.25rem;    /* 4px */
  --space-sm: 0.5rem;     /* 8px */
  --space-md: 1rem;       /* 16px */
  --space-lg: 1.5rem;     /* 24px */
  --space-xl: 2rem;       /* 32px */
  --space-2xl: 3rem;      /* 48px */
  --space-3xl: 4rem;      /* 64px */
  --space-4xl: 6rem;      /* 96px */

  /* ========================================================================
   * TYPOGRAPHY
   * ======================================================================== */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, monospace;

  --font-size-xs: 0.75rem;      /* 12px */
  --font-size-sm: 0.875rem;     /* 14px */
  --font-size-base: 1rem;       /* 16px - mobile minimum */
  --font-size-lg: 1.125rem;     /* 18px */
  --font-size-xl: 1.25rem;      /* 20px */
  --font-size-2xl: 1.5rem;      /* 24px */
  --font-size-3xl: 1.875rem;    /* 30px */
  --font-size-4xl: 2.25rem;     /* 36px */
  --font-size-5xl: 3rem;        /* 48px */
  --font-size-6xl: 3.75rem;     /* 60px */

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;

  /* ========================================================================
   * 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);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* ========================================================================
   * BORDER RADIUS
   * ======================================================================== */
  --radius-sm: 0.25rem;    /* 4px */
  --radius-md: 0.375rem;   /* 6px */
  --radius-lg: 0.5rem;     /* 8px */
  --radius-xl: 0.75rem;    /* 12px */
  --radius-2xl: 1rem;      /* 16px */
  --radius-full: 9999px;   /* Fully rounded */

  /* ========================================================================
   * TRANSITIONS
   * ======================================================================== */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 200ms ease-in-out;
  --transition-slow: 300ms ease-in-out;

  /* ========================================================================
   * Z-INDEX SCALE
   * ======================================================================== */
  --z-base: 1;
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;

  /* ========================================================================
   * LAYOUT
   * ======================================================================== */
  --max-width-sm: 640px;
  --max-width-md: 768px;
  --max-width-lg: 1024px;
  --max-width-xl: 1280px;
  --max-width-2xl: 1536px;
}

/* ============================================================================
 * BASE STYLES
 * ============================================================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;  /* Base font size for rem calculations */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  min-height: 100vh;
}

/* ============================================================================
 * TYPOGRAPHY
 * ============================================================================ */

h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); }

p {
  margin-bottom: var(--space-md);
}

a {
  color: var(--text-link);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--primary-hover);
}

code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  background-color: var(--bg-tertiary);
  padding: 0.125rem 0.25rem;
  border-radius: var(--radius-sm);
}

/* ============================================================================
 * LAYOUT UTILITIES
 * ============================================================================ */

.container {
  width: 100%;
  max-width: var(--max-width-xl);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}

.container-sm { max-width: var(--max-width-sm); }
.container-md { max-width: var(--max-width-md); }
.container-lg { max-width: var(--max-width-lg); }
.container-xl { max-width: var(--max-width-xl); }
.container-2xl { max-width: var(--max-width-2xl); }

/* ============================================================================
 * RESPONSIVE TYPOGRAPHY (Mobile-first)
 * ============================================================================ */

/* Tablet and above */
@media (min-width: 768px) {
  h1 { font-size: var(--font-size-5xl); }
  h2 { font-size: var(--font-size-4xl); }
  h3 { font-size: var(--font-size-3xl); }
}

/* Desktop and above */
@media (min-width: 1024px) {
  h1 { font-size: var(--font-size-6xl); }
  h2 { font-size: var(--font-size-5xl); }
}
