/* ============================================================
   THEME: Charisma Of India
   Regal palette: royal purple (from the logo) + burnished gold
   on warm cream. Restaurant-luxurious, appetite-warm.
   DO NOT add layout, grid, flexbox, or spacing here.
   ONLY define CSS custom property tokens and decorative values.
   ============================================================ */

/* Load this theme's fonts in the HTML <head> — NOT via @import */
/* Fonts: Cormorant Garamond (display serif) + Outfit (body sans) */

:root {
  /* ===== BRAND COLORS ===== */
  --gs-primary:       #3b1c8a;                    /* Royal purple — primary brand (logo peacock) */
  --gs-primary-dark:  #26197a;                    /* Deeper purple (hover, panels) */
  --gs-primary-deep:  #1a0f5c;                    /* Deepest purple (footer bar) */
  --gs-primary-light: rgba(59, 28, 138, 0.08);    /* Purple tint (icon circles, fills) */

  /* ===== ACCENT ===== */
  --gs-accent:        #d09733;                    /* Burnished gold */
  --gs-accent-bright: #e9b95e;                    /* Bright gold (on dark surfaces) */
  --gs-accent-dark:   #a87616;                    /* Deep gold (hover, text on light) */
  --gs-accent-light:  rgba(208, 151, 51, 0.13);   /* Gold tint */

  /* ===== UI COLORS ===== */
  --gs-dark:         #241638;     /* Ink: headings (deep purple-tinted) */
  --gs-text:         #3d3452;     /* Body text */
  --gs-text-light:   #6a6485;     /* Muted/secondary text */
  --gs-white:        #ffffff;
  --gs-bg:           #fdf9ee;     /* Warm cream page background */
  --gs-bg-alt:       #f5ecd6;     /* Deeper warm cream (alt sections) */
  --gs-cream:        #fffbf0;     /* Card surfaces */
  --gs-border:       rgba(36, 22, 56, 0.12);      /* Hairline borders */
  --gs-border-light: rgba(36, 22, 56, 0.07);      /* Very subtle borders */
  --gs-border-gold:  rgba(208, 151, 51, 0.38);    /* Gold hairlines */

  /* ===== ON-DARK COLORS ===== */
  --gs-dark-text:       #d4ccec;                  /* Body text on purple */
  --gs-dark-text-soft:  #a89dc9;                  /* Muted text on purple */
  --gs-dark-heading:    #f7efd9;                  /* Warm ivory headings on purple */
  --gs-dark-border:     rgba(233, 185, 94, 0.22); /* Gold hairline on purple */

  /* ===== SHADOWS ===== */
  --gs-shadow:       0 2px 6px rgba(26, 15, 92, 0.06), 0 14px 34px rgba(26, 15, 92, 0.11);
  --gs-shadow-hover: 0 4px 10px rgba(26, 15, 92, 0.08), 0 24px 54px rgba(26, 15, 92, 0.18);
  --gs-shadow-gold:  0 10px 30px rgba(208, 151, 51, 0.28);

  /* ===== TYPOGRAPHY ===== */
  --gs-font-heading:    'Cormorant Garamond', 'Times New Roman', serif;
  --gs-font-body:       'Outfit', 'Segoe UI', sans-serif;
  --gs-heading-style:   normal;
  --gs-heading-weight:  600;

  /* ===== HERO ===== */
  --gs-hero-overlay: linear-gradient(
      180deg,
      rgba(3, 2, 10, 0.534) 0%,
      rgba(0, 0, 0, 0.288) 45%,
      rgba(0, 0, 0, 0.603) 100%
    );

  /* ===== TEXTURE ===== */
  /* Fine film grain, layered over heroes and dark panels */
  --gs-grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");

  /* ===== LAYOUT ===== */
  --max-width: 1200px;

  /* ===== NAVBAR ===== */
  --gs-nav-height:        85px;
  --gs-nav-height-mobile: 72px;
  --gs-nav-bg:            rgba(38, 25, 122, 0.94);
  --gs-nav-open-bg:       #26197a;

  /* ===== BUTTONS ===== */
  --gs-btn-radius: 3px;

  /* ===== FOOTER ===== */
  --gs-footer-bg:     #26197a;
  --gs-footer-bar-bg: #1a0f5c;
  --gs-footer-text:   #cbc1e5;

  /* ===== BRAND GLOW ===== */
  --gs-glow:      rgba(59, 28, 138, 0.4);
  --gs-glow-dark: rgba(59, 28, 138, 0.5);
  --gs-glow-soft: rgba(59, 28, 138, 0.3);

  /* ===== DECORATIVE ===== */
  --gs-star-color:          #d09733;
  --gs-faq-section-bg:      #f5ecd6;
  --gs-faq-container-bg:    #fffbf0;

  /* ===== BACKWARD COMPATIBILITY ===== */
  /* Old variable names still referenced by legacy selectors */
  --primary-color:        #3b1c8a;
  --primary-color-light:  #fdf9ee;
  --primary-color-dark:   #26197a;
  --text-dark:            #241638;
  --text-light:           #6a6485;
  --white:                #ffffff;
  --main-color:           #d09733;
  --bg-shade:             #f5ecd6;
}
