/* ============================================================
   THEME: Forest Green & Tandoori Orange (Oven Delight — Pizza & East Indian)
   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:          #406050;                    /* Primary forest green (from logo) */
  --gs-red-dark:     #d65a28;                    /* Tandoori orange accent (hover, highlights) */
  --gs-red-light:    rgba(64, 96, 80, 0.1);      /* Green light tint (icon circles, hover fills) */

  /* ===== UI COLORS ===== */
  --gs-dark:         #1a1a1a;     /* Near-black: headings */
  --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:        #fdf8f3;     /* Warm tone 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:            #406050;             /* Desktop nav background */
  --gs-nav-open-bg:       rgba(21, 21, 21, 0.96); /* Mobile nav open state */

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

  /* Solid call-to-action buttons use the tandoori orange accent, not the
     forest green brand colour. Green buttons disappear against the green
     nav bar and read as only 2.5:1 on the dark CTA bands; this deeper
     orange clears 4.7:1 with white text and 3.7:1 against near-black. */
  --gs-btn-bg:            #c2501f;
  --gs-btn-bg-hover:      #9e3f16;
  --gs-btn-text:          #ffffff;

  /* Buttons that sit ON the green brand bar (nav "Order Now") invert to a
     light fill so they stay legible — 7:1 against the nav background. */
  --gs-btn-on-brand-bg:         #fdf8f3;
  --gs-btn-on-brand-text:       #2d4338;
  --gs-btn-on-brand-bg-hover:   #c2501f;
  --gs-btn-on-brand-text-hover: #ffffff;

  /* Keyboard focus ring */
  --gs-btn-focus-ring: #d65a28;

  /* ===== FOOTER ===== */
  --gs-footer-bg:     #1f1f1f;
  --gs-footer-bar-bg: #2f2f2f;
  --gs-footer-text:   #b9b9b9;

  /* ===== BRAND GLOW (shadow using primary color) ===== */
  --gs-glow:      rgba(64, 96, 80, 0.4);
  --gs-glow-dark: rgba(64, 96, 80, 0.5);
  --gs-glow-soft: rgba(64, 96, 80, 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:       #406050;
  --gs-primary-dark:  #2d4338;
  --gs-primary-light: rgba(64, 96, 80, 0.1);
  --gs-accent:        #d65a28;
  --gs-accent-dark:   #b3491e;
  --gs-accent-light:  rgba(214, 90, 40, 0.15);

  /* ===== BACKWARD COMPATIBILITY ===== */
  /* Old variable names still referenced in the legacy portion of style.css */
  --primary-color:        #406050;
  --primary-color-light:  #fffcfa;
  --primary-color-dark:   #2d4338;
  --text-dark:            #1a1a1a;
  --text-light:           #6b7280;
  --white:                #ffffff;
  --main-color:           #d65a28;
  --bg-shade:             #f5f5f5;
}
