/* ============================================================
   THEME: Cheryl's Country Kitchen
   Diner-comfort palette: deep brick red (from the restaurant's
   own storefront/logo banner), warm country gold, cream parchment.
   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:       #b7312c;                    /* Brick red — from Cheryl's logo banner */
  --gs-primary-dark:  #8e2622;                    /* Darker red (hover, panels) */
  --gs-primary-deep:  #641a18;                    /* Deepest red (footer bar) */
  --gs-primary-light: rgba(183, 49, 44, 0.08);    /* Red tint (icon circles, fills) */

  /* ===== ACCENT ===== */
  --gs-accent:        #d4a54a;                    /* Warm country gold */
  --gs-accent-bright: #f3bd55;                    /* Bright gold (on dark surfaces) */
  --gs-accent-dark:   #9f7b37;                    /* Deep gold (hover, text on light) */
  --gs-accent-light:  rgba(212, 165, 74, 0.13);   /* Gold tint */

  /* ===== UI COLORS ===== */
  --gs-dark:         #241a17;     /* Ink: headings (warm near-black) */
  --gs-text:         #4a3b37;     /* Body text */
  --gs-text-light:   #7a6a65;     /* Muted/secondary text */
  --gs-white:        #ffffff;
  --gs-bg:           #fbf5ee;     /* Parchment page background */
  --gs-bg-alt:       #f3e9dc;     /* Deeper parchment (alt sections) */
  --gs-cream:        #fffdf9;     /* Card surfaces */
  --gs-border:       rgba(36, 26, 23, 0.12);      /* Hairline borders */
  --gs-border-light: rgba(36, 26, 23, 0.07);      /* Very subtle borders */
  --gs-border-gold:  rgba(212, 165, 74, 0.38);    /* Gold hairlines */

  /* ===== ON-DARK COLORS ===== */
  --gs-dark-text:       #ecd9d6;                  /* Body text on red */
  --gs-dark-text-soft:  #d3aead;                  /* Muted text on red */
  --gs-dark-heading:    #fbf1e6;                  /* Headings on red */
  --gs-dark-border:     rgba(243, 189, 85, 0.22); /* Gold hairline on red */

  /* ===== SHADOWS ===== */
  --gs-shadow:       0 2px 6px rgba(36, 26, 23, 0.05), 0 14px 34px rgba(36, 26, 23, 0.09);
  --gs-shadow-hover: 0 4px 10px rgba(36, 26, 23, 0.07), 0 24px 54px rgba(36, 26, 23, 0.16);
  --gs-shadow-gold:  0 10px 30px rgba(212, 165, 74, 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(100, 26, 24, 0.62) 0%,
      rgba(100, 26, 24, 0.44) 45%,
      rgba(100, 26, 24, 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(100, 26, 24, 0.94);
  --gs-nav-open-bg:       #8e2622;

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

  /* ===== FOOTER ===== */
  --gs-footer-bg:     #8e2622;
  --gs-footer-bar-bg: #641a18;
  --gs-footer-text:   #d3aead;

  /* ===== BRAND GLOW ===== */
  --gs-glow:      rgba(183, 49, 44, 0.4);
  --gs-glow-dark: rgba(183, 49, 44, 0.5);
  --gs-glow-soft: rgba(183, 49, 44, 0.3);

  /* ===== DECORATIVE ===== */
  --gs-star-color:          #d4a54a;
  --gs-faq-section-bg:      #f3e9dc;
  --gs-faq-container-bg:    #fffdf9;

  /* ===== BACKWARD COMPATIBILITY ===== */
  /* Old variable names still referenced by legacy selectors */
  --primary-color:        #b7312c;
  --primary-color-light:  #fbf5ee;
  --primary-color-dark:   #8e2622;
  --text-dark:            #241a17;
  --text-light:           #7a6a65;
  --white:                #ffffff;
  --main-color:           #d4a54a;
  --bg-shade:             #f3e9dc;
}
