@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@300;400;600;700&family=Outfit:wght@400;600&display=swap');

:root {
    /* Premium Color Palette */
    --color-primary: #800020; /* Deep Burgundy */
    --color-primary-light: #9e1b3c;
    --color-secondary: #d4af37; /* Soft Gold */
    --color-secondary-light: #f3d778;
    
    --color-bg-light: #fdfbf7; /* Off-white / Cream */
    --color-bg-dark: #1a1a2e; /* Deep Slate for future dark mode */
    --color-surface: #ffffff;
    
    --color-text-main: #2c3e50;
    --color-text-muted: #596a7b;
    --color-text-light: #ffffff;
    
    --color-success: #2ecc71;
    --color-danger: #e74c3c;
    --color-border: rgba(0,0,0,0.08);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Mukta', sans-serif;

    /* Shadows & Effects */
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    
    /* Radii */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-round: 50px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Global Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
}
