:root {
    /* Colors - White & Pink Theme */
    --primary-color: #880e4f; /* Deep Pink/Burgundy for serious elements */
    --accent-color: #d81b60; /* Vibrant Pink for buttons/highlights */
    --accent-light: #f8bbd0; /* Soft Pink for subtle backgrounds */
    
    --text-color: #2c041c; /* Deep Burgundy/Black for high contrast */
    --text-muted: #5e2a40; /* Muted Burgundy */
    
    --bg-color: #ffffff; /* Pure White */
    --bg-light: #fff0f6; /* Very subtle pinkish white */
    --bg-dark: #f8c9d9; /* Darker Pink for sections */
    
    --white: #ffffff;
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease-in-out;
}
