/* ============================================================
   THEME: Great Canadian Pizza & Fried Chicken (Tuscany, Calgary)
   Palette sourced from the restaurant's own logo (maple-leaf red
   over royal blue). Swap this file to re-skin the entire site.
   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:       #df070e;                    /* Logo red — primary brand */
  --gs-primary-dark:  #a30509;                    /* Darker red (hover, panels) */
  --gs-primary-deep:  #E11D2E;                    /* Deepest red (footer bar) */
  --gs-primary-light: rgba(223, 7, 14, 0.08);     /* Red tint (icon circles, fills) */

  /* ===== ACCENT ===== */
  --gs-accent:        #F3F4F6;                    /* Logo crown gold */
  --gs-accent-bright: #F5C400;                    /* Bright gold (on dark surfaces) */
  --gs-accent-dark:   #df070e;                    /* Deep gold (hover, text on light) */
  --gs-accent-light:  rgba(241, 200, 12, 0.13);   /* Gold tint */

  /* ===== SECONDARY (logo royal blue — decorative/tint use only) ===== */
  --gs-secondary:       #2e2f91;
  --gs-secondary-light: rgba(46, 47, 145, 0.13);

  /* ===== UI COLORS ===== */
  --gs-dark:         #1b1414;     /* Ink: headings */
  --gs-text:         #4a3c3c;     /* Body text */
  --gs-text-light:   #7a6c6c;     /* Muted/secondary text */
  --gs-white:        #ffffff;
  --gs-bg:           #fdfaf9;     /* Clean page background */
  --gs-bg-alt:       #f6eeee;     /* Deeper subtle background (alt sections) */
  --gs-cream:        #ffffff;     /* Card surfaces */
  --gs-border:       rgba(27, 20, 20, 0.12);      /* Hairline borders */
  --gs-border-light: rgba(27, 20, 20, 0.07);      /* Very subtle borders */
  --gs-border-gold:  rgba(241, 200, 12, 0.38);    /* Gold hairlines */

  /* ===== ON-DARK COLORS ===== */
  --gs-dark-text:       #f0dbdb;                  /* Body text on dark red */
  --gs-dark-text-soft:  #d1a8a8;                  /* Muted text on dark red */
  --gs-dark-heading:    #fff5f5;                  /* Headings on dark red */
  --gs-dark-border:     rgba(109, 109, 178, 0.30); /* Blue hairline on dark red */

  /* ===== SHADOWS ===== */
  --gs-shadow:       0 2px 6px rgba(20, 10, 10, 0.06), 0 14px 34px rgba(20, 10, 10, 0.10);
  --gs-shadow-hover: 0 4px 10px rgba(20, 10, 10, 0.08), 0 24px 54px rgba(20, 10, 10, 0.18);
  --gs-shadow-gold:  0 10px 30px rgba(241, 200, 12, 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(60, 3, 5, 0.62) 0%,
      rgba(60, 3, 5, 0.44) 45%,
      rgba(60, 3, 5, 0.72) 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(163, 5, 9, 0.94);
  --gs-nav-open-bg:       #a30509;

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

  /* ===== FOOTER ===== */
  --gs-footer-bg:     #a30509;
  --gs-footer-bar-bg: #6e0206;
  --gs-footer-text:   #d1a8a8;

  /* ===== BRAND GLOW ===== */
  --gs-glow:      rgba(223, 7, 14, 0.4);
  --gs-glow-dark: rgba(223, 7, 14, 0.5);
  --gs-glow-soft: rgba(223, 7, 14, 0.3);

  /* ===== DECORATIVE ===== */
  --gs-star-color:          #f5a623;
  --gs-faq-section-bg:      #f6eeee;
  --gs-faq-container-bg:    #ffffff;

  /* ===== BACKWARD COMPATIBILITY ===== */
  /* Old variable names still referenced by legacy selectors */
  --primary-color:        #df070e;
  --primary-color-light:  #fdfaf9;
  --primary-color-dark:   #a30509;
  --text-dark:            #1b1414;
  --text-light:           #7a6c6c;
  --white:                #ffffff;
  --main-color:           #f1c80c;
  --bg-shade:             #f6eeee;
}
