/* ============================================
   SHARED DESIGN TOKENS
   Exceed Expectations Tours - Amber Savanna
   Used by both frontend (style.css) and admin (admin.css)
   ============================================ */
:root {
    --amber-dark: #8B6914;
    --amber: #A67C2E;
    --amber-light: #C4993D;
    --amber-pale: #D4B06A;
    --amber-lightest: #F5EDD8;

    --slate-dark: #1C2526;
    --slate: #2D3B3C;
    --slate-medium: #4A5859;
    --slate-light: #7A8B8C;
    --slate-pale: #B5C0C1;
    --slate-lightest: #E8ECEC;

    --terra: #B85C38;
    --terra-dark: #8B4429;
    --terra-light: #D47B5B;
    --terra-lightest: #FFF0E8;

    --white: #FFFFFF;
    --success: #2E7D32;
    --trust-green: #16A34A;
    --warning: #F9A825;
    --warning-orange: #EA580C;
    --danger: #C62828;
    --error-red: #DC2626;
    --info: #1565C0;
    --info-blue: #2563EB;

    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 50px rgba(0,0,0,0.15);

    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
}
