:root {
    /* Colors */
    --primary-color: #FF5722; /* Warm Orange/Red */
    --primary-hover: #E64A19;
    --secondary-color: #009688; /* Teal */
    --secondary-hover: #00796B;
    --dark-text: #333333;
    --light-text: #777777;
    --bg-light: #F9F9F9;
    --bg-white: #FFFFFF;
    --white: #FFFFFF;
    --border-color: #E0E0E0;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF5722 0%, #FF8A65 100%);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --border-radius: 8px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 5px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);

    /* Transitions */
    --transition-fast: 0.3s ease;
}
