/* ================================================
   CERDAS BERKARAKTER - Main Styles
   ================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
  /* Primary Colors - Red Pink */
  --purple-900: #4a0920;
  --purple-800: #6b0d2e;
  --purple-700: #8e113c;
  --purple-600: #b2164b;
  --purple-500: #e11e62;
  --purple-400: #e84d82;

  /* Accent Colors - Pink */
  --pink-700: #C4276E;
  --pink-600: #D63384;
  --pink-500: #e11e62;
  --pink-400: #e84d82;
  --pink-300: #f07da6;

  /* Gradient Combinations */
  --gradient-primary: linear-gradient(135deg, #b2164b 0%, #e11e62 100%);
  --gradient-hero: linear-gradient(135deg, #0d0005 0%, #2a0112 45%, #8e0a3a 75%, #e11e62 100%);
  --gradient-card: linear-gradient(180deg, rgba(225, 30, 98, 0.08) 0%, rgba(225, 30, 98, 0.03) 100%);
  --gradient-text: linear-gradient(135deg, #7a0d32 0%, #c4175a 100%);


  /* Neutral Colors */
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;

  /* Functional Colors */
  --success: #10B981;
  --success-light: #D1FAE5;
  --warning: #F59E0B;
  --error: #EF4444;
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;

  /* Typography */
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 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-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 40px rgba(225, 30, 98, 0.3);
  --shadow-glow-lg: 0 0 60px rgba(225, 30, 98, 0.4);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-slower: 800ms ease;

  /* Z-index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}
