:root {
    /* Colors */
    --color-limestone: #F9F7F2;     /* Warm, stone-like background */
    --color-sea-blue: #1C4E80;      /* Deep Mediterranean blue */
    --color-sunset-gold: #D4AF37;   /* Elegant metallic gold */
    --color-text-main: #2C2C2C;     /* Deep charcoal for readability */
    --color-text-light: #666666;
    --color-white: #FFFFFF;
    --color-error: #D32F2F;

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    /* Transitions */
    --transition-fast: 0.3s ease;
}
