/* Explain: Theme design tokens (colors, fonts) — single source of truth. */
:root {
    --primary-color: #F97316; /* Portocaliu vibrant */
    --primary-hover: #EA580C;
    --secondary-color: #38BDF8; /* Albastru accent */
    --background-color: #0F172A; /* Albastru închis profund (Chenar) */
    --surface-color: #1E293B; /* Albastru închis pentru carduri */
    --text-color: #F8FAFC; /* Text alb strălucitor */
    --text-muted: #94A3B8; /* Text gri-albăstrui */
    --border-color: #334155;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}