/* CSS Custom Properties (Variables) */

:root {
    /* Colors */
    --color-primary: #0077b6;
    --color-primary-dark: #005885;
    --color-primary-light: #0096d6;
    --color-text: #1a1a1a;
    --color-text-light: #4b5563;
    --color-text-muted: #6b7280;
    --color-bg: white;
    --color-bg-hero: #0077b6;
    --color-border: #c4d4d8;

    /* Typography */
    --font-family-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-family-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

    --font-size-base: 1rem;
    --font-size-h1: 2rem;
    --font-size-h2: 1.5rem;
    --font-size-h2-large: 2.5rem;
    --font-size-h2-section: 2rem;
    --font-size-h3: 1.25rem;
    --font-size-small: 0.95rem;

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

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 5rem;
    --spacing-xl-half: 1rem;

    /* Layout */
    --container-padding: 2rem;
    --navbar-height: 6rem;
    --section-gap: 3rem;

    /* Breakpoints */
    --breakpoint-mobile: 768px;
}

@media (max-width: 768px) {
    :root {
        --container-padding: var(--spacing-md);
        --navbar-height-mobile: 3.5rem;
    }
}