/* ==========================================================================
   Naalumanikkattu Website - Design Tokens & Variables
   Palette: Warm Cream / Kerala Terracotta Brown / Lush Palm Green / Kasavu Gold
   ========================================================================== */

:root {
  /* Color Palette - Neutrals & Cream */
  --bg-body: #FAF7F2;
  --bg-surface: #FFFFFF;
  --bg-surface-elevated: #FFFFFF;
  --bg-cream-tint: #F4EFEB;
  --bg-card: rgba(255, 255, 255, 0.85);

  /* Earth & Terracotta Browns (Kerala Pottery, Teak & Soil) */
  --color-earth-900: #23140C;
  --color-earth-800: #382014;
  --color-earth-700: #543120;
  --color-terracotta: #A64B2A;
  --color-terracotta-hover: #8D3D1F;
  --color-terracotta-light: #F8ECE7;
  --color-sand: #E7DFD5;

  /* Kerala Flora & Paddy Greens */
  --color-palm-900: #102B19;
  --color-palm-800: #1B4527;
  --color-palm-700: #266138;
  --color-palm-600: #337E4A;
  --color-palm-100: #E6F3EA;
  --color-palm-50: #F2F8F4;

  /* Kasavu & Traditional Brass Gold Accents */
  --color-gold: #C5982D;
  --color-gold-hover: #AA8122;
  --color-gold-light: #FDF6E2;
  --color-gold-border: rgba(197, 152, 45, 0.35);

  /* Typography Colors */
  --text-main: #241A15;
  --text-muted: #5C4B43;
  --text-light: #8A776E;
  --text-inverse: #FFFFFF;

  /* Borders & Dividers */
  --border-subtle: #EBE4DC;
  --border-medium: #D8CCC0;
  --border-focus: #266138;

  /* Shadows */
  --shadow-sm: 0 2px 6px rgba(44, 24, 16, 0.04);
  --shadow-md: 0 8px 24px rgba(44, 24, 16, 0.07);
  --shadow-lg: 0 16px 40px rgba(44, 24, 16, 0.1);
  --shadow-green: 0 10px 30px rgba(27, 69, 39, 0.15);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-malayalam: 'Manjari', 'Gayathri', sans-serif;

  /* Layout & Spacing */
  --container-max-width: 1200px;
  --container-narrow-width: 860px;
  --header-height: 80px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
