/* Base styles and CSS reset */
:root {
    /* Colors */
    --primary-color: #2D3436;
    --primary-color-rgb: 45, 52, 54;
    --secondary-color: #0984E3;
    --bg-color: #FFFFFF;
    --bg-alt: #F8FAFC;
    --text-color: #2D3436;
    --text-secondary: #636E72;
    --text-light: #636E72;
    --border-color: #E2E8F0;
    --success-color: #00B894;
    --warning-color: #FDCB6E;
    --error-color: #D63031;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Font Sizes */
    --font-xs: 0.75rem;      /* 12px */
    --font-sm: 0.875rem;     /* 14px */
    --font-base: 1rem;       /* 16px */
    --font-md: 1.125rem;     /* 18px */
    --font-lg: 1.25rem;      /* 20px */
    --font-xl: 1.5rem;       /* 24px */
    --font-2xl: 2rem;        /* 32px */
    --font-3xl: 2.5rem;      /* 40px */
    --font-4xl: 3rem;        /* 48px */
    
    /* Line Heights */
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.7;
    
    /* Spacing */
    --spacing-xs: 0.5rem;    /* 8px */
    --spacing-sm: 1rem;      /* 16px */
    --spacing-md: 1.5rem;    /* 24px */
    --spacing-lg: 2rem;      /* 32px */
    --spacing-xl: 3rem;      /* 48px */
    --spacing-2xl: 4rem;     /* 64px */
    --spacing-3xl: 5rem;     /* 80px */
    --spacing-4xl: 6rem;     /* 96px */
    
    /* Border Radius */
    --radius-sm: 0.375rem;   /* 6px */
    --radius-md: 0.5rem;     /* 8px */
    --radius-lg: 0.75rem;    /* 12px */
    --radius-xl: 1rem;       /* 16px */
    --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);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
}

/* Dark mode colors */
[data-theme="dark"] {
    --primary-color: #E8EAED;
    --primary-color-rgb: 232, 234, 237;
    --secondary-color: #4A9EFF;
    --bg-color: #1A1D23;
    --bg-alt: #23272F;
    --text-color: #E8EAED;
    --text-secondary: #9AA0A6;
    --text-light: #9AA0A6;
    --border-color: #3C4048;
    --success-color: #2ECC71;
    --warning-color: #F39C12;
    --error-color: #E74C3C;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: var(--line-height-normal);
    font-weight: var(--font-weight-regular);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color var(--transition-base), color var(--transition-base);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: var(--line-height-tight);
    margin-bottom: var(--spacing-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--text-color);
}

h1 {
    font-size: var(--font-4xl);
}

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

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

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

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

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

p {
    margin-bottom: var(--spacing-sm);
    line-height: var(--line-height-relaxed);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-base);
}

a:hover {
    color: var(--primary-color);
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Responsive breakpoints */
@media (max-width: 1024px) {
    :root {
        --font-4xl: 2.5rem;   /* 40px */
        --font-3xl: 2rem;     /* 32px */
        --font-2xl: 1.75rem;  /* 28px */
    }
    
    .container {
        max-width: 960px;
    }
}

@media (max-width: 768px) {
    :root {
        --font-4xl: 2rem;      /* 32px */
        --font-3xl: 1.75rem;   /* 28px */
        --font-2xl: 1.5rem;    /* 24px */
        --font-xl: 1.25rem;    /* 20px */
    }
    
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
        max-width: 720px;
    }
}

@media (max-width: 480px) {
    :root {
        --font-4xl: 1.75rem;   /* 28px */
        --font-3xl: 1.5rem;    /* 24px */
        --font-2xl: 1.25rem;   /* 20px */
        --spacing-xl: 2rem;    /* 32px */
        --spacing-2xl: 3rem;   /* 48px */
        --spacing-3xl: 4rem;   /* 64px */
    }
}

/* Theme Toggle Button */
.theme-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: var(--secondary-color);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    transition: all var(--transition-base);
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.2);
}

.theme-toggle:active {
    transform: scale(0.95);
}

.theme-toggle svg {
    width: 24px;
    height: 24px;
    color: white;
    transition: transform var(--transition-base);
}

.theme-toggle:hover svg {
    transform: rotate(20deg);
}

/* Hide sun icon in light mode, moon icon in dark mode */
[data-theme="light"] .theme-toggle .moon-icon {
    display: block;
}

[data-theme="light"] .theme-toggle .sun-icon {
    display: none;
}

[data-theme="dark"] .theme-toggle .moon-icon {
    display: none;
}

[data-theme="dark"] .theme-toggle .sun-icon {
    display: block;
}

@media (max-width: 768px) {
    .theme-toggle {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 48px;
        height: 48px;
    }
    
    .theme-toggle svg {
        width: 20px;
        height: 20px;
    }
}    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #1a1a1a;
        --bg-alt: #2D3436;
        --text-color: #FFFFFF;
        --text-secondary: #B2BEC3;
        --text-light: #A0AEC0;
        --border-color: #2D3748;
    }
}