/* SmartCalcs Universal Font Setup - Mobile & Desktop Optimized */

/* Font Import - Ensure font loads properly across all devices */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Font Fallbacks for better compatibility */
:root {
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    
    /* Base Font Sizes - Desktop First */
    --font-xs: 0.75rem;     /* 12px */
    --font-sm: 0.875rem;    /* 14px */
    --font-base: 1rem;      /* 16px */
    --font-lg: 1.125rem;    /* 18px */
    --font-xl: 1.25rem;     /* 20px */
    --font-2xl: 1.5rem;     /* 24px */
    --font-3xl: 1.875rem;   /* 30px */
    --font-4xl: 2.25rem;    /* 36px */
    --font-5xl: 3rem;       /* 48px */
    --font-6xl: 3.75rem;    /* 60px */
    
    /* Line Heights */
    --leading-none: 1;
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 2;
    
    /* Font Weights */
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    --font-black: 900;
    
    /* Letter Spacing */
    --tracking-tighter: -0.05em;
    --tracking-tight: -0.025em;
    --tracking-normal: 0em;
    --tracking-wide: 0.025em;
    --tracking-wider: 0.05em;
    --tracking-widest: 0.1em;
}

/* Universal Font Base Setup */
* {
    font-family: var(--font-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    font-size: 16px; /* Base font size */
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-base);
    line-height: var(--leading-normal);
    font-weight: var(--font-normal);
    color: #1a202c;
    background-color: #ffffff;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Headings with Responsive Sizes */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: var(--font-bold);
    line-height: var(--leading-tight);
    color: #1a202c;
    margin: 0;
    letter-spacing: var(--tracking-tight);
}

h1 {
    font-size: var(--font-4xl);
    font-weight: var(--font-extrabold);
    line-height: var(--leading-none);
}

h2 {
    font-size: var(--font-3xl);
    font-weight: var(--font-bold);
}

h3 {
    font-size: var(--font-2xl);
    font-weight: var(--font-semibold);
}

h4 {
    font-size: var(--font-xl);
    font-weight: var(--font-semibold);
}

h5 {
    font-size: var(--font-lg);
    font-weight: var(--font-medium);
}

h6 {
    font-size: var(--font-base);
    font-weight: var(--font-medium);
}

/* Paragraph and Text Elements */
p {
    font-size: var(--font-base);
    line-height: var(--leading-relaxed);
    color: #4a5568;
    margin: 0;
}

/* Links */
a {
    font-family: inherit;
    color: #3182ce;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #2c5aa0;
    text-decoration: underline;
}

/* Input and Form Elements */
input, textarea, select, button {
    font-family: var(--font-primary);
    font-size: var(--font-base);
    line-height: var(--leading-normal);
}

button {
    font-weight: var(--font-medium);
    letter-spacing: var(--tracking-wide);
}

/* Lists */
ul, ol {
    font-size: var(--font-base);
    line-height: var(--leading-relaxed);
}

li {
    margin-bottom: 0.25rem;
}

/* Code and Preformatted Text */
code, pre {
    font-family: var(--font-mono);
    font-size: var(--font-sm);
}

/* Tables */
table {
    font-size: var(--font-sm);
}

th {
    font-weight: var(--font-semibold);
}

/* Small and Large Text */
small {
    font-size: var(--font-xs);
    line-height: var(--leading-tight);
}

.text-large {
    font-size: var(--font-lg);
}

