/* shared/css/variables.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    /* Rotary Official Colors */
    --rotary-blue: #00246C;
    --rotary-gold: #F7A81B;
    --rotary-light-blue: #005EAA;
    
    /* Premium Neutrals */
    --text-dark: #1A1A1A;
    --text-muted: #555555;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Layout */
    --container-width: 1200px;
    --transition-smooth: all 0.3s ease-in-out;
}