/* ========================================
   OKUN ACADEMIA - CSS Variables & Themes
   ======================================== */

:root {
  /* Brand Colors */
  --accent-gold: #FFBC50;
  --accent-gold-dark: #E09926;
  --accent-gold-light: #F3C577;
  --accent-cta: #f17b53;
  --accent-cta-hover: #fc5522;
  --navy: #242837;
  --navy-light: #2e3347;
  --navy-lighter: #363b50;

  /* Light Theme (default) */
  --bg-primary: #f4f6fb;
  --bg-secondary: #ffffff;
  --bg-sidebar: #242837;
  --bg-sidebar-hover: #2e3347;
  --bg-sidebar-active: #363b50;
  --bg-topbar: #ffffff;
  --bg-input: #ffffff;
  --bg-card: #ffffff;
  --bg-modal-overlay: rgba(0,0,0,0.5);

  --text-primary: #292929;
  --text-secondary: #5a5f72;
  --text-muted: #8a8fa3;
  --text-sidebar: rgba(255,255,255,0.65);
  --text-sidebar-active: #ffffff;
  --text-on-accent: #ffffff;
  --text-link: #E09926;

  --border-color: #e2e8f0;
  --border-light: #f0f0f0;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 15px rgba(0,0,0,0.07);
  --shadow-lg: 0 8px 25px rgba(0,0,0,0.1);
  --shadow-hover: 0 8px 25px rgba(0,0,0,0.12);

  /* Status */
  --success: #22c55e;
  --success-bg: #f0fdf4;
  --warning: #f59e0b;
  --warning-bg: #fffbeb;
  --danger: #ef4444;
  --danger-bg: #fef2f2;
  --info: #3b82f6;
  --info-bg: #eff6ff;

  /* Sizing */
  --sidebar-width: 260px;
  --sidebar-collapsed: 68px;
  --topbar-height: 60px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-pill: 30px;
  --radius-full: 50%;

  /* Transitions */
  --ease-fast: 0.2s ease;
  --ease-normal: 0.3s ease;
  --ease-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  /* Typography */
  --font: 'Poppins', sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.85rem;
  --text-base: 0.95rem;
  --text-lg: 1.1rem;
  --text-xl: 1.3rem;
  --text-2xl: 1.6rem;
  --text-3xl: 2rem;
}

[data-theme="dark"] {
  --bg-primary: #13151e;
  --bg-secondary: #1c1f2e;
  --bg-sidebar: #13151e;
  --bg-sidebar-hover: #1c1f2e;
  --bg-sidebar-active: #252840;
  --bg-topbar: #1c1f2e;
  --bg-input: #252840;
  --bg-card: #1c1f2e;
  --bg-modal-overlay: rgba(0,0,0,0.7);

  --text-primary: #e8e8ec;
  --text-secondary: #a0a4b8;
  --text-muted: #6b7089;
  --text-sidebar: rgba(255,255,255,0.55);
  --text-link: #FFBC50;

  --border-color: #2e3347;
  --border-light: #252840;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 15px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 25px rgba(0,0,0,0.4);
  --shadow-hover: 0 8px 25px rgba(0,0,0,0.5);

  --success-bg: #0a2618;
  --warning-bg: #271f08;
  --danger-bg: #2a0f0f;
  --info-bg: #0f1a2e;
}
