:root {
    /* Colors */
    --han-pink: #e50056;
    
    /* Dark theme (default) */
    --carousel-bg: #111;
    --card-bg: #1a1a1a;
    --nav-bg: #111;
    --text-color: #ffffff;
    --nav-text: #ffffff;
    --border-color: rgba(255, 255, 255, 0.1);
    
    /* Spacing & Radius blijven hetzelfde */
    --spacing-lg: 2rem;
    --spacing-md: 1rem;
    --spacing-sm: 0.5rem;
    --radius-sm: 4px;
    --radius-md: 8px;
    
    /* Project status kleuren */
    --status-finished: #e50056;    /* HAN rood */
    --status-in-progress: #2ecc71; /* Originele groen terug */
    --status-passed: #6AC3ED;      /* Blauw uit secundair palet */
    --status-planned: #919191;     /* Grijs uit grijswaarden */
}

[data-theme="light"] {
    --carousel-bg: #f5f5f5;
    --card-bg: #ffffff;
    --nav-bg: #f5f5f5;
    --text-color: #333333;
    --nav-text: #333333;
    --border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] {
    --carousel-bg: #111;
    --card-bg: #1a1a1a;
    --text-color: #ffffff;
    --nav-text: #ffffff;
}

.theme-switch {
    /* Bestaande styles... */
    animation: rotate 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
} 