/* ============================================================
   THEME: Mesob Gold (Mesob Ethiopian Eats — Osborne Village, Winnipeg)
   Palette taken directly from the restaurant's own brand mark:
   gold "MESOB / ETHIOPIAN EATS" wordmark (#F8D858) on warm black.
   Warm cream surfaces carry the injera / teff tone.
   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: Playfair Display (display serif) + Lato (body sans) — matches mesob.ca */

:root {
  /* ===== BRAND COLORS ===== */
  --gs-primary:       #241D12;                    /* Warm espresso black — brand ground */
  --gs-primary-dark:  #1A150C;                    /* Deeper espresso (hover, panels) */
  --gs-primary-deep:  #100C06;                    /* Deepest (footer bar) */
  --gs-primary-light: rgba(36, 29, 18, 0.08);     /* Espresso tint (icon circles, fills) */

  /* ===== ACCENT ===== */
  --gs-accent:        #C9A227;                    /* Mesob gold */
  --gs-accent-bright: #F8D858;                    /* Brand gold, exact — on dark surfaces */
  --gs-accent-dark:   #8A6E0C;                    /* Deep gold (hover, text on light) */
  --gs-accent-light:  rgba(201, 162, 39, 0.13);   /* Gold tint */

  /* ===== UI COLORS ===== */
  --gs-dark:         #1C1710;     /* Ink: headings */
  --gs-text:         #453D30;     /* Body text */
  --gs-text-light:   #756B5B;     /* Muted/secondary text */
  --gs-white:        #ffffff;
  --gs-bg:           #FBF7EE;     /* Warm cream page background */
  --gs-bg-alt:       #F4ECDC;     /* Deeper cream (alt sections) */
  --gs-cream:        #FFFDF7;     /* Card surfaces */
  --gs-border:       rgba(28, 23, 16, 0.12);      /* Hairline borders */
  --gs-border-light: rgba(28, 23, 16, 0.07);      /* Very subtle borders */
  --gs-border-gold:  rgba(201, 162, 39, 0.38);    /* Gold hairlines */

  /* ===== ON-DARK COLORS ===== */
  --gs-dark-text:       #DED7C9;                  /* Body text on espresso */
  --gs-dark-text-soft:  #A79E8C;                  /* Muted text on espresso */
  --gs-dark-heading:    #F6EFE0;                  /* Headings on espresso */
  --gs-dark-border:     rgba(248, 216, 88, 0.22); /* Gold hairline on espresso */

  /* ===== SHADOWS ===== */
  --gs-shadow:       0 2px 6px rgba(28, 23, 16, 0.05), 0 14px 34px rgba(28, 23, 16, 0.09);
  --gs-shadow-hover: 0 4px 10px rgba(28, 23, 16, 0.07), 0 24px 54px rgba(28, 23, 16, 0.16);
  --gs-shadow-gold:  0 10px 30px rgba(201, 162, 39, 0.28);

  /* ===== TYPOGRAPHY ===== */
  --gs-font-heading:    'Playfair Display', 'Cormorant Garamond', 'Times New Roman', serif;
  --gs-font-body:       'Lato', 'Outfit', 'Segoe UI', sans-serif;
  --gs-heading-style:   normal;
  --gs-heading-weight:  600;

  /* ===== HERO ===== */
  --gs-hero-overlay: linear-gradient(
      180deg,
      rgba(16, 12, 6, 0.62) 0%,
      rgba(16, 12, 6, 0.44) 45%,
      rgba(16, 12, 6, 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(26, 21, 12, 0.94);
  --gs-nav-open-bg:       #1A150C;

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

  /* ===== FOOTER ===== */
  --gs-footer-bg:     #1A150C;
  --gs-footer-bar-bg: #100C06;
  --gs-footer-text:   #A79E8C;

  /* ===== BRAND GLOW ===== */
  --gs-glow:      rgba(36, 29, 18, 0.4);
  --gs-glow-dark: rgba(36, 29, 18, 0.5);
  --gs-glow-soft: rgba(36, 29, 18, 0.3);

  /* ===== DECORATIVE ===== */
  --gs-star-color:          #C9A227;
  --gs-faq-section-bg:      #F4ECDC;
  --gs-faq-container-bg:    #FFFDF7;

  /* ===== BACKWARD COMPATIBILITY ===== */
  /* Old variable names still referenced by legacy selectors */
  --primary-color:        #241D12;
  --primary-color-light:  #FBF7EE;
  --primary-color-dark:   #1A150C;
  --text-dark:            #1C1710;
  --text-light:           #756B5B;
  --white:                #ffffff;
  --main-color:           #C9A227;
  --bg-shade:             #F4ECDC;
}
