/* ============================================================
   THEME: Ocean King Red (New Ocean King — Chinese Restaurant, Winnipeg)
   Palette taken from the restaurant's own brand mark: a red
   seal-style emblem bearing the character 宴 ("feast"), paired
   with the classic Chinese gold accent.
   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:       #c9161f;                    /* Brand red — from the 宴 seal emblem */
  --gs-primary-dark:  #8a0f16;                    /* Deep red (dark panels, hover) */
  --gs-primary-deep:  #5c090f;                    /* Deepest maroon (footer, nav) */
  --gs-primary-light: rgba(201, 22, 31, 0.08);    /* Red tint (icon circles, fills) */

  /* ===== ACCENT ===== */
  --gs-accent:        #d09733;                    /* Chinese gold */
  --gs-accent-bright: #e9b95e;                    /* Bright gold (on dark surfaces) */
  --gs-accent-dark:   #8f6310;                    /* Deep gold (hover, text on light) */
  --gs-accent-light:  rgba(208, 151, 51, 0.13);   /* Gold tint */

  /* ===== UI COLORS ===== */
  --gs-dark:         #241416;     /* Ink: headings */
  --gs-text:         #4a3a3c;     /* Body text */
  --gs-text-light:   #7b6a6c;     /* Muted/secondary text */
  --gs-white:        #ffffff;
  --gs-bg:           #fdf7f1;     /* Warm ivory page background */
  --gs-bg-alt:       #f6e9dd;     /* Deeper ivory (alt sections) */
  --gs-cream:        #fffcf8;     /* Card surfaces */
  --gs-border:       rgba(36, 20, 22, 0.12);      /* Hairline borders */
  --gs-border-light: rgba(36, 20, 22, 0.07);      /* Very subtle borders */
  --gs-border-gold:  rgba(208, 151, 51, 0.38);    /* Gold hairlines */

  /* ===== ON-DARK COLORS ===== */
  --gs-dark-text:       #ecd7d4;                  /* Body text on maroon */
  --gs-dark-text-soft:  #c9a9a6;                  /* Muted text on maroon */
  --gs-dark-heading:    #fdf3e6;                  /* Headings on maroon */
  --gs-dark-border:     rgba(233, 185, 94, 0.22); /* Gold hairline on maroon */

  /* ===== SHADOWS ===== */
  --gs-shadow:       0 2px 6px rgba(70, 10, 14, 0.05), 0 14px 34px rgba(70, 10, 14, 0.09);
  --gs-shadow-hover: 0 4px 10px rgba(70, 10, 14, 0.07), 0 24px 54px rgba(70, 10, 14, 0.16);
  --gs-shadow-gold:  0 10px 30px rgba(208, 151, 51, 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(52, 6, 10, 0.64) 0%,
      rgba(52, 6, 10, 0.46) 45%,
      rgba(52, 6, 10, 0.74) 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(92, 9, 15, 0.94);
  --gs-nav-open-bg:       #5c090f;

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

  /* ===== FOOTER ===== */
  --gs-footer-bg:     #5c090f;
  --gs-footer-bar-bg: #3f0409;
  --gs-footer-text:   #c9a9a6;

  /* ===== BRAND GLOW ===== */
  --gs-glow:      rgba(201, 22, 31, 0.4);
  --gs-glow-dark: rgba(201, 22, 31, 0.5);
  --gs-glow-soft: rgba(201, 22, 31, 0.3);

  /* ===== DECORATIVE ===== */
  --gs-star-color:          #d09733;
  --gs-faq-section-bg:      #f6e9dd;
  --gs-faq-container-bg:    #fffcf8;

  /* ===== BACKWARD COMPATIBILITY ===== */
  /* Old variable names still referenced by legacy selectors */
  --primary:              #c9161f;
  --primaryLight:         #fdf7f1;
  --secondary:            #d09733;
  --secondaryLight:       #e9b95e;
  --primary-color:        #c9161f;
  --primary-color-light:  #fdf7f1;
  --primary-color-dark:   #8a0f16;
  --text-dark:            #241416;
  --text-light:           #7b6a6c;
  --white:                #ffffff;
  --main-color:           #d09733;
  --bg-shade:             #f6e9dd;
}
