/* =========================================
   PROJECTS SECTION - VARIABLES
   Apple-Style Theme Tokens
========================================= */
:root {
    /* Typography */
    --proj-font-display: 'Outfit', sans-serif;
    --proj-font-body: 'Inter', sans-serif;

    /* Colors */
    --proj-bg: transparent;
    --proj-text-primary: #ffffff;
    --proj-text-muted: rgba(255, 255, 255, 0.6);
    --proj-accent: rgba(138, 43, 226, 0.15);
    --proj-overlay: linear-gradient(135deg,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.1) 100%);

    /* Spacing */
    --proj-section-padding: 0;
    --proj-card-radius: 16px;

    /* Transitions */
    --proj-transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --proj-transition-fast: 0.3s ease;
}