/* ========== CSS CUSTOM PROPERTIES ========== */
:root {
    /* Colors */
    --color-black: #000000;
    --color-white: #ffffff;
    --color-text: #1a1a1a;
    --color-text-secondary: #333333;
    --color-gray: #808080;
    --color-gray-light: #bfbfbf;
    --color-border: #ededed;
    --color-bg-light: #fafafa;
    --color-accent: #0099ff;

    /* Fonts */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Funnel Sans', sans-serif;

    /* Spacing */
    --section-padding: 128px;
    --container-padding: 48px;
    --max-width: 1260px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-full: 50px;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.6s ease;
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
        --container-padding: 24px;
    }
}
