/* ============================================================
   THEME: Rockfort Chettinadu (Rockfort Authentic Chettinadu & Indian Cuisine)
   Brand palette pulled from the restaurant's own logo: deep navy
   (matching rockfortnw.ca's site background) + burnished gold
   (matching the logo's mountain-fort mark and wordmark).
   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:       #10182e;                    /* Deep navy — primary brand (matches rockfortnw.ca bg) */
  --gs-primary-dark:  #0a0f1d;                    /* Darker navy (hover, panels) */
  --gs-primary-deep:  #060912;                    /* Deepest navy (footer bar) */
  --gs-primary-light: rgba(16, 24, 46, 0.08);     /* Navy tint (icon circles, fills) */

  /* ===== ACCENT ===== */
  --gs-accent:        #c99a55;                    /* Burnished gold — from logo mark */
  --gs-accent-bright: #e0b978;                    /* Bright gold (on dark surfaces) */
  --gs-accent-dark:   #8c6238;                    /* Deep gold (hover, text on light) — 5.3:1 on white */
  --gs-accent-light:  rgba(201, 154, 85, 0.13);   /* Gold tint */

  /* ===== UI COLORS ===== */
  --gs-dark:         #1b1f27;     /* Ink: headings */
  --gs-text:         #3c4047;     /* Body text */
  --gs-text-light:   #676c75;     /* Muted/secondary text */
  --gs-white:        #ffffff;
  --gs-bg:           #faf8f3;     /* Warm off-white page background */
  --gs-bg-alt:       #f1ece0;     /* Deeper warm tint (alt sections) */
  --gs-cream:        #fffdf9;     /* Card surfaces */
  --gs-border:       rgba(16, 24, 46, 0.12);      /* Hairline borders */
  --gs-border-light: rgba(16, 24, 46, 0.07);      /* Very subtle borders */
  --gs-border-gold:  rgba(201, 154, 85, 0.38);    /* Gold hairlines */

  /* ===== ON-DARK COLORS ===== */
  --gs-dark-text:       #d6d9e0;                  /* Body text on navy */
  --gs-dark-text-soft:  #a3aab8;                  /* Muted text on navy */
  --gs-dark-heading:    #f4efe4;                  /* Headings on navy */
  --gs-dark-border:     rgba(224, 185, 120, 0.22); /* Gold hairline on navy */

  /* ===== SHADOWS ===== */
  --gs-shadow:       0 2px 6px rgba(16, 24, 46, 0.05), 0 14px 34px rgba(16, 24, 46, 0.09);
  --gs-shadow-hover: 0 4px 10px rgba(16, 24, 46, 0.07), 0 24px 54px rgba(16, 24, 46, 0.16);
  --gs-shadow-gold:  0 10px 30px rgba(201, 154, 85, 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(6, 9, 18, 0.62) 0%,
      rgba(6, 9, 18, 0.44) 45%,
      rgba(6, 9, 18, 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(10, 15, 29, 0.94);
  --gs-nav-open-bg:       #0a0f1d;

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

  /* ===== FOOTER ===== */
  --gs-footer-bg:     #0a0f1d;
  --gs-footer-bar-bg: #060912;
  --gs-footer-text:   #a3aab8;

  /* ===== BRAND GLOW ===== */
  --gs-glow:      rgba(16, 24, 46, 0.4);
  --gs-glow-dark: rgba(16, 24, 46, 0.5);
  --gs-glow-soft: rgba(16, 24, 46, 0.3);

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

  /* ===== BACKWARD COMPATIBILITY ===== */
  /* Old variable names still referenced by legacy selectors */
  --primary-color:        #10182e;
  --primary-color-light:  #faf8f3;
  --primary-color-dark:   #0a0f1d;
  --text-dark:            #1b1f27;
  --text-light:           #676c75;
  --white:                #ffffff;
  --main-color:           #c99a55;
  --bg-shade:              #f1ece0;
}