.text-xl {
    font-size: var(--font-xl);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    :root {
        --font-xs: 0.75rem;     /* 12px */
        --font-sm: 0.875rem;    /* 14px */
        --font-base: 1rem;      /* 16px - Keep base readable */
        --font-lg: 1.125rem;    /* 18px */
        --font-xl: 1.25rem;     /* 20px */
        --font-2xl: 1.375rem;   /* 22px - Reduced for mobile */
        --font-3xl: 1.5rem;     /* 24px - Reduced for mobile */
        --font-4xl: 1.875rem;   /* 30px - Reduced for mobile */
        --font-5xl: 2.25rem;    /* 36px - Reduced for mobile */
        --font-6xl: 2.75rem;    /* 44px - Reduced for mobile */
    }
    
    html {
        font-size: 16px; /* Maintain 16px base for mobile accessibility */
    }
    
    body {
        font-size: var(--font-base);
        line-height: var(--leading-relaxed);
    }
    
    h1 {
        font-size: var(--font-4xl);
        line-height: var(--leading-tight);
    }
    
    h2 {
        font-size: var(--font-3xl);
        line-height: var(--leading-tight);
    }
    
    h3 {
        font-size: var(--font-2xl);
        line-height: var(--leading-tight);
    }
    
    p {
        font-size: var(--font-base);
        line-height: var(--leading-relaxed);
    }
    
    /* Touch-friendly button text */
    button {
        font-size: var(--font-base);
        font-weight: var(--font-medium);
        min-height: 44px; /* Touch target size */
    }
    
    /* Form elements mobile optimization */
    input, textarea, select {
        font-size: 16px; /* Prevents zoom on iOS */
        line-height: var(--leading-normal);
    }
    
    /* Table mobile optimization */
    table {
        font-size: var(--font-sm);
    }
    
    th, td {
        padding: 0.5rem 0.25rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    :root {
        --font-2xl: 1.25rem;    /* 20px */
        --font-3xl: 1.375rem;   /* 22px */
        --font-4xl: 1.5rem;     /* 24px */
        --font-5xl: 1.875rem;   /* 30px */
        --font-6xl: 2.25rem;    /* 36px */
    }
    
    h1 {
        font-size: var(--font-4xl);
    }
    
    h2 {
        font-size: var(--font-3xl);
    }
    
    h3 {
        font-size: var(--font-2xl);
    }
}

/* Tablet Optimization */
@media (min-width: 769px) and (max-width: 1024px) {
    :root {
        --font-base: 1rem;      /* 16px */
        --font-lg: 1.125rem;    /* 18px */
        --font-xl: 1.25rem;     /* 20px */
        --font-2xl: 1.5rem;     /* 24px */
        --font-3xl: 1.75rem;    /* 28px */
        --font-4xl: 2rem;       /* 32px */
    }
}

/* Large Desktop Optimization */
@media (min-width: 1200px) {
    :root {
        --font-base: 1.125rem;   /* 18px - Larger for big screens */
        --font-lg: 1.25rem;     /* 20px */
        --font-xl: 1.375rem;    /* 22px */
        --font-2xl: 1.625rem;   /* 26px */
        --font-3xl: 2rem;       /* 32px */
        --font-4xl: 2.5rem;     /* 40px */
        --font-5xl: 3.25rem;    /* 52px */
        --font-6xl: 4rem;       /* 64px */
    }
}

/* Font Display Utilities */
.font-light { font-weight: var(--font-light); }
.font-normal { font-weight: var(--font-normal); }
.font-medium { font-weight: var(--font-medium); }
.font-semibold { font-weight: var(--font-semibold); }
.font-bold { font-weight: var(--font-bold); }
.font-extrabold { font-weight: var(--font-extrabold); }
.font-black { font-weight: var(--font-black); }

.text-xs { font-size: var(--font-xs); }
.text-sm { font-size: var(--font-sm); }
.text-base { font-size: var(--font-base); }
.text-lg { font-size: var(--font-lg); }
.text-xl { font-size: var(--font-xl); }
.text-2xl { font-size: var(--font-2xl); }
.text-3xl { font-size: var(--font-3xl); }
.text-4xl { font-size: var(--font-4xl); }
.text-5xl { font-size: var(--font-5xl); }
.text-6xl { font-size: var(--font-6xl); }

.leading-none { line-height: var(--leading-none); }
.leading-tight { line-height: var(--leading-tight); }
.leading-snug { line-height: var(--leading-snug); }
.leading-normal { line-height: var(--leading-normal); }
.leading-relaxed { line-height: var(--leading-relaxed); }
.leading-loose { line-height: var(--leading-loose); }

.tracking-tighter { letter-spacing: var(--tracking-tighter); }
.tracking-tight { letter-spacing: var(--tracking-tight); }
.tracking-normal { letter-spacing: var(--tracking-normal); }
.tracking-wide { letter-spacing: var(--tracking-wide); }
.tracking-wider { letter-spacing: var(--tracking-wider); }
.tracking-widest { letter-spacing: var(--tracking-widest); }

/* High DPI Display Optimization */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Dark Mode Font Adjustments */
@media (prefers-color-scheme: dark) {
    body {
        color: #f7fafc;
        background-color: #1a202c;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: #f7fafc;
    }
    
    p {
        color: #e2e8f0;
    }
    
    a {
        color: #63b3ed;
    }
    
    a:hover {
        color: #90cdf4;
    }
}

/* Print Styles */
@media print {
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
        background: #fff;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: #000;
        page-break-after: avoid;
    }
    
    p {
        color: #000;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus and Selection Styles */
::selection {
    background-color: #3182ce;
    color: #ffffff;
}

::-moz-selection {
    background-color: #3182ce;
    color: #ffffff;
}

/* Ensure all elements inherit font properly */
*, *::before, *::after {
    font-family: inherit;
}