/**
 * CSS Variables
 * Core variables used throughout the theme
 *
 * @package MediaKit_Lite
 */

:root {
    /* Typography */
    --mkp-font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    --mkp-font-heading: Georgia, 'Times New Roman', serif;
    
    /* Spacing */
    --mkp-spacing-xs: 0.25rem;
    --mkp-spacing-sm: 0.5rem;
    --mkp-spacing-md: 1rem;
    --mkp-spacing-lg: 2rem;
    --mkp-spacing-xl: 3rem;
    --mkp-spacing-xxl: 4rem;
    
    /* Container */
    --mkp-container-width: 1200px;
    --mkp-container-padding: 1rem;
    
    /* Transitions */
    --mkp-transition: all 0.3s ease-in-out;
}