/* ============================================================
   THEME: Samra's Pizza — colours taken from the Samra's Pizza logo:
   logo red #d82028 (buttons, accents), logo green #146838 (brand
   surfaces: nav, footer, dark panels), logo yellow #f8e800 (highlights
   on green), on a warm cream background. 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:       #146838;                    /* Logo green — primary brand */
  --gs-primary-dark:  #0f5530;                    /* Darker green (hover, panels) */
  --gs-primary-deep:  #0a3d22;                    /* Deepest green (footer bar) */
  --gs-primary-light: rgba(20, 104, 56, 0.08);     /* Green tint (icon circles, fills) */

  /* ===== ACCENT ===== */
  --gs-accent:        #d82028;                    /* Logo red — buttons & accents */
  --gs-accent-bright: #f8e800;                    /* Logo yellow (on green surfaces) */
  --gs-accent-dark:   #b3161d;                    /* Deep red (hover, text on light) */
  --gs-accent-light:  rgba(216, 32, 40, 0.10);   /* Red tint */

  /* ===== UI COLORS ===== */
  --gs-dark:         #231c1a;     /* Ink: headings */
  --gs-text:         #463e3b;     /* Body text */
  --gs-text-light:   #6f6562;     /* Muted/secondary text */
  --gs-white:        #ffffff;
  --gs-bg:           #faf6ee;     /* Parchment page background */
  --gs-bg-alt:       #f2ebdc;     /* Deeper parchment (alt sections) */
  --gs-cream:        #fffdf8;     /* Card surfaces */
  --gs-border:       rgba(35, 28, 26, 0.12);      /* Hairline borders */
  --gs-border-light: rgba(35, 28, 26, 0.07);      /* Very subtle borders */
  --gs-border-gold:  rgba(216, 32, 40, 0.32);    /* Red hairlines */

  /* ===== ON-DARK COLORS ===== */
  --gs-dark-text:       #d9e8de;                  /* Body text on green */
  --gs-dark-text-soft:  #a8c7b3;                  /* Muted text on green */
  --gs-dark-heading:    #fdf9ef;                  /* Headings on green */
  --gs-dark-border:     rgba(248, 232, 0, 0.25); /* Yellow hairline on green */

  /* ===== SHADOWS ===== */
  --gs-shadow:       0 2px 6px rgba(40, 22, 16, 0.05), 0 14px 34px rgba(40, 22, 16, 0.09);
  --gs-shadow-hover: 0 4px 10px rgba(40, 22, 16, 0.07), 0 24px 54px rgba(40, 22, 16, 0.16);
  --gs-shadow-gold:  0 10px 30px rgba(216, 32, 40, 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(8, 36, 20, 0.62) 0%,
      rgba(8, 36, 20, 0.44) 45%,
      rgba(8, 36, 20, 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(15, 85, 48, 0.95);
  --gs-nav-open-bg:       #0f5530;

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

  /* ===== FOOTER ===== */
  --gs-footer-bg:     #0f5530;
  --gs-footer-bar-bg: #0a3d22;
  --gs-footer-text:   #a8c7b3;

  /* ===== BRAND GLOW ===== */
  --gs-glow:      rgba(20, 104, 56, 0.4);
  --gs-glow-dark: rgba(20, 104, 56, 0.5);
  --gs-glow-soft: rgba(20, 104, 56, 0.3);

  /* ===== DECORATIVE ===== */
  --gs-star-color:          #f2b705;
  --gs-faq-section-bg:      #f2ebdc;
  --gs-faq-container-bg:    #fffdf8;

  /* ===== BACKWARD COMPATIBILITY ===== */
  /* Old variable names still referenced by legacy selectors */
  --primary-color:        #146838;
  --primary-color-light:  #faf6ee;
  --primary-color-dark:   #0f5530;
  --text-dark:            #231c1a;
  --text-light:           #6f6562;
  --white:                #ffffff;
  --main-color:           #d82028;
  --bg-shade:             #f2ebdc;
}
