/* ==========================================================================
   AAPKESITARE - DESIGN SYSTEM & COLOR PALETTE
   A cohesive, professional astrology-themed design system
   ========================================================================== */

/* PRIMARY BRAND COLORS */
:root {
    /* Main Brand Colors - Mystical Purple Theme */
    --primary-gradient-start: #6B46B8;      /* Deep Purple */
    --primary-gradient-end: #9D4EDD;        /* Vibrant Purple */
    --primary-dark: #5A3896;                /* Darker Purple */
    --primary-light: #B794F6;               /* Light Purple */
    
    /* Secondary Colors - Cosmic Gold Accents */
    --secondary-gold: #FFD700;              /* Bright Gold */
    --secondary-gold-dark: #FFA500;         /* Dark Gold */
    --secondary-gold-light: #FFE66D;        /* Light Gold */
    
    /* Accent Colors - Celestial Blue */
    --accent-blue: #4A90E2;                 /* Sky Blue */
    --accent-blue-dark: #2E5C8A;            /* Deep Blue */
    --accent-blue-light: #7CB9E8;           /* Light Blue */
    
    /* Success/Action Colors */
    --success-green: #10B981;               /* Emerald Green */
    --success-green-dark: #059669;          /* Dark Green */
    --warning-orange: #F59E0B;              /* Amber */
    --error-red: #EF4444;                   /* Red */
    
    /* Neutral Colors - Professional Grays */
    --neutral-900: #1F2937;                 /* Almost Black */
    --neutral-800: #374151;                 /* Dark Gray */
    --neutral-700: #4B5563;                 /* Medium Dark Gray */
    --neutral-600: #6B7280;                 /* Medium Gray */
    --neutral-500: #9CA3AF;                 /* Gray */
    --neutral-400: #D1D5DB;                 /* Light Gray */
    --neutral-300: #E5E7EB;                 /* Very Light Gray */
    --neutral-200: #F3F4F6;                 /* Extra Light Gray */
    --neutral-100: #F9FAFB;                 /* Off White */
    --neutral-white: #FFFFFF;               /* Pure White */
    
    /* Background Gradients */
    --bg-gradient-purple: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
    --bg-gradient-gold: linear-gradient(135deg, var(--secondary-gold-dark) 0%, var(--secondary-gold) 100%);
    --bg-gradient-cosmic: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --bg-gradient-soft: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    
    /* Shadow Styles */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Border Radius */
    --radius-sm: 0.375rem;    /* 6px */
    --radius-md: 0.5rem;      /* 8px */
    --radius-lg: 0.75rem;     /* 12px */
    --radius-xl: 1rem;        /* 16px */
    --radius-2xl: 1.5rem;     /* 24px */
    --radius-full: 9999px;    /* Fully rounded */
    
    /* Spacing Scale */
    --space-xs: 0.25rem;      /* 4px */
    --space-sm: 0.5rem;       /* 8px */
    --space-md: 1rem;         /* 16px */
    --space-lg: 1.5rem;       /* 24px */
    --space-xl: 2rem;         /* 32px */
    --space-2xl: 3rem;        /* 48px */
    --space-3xl: 4rem;        /* 64px */
    
    /* Typography */
    --font-family-base: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
    --font-family-heading: 'Outfit', 'Poppins', sans-serif;
    
    /* Font Sizes */
    --text-xs: 0.75rem;       /* 12px */
    --text-sm: 0.875rem;      /* 14px */
    --text-base: 1rem;        /* 16px */
    --text-lg: 1.125rem;      /* 18px */
    --text-xl: 1.25rem;       /* 20px */
    --text-2xl: 1.5rem;       /* 24px */
    --text-3xl: 1.875rem;     /* 30px */
    --text-4xl: 2.25rem;      /* 36px */
    --text-5xl: 3rem;         /* 48px */
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
}

/* ==========================================================================
   USAGE GUIDELINES
   ========================================================================== */

/*
BRAND COLORS USAGE:
- Primary Purple: Main branding, CTAs, important elements
- Secondary Gold: Highlights, special offers, premium features
- Accent Blue: Links, secondary actions
- Success Green: Confirmations, online status, positive actions
- Neutral Grays: Text, backgrounds, borders

GRADIENT USAGE:
- Purple Gradient: Hero sections, featured content
- Gold Gradient: Premium features, special sections
- Cosmic Gradient: Blog sections, creative content
- Soft Gradient: Background sections, subtle areas

SHADOW USAGE:
- sm: Subtle elevation (buttons, inputs)
- md: Cards, dropdowns
- lg: Modals, popovers
- xl/2xl: Floating elements, hero sections

BORDER RADIUS:
- sm/md: Buttons, inputs, tags
- lg/xl: Cards, containers
- 2xl: Feature sections
- full: Pills, avatar, badges
*/
