/*
=================================================================
    VARIABLES & BASE CONFIGURATION
=================================================================

    Define custom CSS variables (colors, fonts, spacing, etc.)
    for consistent theming across the site.
*/

:root {
    /* ===== COLOR PALETTE ===== */
    --primary-color: #ff9600;
    --secondary-color: #606d87;
    --accent-color: #0066cc;

    /* Text Colors */
    --text-primary: #333333;
    --text-secondary: #899eaa;
    --text-light: #ffffff;

    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f5;
    --bg-dark: #2c3e50;

    /* Border & Dividers */
    --border-color: #eeeeee;
    --border-color-dark: #cccccc;

    /* ===== TYPOGRAPHY ===== */
    --font-primary: 'Roboto', sans-serif;
    --font-heading: 'texgyreadventorbold', sans-serif;

    --font-size-base: 16px;
    --font-size-small: 14px;
    --font-size-large: 18px;

    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;

    /* ===== SPACING ===== */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 60px;

    /* ===== LAYOUT ===== */
    --container-max-width: 1200px;
    --sidebar-width: 300px;
    --header-height: 80px;

    /* ===== BORDERS & RADIUS ===== */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-circle: 50%;

    /* ===== SHADOWS ===== */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);

    /* ===== TRANSITIONS ===== */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== BASE RESETS (if needed) ===== */
/* Add any custom base resets here */
