/* CSS Variables for Kobra Website */
:root {
  /* Brand Colors */
  --primary-color: #007bff; /* Deep Blue */
  --secondary-color: #d1e8ff; /* Light Blue */
  --accent-color: #4682b4; /* Steel Blue */
  --success-color: #28a745; /* Green */
  --warning-color: #ffc107; /* Yellow */
  --danger-color: #dc3545; /* Red */
  --info-color: #17a2b8; /* Cyan */

  /* Text Colors */
  --text-primary: #555555; /* Black */
  --text-secondary: #888888; /* Dark Gray */
  --text-secondary2: #101010; /* Dark Gray */
  --text-light: #007bff; /* Deep Blue Accent */
  --text-white: #ffffff; /* White */

  /* Background Colors */
  --bg-primary: #ffffff; /* White */
  --bg-secondary: #d1e8ff; /* Light Blue */
  --bg-light: #f5f5f5; /* Off-White */
  --bg-dark: #e0e0e0; /* Light Gray */
  --bg-gradient: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  --bg-gradient2: linear-gradient(
    90deg,
    var(--secondary-color),
    var(--primary-color)
  );
  --bg-gradient3: linear-gradient(135deg, var(--accent-color), var(--bg-light));

  --bg-overlay: rgba(255, 255, 255, 0.8); /* Semi-transparent white */

  /* Border Colors */
  --border-color: #cccccc; /* Light Gray */
  --border-color-light: #e0e0e0; /* Very Light Gray */
  --border-color-dark: #999999; /* Medium Gray */

  /* Typography */
  --font-primary: "Arial", sans-serif;
  --font-secondary: "Helvetica", sans-serif;
  --font-size-xs: 0.75rem; /* 12px */
  --font-size-sm: 0.875rem; /* 14px */
  --font-size-base: 1rem; /* 16px */
  --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 */

  /* Line Heights */
  --line-height-tight: 1.25;
  --line-height-base: 1.5;
  --line-height-loose: 1.75;

  /* Spacing */
  --spacing-xs: 0.25rem; /* 4px */
  --spacing-sm: 0.5rem; /* 8px */
  --spacing-md: 1rem; /* 16px */
  --spacing-lg: 1.5rem; /* 24px */
  --spacing-xl: 2rem; /* 32px */
  --spacing-2xl: 3rem; /* 48px */
  --spacing-3xl: 4rem; /* 64px */

  /* Border Radius */
  --border-radius-sm: 0.25rem; /* 4px */
  --border-radius-md: 0.5rem; /* 8px */
  --border-radius-lg: 1rem; /* 16px */
  --border-radius-full: 9999px;

  /* Box Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.07);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-fast: all 0.2s ease;
  --transition-base: all 0.3s ease;
  --transition-slow: all 0.5s ease;

  /* Z-index */
  --z-negative: -1;
  --z-normal: 1;
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal: 1040;
  --z-popover: 1050;
  --z-tooltip: 1060;

  /* Container Widths */
  --container-sm: 540px;
  --container-md: 720px;
  --container-lg: 960px;
  --container-xl: 1140px;
  --container-xxl: 1320px;

  /* Grid */
  --grid-gap: 1.5rem;
  --grid-columns: 12;

  /* Navigation */
  --nav-height: 80px;
  --nav-height-mobile: 60px;
  --nav-bg: rgba(209, 232, 255, 0.95); /* Light Blue */
  --nav-bg-scrolled: rgba(209, 232, 255, 0.98); /* Opaque Light Blue */

  /* Components */
  --card-padding: 1.5rem;
  --card-border-radius: var(--border-radius-md);
  --card-bg: var(--bg-secondary);
  --card-shadow: var(--shadow-md);

  /* Forms */
  --input-height: 48px;
  --input-padding: 0.75rem;
  --input-border: 1px solid var(--border-color);
  --input-border-radius: var(--border-radius-md);
  --input-bg: var(--bg-primary);
  --input-focus-border: var(--primary-color);

  /* Buttons */
  --btn-padding-y: 0.75rem;
  --btn-padding-x: 1.5rem;
  --btn-border-radius: var(--border-radius-md);
  --btn-font-weight: 600;
}

/* Dark Mode Variables */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-primary: #d1e8ff; /* Light Blue */
    --bg-secondary: #ffffff; /* White */
    --bg-light: #f5f5f5; /* Off-White */
    --text-primary: #333333; /* Black */
    --text-secondary: #666666; /* Dark Gray */
    --text-light: #007bff; /* Deep Blue */
    --border-color: #cccccc; /* Light Gray */
    --border-color-light: #e0e0e0; /* Very Light Gray */
    --nav-bg: rgba(209, 232, 255, 0.95); /* Semi-Transparent Light Blue */
    --nav-bg-scrolled: rgba(209, 232, 255, 0.98); /* More Opaque Light Blue */
    --card-bg: var(--bg-primary); /* Light Blue for Cards */
    --input-bg: var(--bg-secondary); /* White for Inputs */
  }
}

