/* ==========================================================================
   AMMA CHETHI RUCHULU - DESIGN SYSTEM & CSS TOKENS
   "Where Every Meal Feels Like Home" - Authentic Andhra Kitchen (Texas)
   ========================================================================== */

:root {
  /* Brand Color Palette - Authentic Andhra Spices & Warmth */
  --color-primary: #8B1E13;         /* Rich Andhra Guntur Chilli Red */
  --color-primary-dark: #65130B;    /* Deep Crimson */
  --color-primary-light: #A82E22;   /* Vibrant Red Spice */
  --color-primary-bg: #FFF5F4;      /* Soft Spice Tint */

  --color-gold: #D97706;            /* Saffron Turmeric Gold */
  --color-gold-light: #F59E0B;      /* Radiant Gold */
  --color-gold-warm: #FDE68A;       /* Gentle Amber */
  --color-gold-dark: #B45309;       /* Deep Brass Gold */
  --color-gold-bg: #FEF3C7;         /* Saffron Mist */

  --color-leaf: #165B45;            /* Fresh Curry Leaf Emerald */
  --color-leaf-dark: #0E4030;       /* Deep Forest */
  --color-leaf-light: #228B6A;      /* Tender Green */
  --color-leaf-bg: #ECFDF5;         /* Mint leaf wash */

  --color-cream: #FFFBF2;           /* Warm Rice & Ghee Cream */
  --color-sand: #FDF6E9;            /* Sandalwood Tint */
  --color-surface: #FFFFFF;         /* Crisp White */
  --color-surface-subtle: #F8FAFC;  /* Subtle grey */
  --color-border: #E8E0D2;          /* Warm Earth Border */
  --color-border-light: #F1ECE3;    /* Delicate Line */

  --color-charcoal: #1E293B;        /* Slate Charcoal Header */
  --color-text-main: #2D3748;       /* Primary Reading Text */
  --color-text-muted: #64748B;      /* Secondary Subtitle */
  --color-text-light: #94A3B8;      /* Placeholder / Light */

  --color-veg: #15803D;             /* Pure Veg Green Badge */
  --color-veg-bg: #DCFCE7;
  --color-nonveg: #DC2626;          /* Non-Veg Red Badge */
  --color-nonveg-bg: #FEE2E2;

  /* Typography */
  --font-serif: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows & Depth */
  --shadow-sm: 0 2px 8px rgba(30, 41, 59, 0.05);
  --shadow-md: 0 6px 20px rgba(30, 41, 59, 0.08);
  --shadow-lg: 0 12px 35px rgba(30, 41, 59, 0.12);
  --shadow-xl: 0 20px 45px rgba(139, 30, 19, 0.16);
  --shadow-gold: 0 8px 24px rgba(217, 119, 6, 0.25);
  --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.04);

  /* Border Radii */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition-fast: 180ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 280ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 400ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Header & Fixed Elements */
  --header-height: 80px;
  --container-max: 1280px;
}
