/* ============================================
   MY STARTUP - MAIN STYLESHEET
   Color Scheme: Blue + Purple + Green
   ============================================ */

/* Root Colors */
:root {
    --primary-blue: #003366;
    --primary-purple: #071236;
    --primary-green: #66cc66;
    --light-blue: #dbeafe;
    --light-purple: #f3e8ff;
    --light-green: #dcfce7;
    --dark-blue: #1e40af;
    --dark-purple: #7c3aed;
    --dark-green: #15803d;
    --neutral-50: #f9fafb;
    --neutral-100: #f3f4f6;
    --neutral-200: #e5e7eb;
    --neutral-300: #d1d5db;
    --neutral-500: #6b7280;
    --neutral-700: #374151;
    --neutral-900: #111827;
    --neutral-1000: #ff6600;
    --neutral-2000: #000;
    --white: #ffffff;
    --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);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'IRANSans'!important;
    color: var(--neutral-900);
    background-color: var(--white);
    line-height: 1.6;
}
