/* Dynamic Theme System CSS Variables */
:root {
    --primary-color: #f43f5e;
    --secondary-color: #f59e0b;
    --background-color: #020617;
    --text-color: #f8fafc;
    --accent-color: #fb7185;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Theme Pre-set Presets */
[data-theme="luxury-dark"] {
    --primary-color: #d97706;
    --secondary-color: #fbbf24;
    --background-color: #09090b;
    --text-color: #fafafa;
    --accent-color: #f59e0b;
    --card-bg: rgba(255, 255, 255, 0.04);
    --card-border: rgba(251, 191, 36, 0.15);
}

[data-theme="romantic-red"] {
    --primary-color: #e11d48;
    --secondary-color: #fda4af;
    --background-color: #1a050d;
    --text-color: #fff1f2;
    --accent-color: #f43f5e;
    --card-bg: rgba(255, 255, 255, 0.06);
    --card-border: rgba(244, 63, 94, 0.2);
}

[data-theme="dreamy-pink"] {
    --primary-color: #ec4899;
    --secondary-color: #f472b6;
    --background-color: #180914;
    --text-color: #fdf2f8;
    --accent-color: #f472b6;
    --card-bg: rgba(255, 255, 255, 0.06);
    --card-border: rgba(236, 72, 153, 0.2);
}

[data-theme="midnight-love"] {
    --primary-color: #8b5cf6;
    --secondary-color: #c084fc;
    --background-color: #050515;
    --text-color: #f5f3ff;
    --accent-color: #a855f7;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(139, 92, 246, 0.2);
}
