/* =========================================================
   KRISHNANANDHAM — theme.css
   Single source of truth for the color palette, fonts, easing
   and header height used across the entire site.
   Loaded FIRST (before style.css/animation.css/responsive.css)
   so every custom property (--gold, --bg-main, etc.) is defined
   before other stylesheets reference it.
   Edit values here to re-theme the whole site in one place.
   ========================================================= */

:root{
  --bg-deep:#03111C;
  --bg-main:#051827;
  --bg-navy:#081C30;
  --glass:rgba(255,255,255,0.06);
  --glass-strong:rgba(255,255,255,0.10);
  --gold:#D4AF37;
  --gold-light:#F7D46A;
  --white:#FAFAFA;
  --teal:#2F6F63;
  --font-display-en:'Cinzel', serif;
  --font-body-en:'Cormorant Garamond', serif;
  --font-ta:'Noto Serif Tamil', serif;
  --ease:cubic-bezier(.22,.9,.26,1);
  --header-h:84px;
}