/*
 ****************************************************************************************************************
 *
 * FILE NAME: icloudy-variables.css
 * FUNCTIONALITY: Defines the shared design variables for the website, including colors, spacing, shadows, and other reusable theme values.
 *
 * HISTORY
 * =======
 *
 * VERSION DATE AUTHOR(S) DESCRIPTION
 ----------------------------------------------------------------------------------------------------------------
 * 1.0 24-APR-2026 Shrey Kevadia Initial version
*/

:root {
  --red: #d32c2c;
  --red-dark: #b91c1c;
  --blue: #023e8a;
  --blue-dark: #012a5e;
  --pink-dark: #5c1a3d;
  --text: #111827;
  --text-soft: #4b5563;
  --text-nav: #374151;
  --hero-title: #002e65;
  --muted: #6b7280;
  --muted-light: #9ca3af;
  --line: rgba(229, 231, 235, 0.9);
  --line-soft: #e5e7eb;
  --line-strong: #d1d5db;
  --panel: #ffffff;
  --panel-soft: #f9fafb;
  --panel-muted: #f3f4f6;
  --blue-soft: #eff6ff;
  --red-soft: #fef2f2;
  --red-light: #ff6b6b;
  --success: #16a34a;
  --success-dark: #15803d;
  --success-soft: #dcfce7;
  --success-light: #f0fdf4;
  --success-bright: #4ade80;
  --warning: #facc15;
  --warning-soft: #fef3c7;
  --warning-light: #fefce8;
  --dark-panel: #1f2937;
  --shadow-xl: 0 24px 60px rgba(15, 23, 42, 0.14);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.1);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --container: min(1120px, calc(100vw - 32px));
  --container-narrow: min(960px, calc(100vw - 32px));
  /*font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;*/
  font-family: "Poppins", sans-serif;
}
