/**
 * Mangaldeep Saving & Credit Co-operative Ltd.
 * CSS Variables
 */

:root {
  /* Brand Color Palette */
  --primary-green: #2E7D32;
  --secondary-green: #43A047;
  --accent-green: #66BB6A;
  --light-green: #E8F5E9;
  --dark-green: #1B4332;
  --deep-forest: #0D2818;
  
  /* Neutral & Backgrounds */
  --bg-light: #F8FFF8;
  --bg-card: #FFFFFF;
  --bg-alt: #F1F8F2;
  --text-dark: #1F2937;
  --text-body: #374151;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --white: #FFFFFF;
  --border-color: #E5E7EB;
  --border-light: #E8F0E9;
  
  /* Status Colors */
  --success: #16A34A;
  --warning: #F59E0B;
  --danger: #DC2626;
  --info: #0284C7;
  
  /* Typography */
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Spacing & Sizing */
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius: 16px;
  --border-radius-lg: 24px;
  --border-radius-xl: 32px;
  --border-radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(27, 67, 50, 0.05);
  --shadow-md: 0 8px 24px rgba(27, 67, 50, 0.08);
  --shadow-lg: 0 16px 40px rgba(27, 67, 50, 0.12);
  --shadow-hover: 0 20px 45px rgba(46, 125, 50, 0.16);
  --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.04);
  
  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #2E7D32 0%, #43A047 100%);
  --gradient-dark: linear-gradient(135deg, #1B4332 0%, #2E7D32 100%);
  --gradient-hero: linear-gradient(135deg, rgba(27, 67, 50, 0.88) 0%, rgba(46, 125, 50, 0.75) 100%);
  --gradient-accent: linear-gradient(135deg, #43A047 0%, #66BB6A 100%);
  --gradient-soft: linear-gradient(180deg, #F8FFF8 0%, #EAF7EC 100%);
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.25);
  --glass-blur: blur(14px);
  --glass-card: rgba(255, 255, 255, 0.85);
}
