/* ============================================================
   THEME: Flame Red & Charcoal (The Flames Indian Cuisine) — matched to logo
   Swap this file to change the entire visual appearance.
   DO NOT add layout, grid, flexbox, or spacing here.
   ONLY define CSS custom property tokens and decorative CSS.
   ============================================================ */

/* Load this theme's fonts in the HTML <head> — NOT via @import */

:root {
  /* ===== BRAND COLORS ===== */
  --gs-red:          #e1171a;                    /* Brand red (sampled from logo) */
  --gs-red-dark:     #b51215;                    /* Darker red (hover, highlights) */
  --gs-red-light:    rgba(225, 23, 26, 0.1);     /* Red light tint (icon circles, hover fills) */

  /* ===== UI COLORS ===== */
  --gs-dark:         #161616;     /* Charcoal: headings (logo background tone) */
  --gs-text:         #333333;     /* Body text */
  --gs-text-light:   #6b7280;     /* Muted/secondary text, subtitles */
  --gs-white:        #ffffff;
  --gs-bg:           #fafafa;     /* Primary page background */
  --gs-bg-alt:       #f5f5f5;     /* Alternate section background (FAQ, etc.) */
  --gs-cream:        #fbf6f6;     /* Soft warm tint for card backgrounds */
  --gs-border:       #e5e7eb;     /* Borders, dividers */
  --gs-border-light: #f0f0f0;     /* Very subtle borders (FAQ items) */

  /* ===== SHADOWS ===== */
  --gs-shadow:       0 4px 20px rgba(0, 0, 0, 0.08);
  --gs-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);

  /* ===== TYPOGRAPHY ===== */
  --gs-font-heading:    'Playfair Display', serif;
  --gs-font-body:       'Source Sans 3', sans-serif;
  --gs-heading-style:   italic;
  --gs-heading-weight:  500;

  /* ===== HERO ===== */
  --gs-hero-overlay: rgba(0, 0, 0, 0.55);   /* Darkens background image */

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

  /* ===== NAVBAR ===== */
  --gs-nav-height:        120px;
  --gs-nav-height-mobile: 85px;
  --gs-nav-bg:            #111111;             /* Nav background — dark so the white/red logo reads */
  --gs-nav-text:          #ffffff;             /* Nav link + menu icon colour */
  --gs-nav-btn-text:      #ffffff;             /* Desktop "Order Now" button text */
  --gs-logo-bg:           transparent;         /* Logo sits directly on the dark nav */
  --gs-nav-open-bg:       rgba(17, 17, 17, 0.97); /* Mobile nav open state */

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

  /* ===== FOOTER ===== */
  --gs-footer-bg:     #161616;
  --gs-footer-bar-bg: #0e0e0e;
  --gs-footer-text:   #b9b9b9;

  /* ===== BRAND GLOW (shadow using primary color) ===== */
  --gs-glow:      rgba(225, 23, 26, 0.4);
  --gs-glow-dark: rgba(225, 23, 26, 0.5);
  --gs-glow-soft: rgba(225, 23, 26, 0.3);

  /* ===== DECORATIVE ===== */
  --gs-star-color:          #fbbf24;   /* Review/rating star gold */
  --gs-faq-section-bg:      #f5f5f5;   /* FAQ outer section background */
  --gs-faq-container-bg:    #f8f8f8;   /* FAQ inner container background */

  /* ===== SEMANTIC ALIASES (shared gs- system tokens) ===== */
  --gs-primary:       #e1171a;
  --gs-primary-dark:  #b51215;
  --gs-primary-light: rgba(225, 23, 26, 0.1);
  --gs-accent:        #ff3b3e;                    /* Bright flame highlight (logo has no second hue) */
  --gs-accent-dark:   #e1171a;
  --gs-accent-light:  rgba(255, 59, 62, 0.15);

  /* ===== BACKWARD COMPATIBILITY ===== */
  /* Old variable names still referenced in the legacy portion of style.css */
  --primary-color:        #e1171a;
  --primary-color-light:  rgba(225, 23, 26, 0.08);
  --primary-color-dark:   #b51215;
  --text-dark:            #161616;
  --text-light:           #6b7280;
  --white:                #ffffff;
  --main-color:           #e1171a;
  --bg-shade:             #f5f5f5;
}
