/* ============================================================
   COLOR CONFIGURATION — Kolkata Food Plaza
   Theme: Warm Ivory / Pearl White dominant · Royal Midnight Navy & Rich Gold accents
   Designed and Code written by Pusala Arun Kumar

   ✦ THIS is the ONLY file you change per restaurant.
   ✦ Load this BEFORE restaurant-core.css in your HTML.
   ============================================================ */

:root {

  /* ────────────────────────────────────
     TYPOGRAPHY
     ──────────────────────────────────── */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-label:   'DM Sans', system-ui, sans-serif;

  /* ────────────────────────────────────
     LAYOUT TOKENS
     ──────────────────────────────────── */
  --nav-h:       76px;
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --ease-back:   cubic-bezier(0.34, 1.56, 0.64, 1);

  /* ────────────────────────────────────
     SHADOWS  (midnight navy depth & warm gold glow)
     ──────────────────────────────────── */
  --shadow-xs:     0 1px 4px  rgba(14, 32, 56, 0.06);
  --shadow-sm:     0 3px 14px rgba(14, 32, 56, 0.08);
  --shadow-md:     0 8px 32px rgba(14, 32, 56, 0.12);
  --shadow-lg:     0 20px 60px rgba(14, 32, 56, 0.16);
  --shadow-accent: 0 6px 24px rgba(212, 167, 69, 0.20);

  /* ════════════════════════════════════
     ★  BRAND PALETTE  ★
     ════════════════════════════════════ */

  /* ── ROYAL METALLIC GOLD  (used for CTAs, hero badges, ribbon, primary accents) ─── */
  --brand-gold:       #D4A745;   /* ← signature royal gold extracted from emblem */
  --brand-gold-mid:   #E5BE65;   /* ← brighter radiant gold highlight            */
  --brand-gold-light: #F0D38D;   /* ← soft gold hover tint                       */
  --brand-gold-pale:  #FDF8EC;   /* ← barely-there warm gold tint                */
  --brand-gold-mist:  #FFFCF5;   /* ← whisper gold shimmer                       */
  --brand-gold-dark:  #9C7420;   /* ← deep antique bronze (dark accents)         */

  /* ── ROYAL MIDNIGHT NAVY  (used for headers, footers, dark sections & badges) ─── */
  --brand-navy:       #0E2038;   /* ← deep royal navy from the logo emblem       */
  --brand-navy-mid:   #183256;   /* ← mid-tone sapphire navy                     */
  --brand-navy-pale:  #EEF3F8;   /* ← faint cool ice-blue tint                   */
  --brand-navy-deep:  #091526;   /* ← deepest midnight base (footer/dark section)*/
  --brand-navy-dark:  #050C16;   /* ← near-black midnight tone                   */

  /* ── WARM IVORY / LIGHT PEARL FAMILY  (dominant — 70%+ of page) ── */
  --brand-beige:        #FAF8F4;   /* ← main page background, warm pearl ivory     */
  --brand-beige-light:  #FFFFFF;   /* ← pure white cards & panels                  */
  --brand-beige-mid:    #F2EDE4;   /* ← alternating section background             */
  --brand-beige-deep:   #E5DDD0;   /* ← deeper warm stone section bg               */
  --brand-beige-border: #D4CABC;   /* ← subtle metallic beige borders              */

  /* ────────────────────────────────────
     BACKGROUNDS  (ivory / warm pearl dominant)
     ──────────────────────────────────── */
  --color-bg:        #FFFFFF;          /* pure white — hero, cards            */
  --color-bg-off:    #FAF8F4;          /* warm pearl — alternating sections   */
  --color-bg-cream:  #F2EDE4;          /* deeper warm stone tint              */

  /* ────────────────────────────────────
     TEXT  (deep royal navy dark — crisp & elegant)
     ──────────────────────────────────── */
  --color-text-ink:   #0E2038;         /* deep midnight navy headings         */
  --color-text-body:  #24334A;         /* rich dark navy body text            */
  --color-text-muted: #5C6E87;         /* mid slate-blue muted                */
  --color-text-faint: #92A3BD;         /* faint slate for labels              */

  /* Text on dark backgrounds */
  --color-text-on-dark:       #FAF8F4;
  --color-text-on-dark-muted: rgba(250, 248, 244, 0.70);
  --color-text-on-dark-faint: rgba(250, 248, 244, 0.40);

  /* ────────────────────────────────────
     ACCENT COLORS
     ─────────────────────────────────────
     Midnight Navy = section labels, icons, underlines (regal structure)
     Royal Gold    = CTA buttons, ribbon, badges (punchy metallic highlight)
     ──────────────────────────────────── */
  --color-accent:         var(--brand-navy);        /* nav underline, section labels  */
  --color-accent-deep:    var(--brand-navy-deep);   /* hover darken                    */
  --color-accent-dark:    var(--brand-gold-dark);   /* gold on light bg (badges)       */

  /* Navy gradient — thin lines, underlines, left-border accents */
  --color-accent-gradient:      linear-gradient(135deg, #091526, #0E2038);
  --color-accent-gradient-soft: linear-gradient(135deg, #EEF3F8, #183256);
  --color-accent-gradient-rich: linear-gradient(135deg, #050C16, #091526, #0E2038);

  /* Gold gradient — CTA buttons, ribbon, hero accents */
  --color-green-gradient:       linear-gradient(135deg, #9C7420, #D4A745);
  --color-green-gradient-rich:  linear-gradient(160deg, #7A5712, #9C7420, #D4A745);

  /* Brand signature — royal gold to midnight navy */
  --color-brand-gradient:       linear-gradient(135deg, #D4A745, #0E2038);

  /* ────────────────────────────────────
     BORDERS  (warm beige with gold accents)
     ──────────────────────────────────── */
  --color-border-light:  rgba(14, 32, 56, 0.08);   /* default card borders  */
  --color-border:        rgba(14, 32, 56, 0.18);   /* stronger border       */
  --color-border-strong: rgba(14, 32, 56, 0.35);
  --color-border-accent: rgba(212, 167, 69, 0.40); /* rich gold border      */
  --color-border-cream:  rgba(14, 32, 56, 0.06);

  /* On dark sections */
  --color-border-on-dark: rgba(250, 248, 244, 0.15);

  /* ────────────────────────────────────
     HERO RADIAL GLOWS
     ──────────────────────────────────── */
  --color-hero-glow-1:  rgba(212, 167, 69, 0.08);  /* faint gold warmth     */
  --color-hero-glow-2:  rgba(14, 32, 56, 0.05);    /* faint navy depth      */
  --color-grid-line:    rgba(14, 32, 56, 0.04);    /* subtle slate grid     */

  /* ────────────────────────────────────
     BADGE / OFFER BOX
     ──────────────────────────────────── */
  --color-badge-bg:    #F2EDE4;        /* warm pearl badge background         */
  --color-badge-green: var(--brand-gold-pale);

  /* ────────────────────────────────────
     PULSE RING  (hero badge dot)
     ──────────────────────────────────── */
  --color-pulse-ring: rgba(212, 167, 69, 0.35);

  /* ────────────────────────────────────
     INK (dark) SURFACES
     ─────────────────────────────────────
     Ribbon  →  Royal Gold (#D4A745)
     Promise →  Royal Midnight Navy (#0E2038)
     CTA     →  Deep Antique Gold (#9C7420)
     Footer  →  Deepest Midnight Base (#091526)
     ──────────────────────────────────── */
  --color-ink:     #0E2038;            /* royal midnight navy — promise section */
  --color-on-ink:  #FAF8F4;            /* warm pearl white text on dark         */
  --color-ink-mid: #183256;            /* mid sapphire surface                  */

  /* ────────────────────────────────────
     INK SECTION GLOWS
     ──────────────────────────────────── */
  --color-ink-glow-1: rgba(212, 167, 69, 0.15);   /* faint gold radiance on dark */
  --color-ink-glow-2: rgba(14, 32, 56, 0.25);    /* deep navy shadow            */

  /* ────────────────────────────────────
     RIBBON  (royal gold)
     ──────────────────────────────────── */
  --color-ribbon-border: rgba(14, 32, 56, 0.15);
  --color-ribbon-text:   #0E2038;

  /* ────────────────────────────────────
     FOOTER  (deepest midnight)
     ──────────────────────────────────── */
  --color-footer-bg: #091526;          /* deep midnight navy — luxurious & calm */

}


/* ════════════════════════════════════════════════════════════
   SECTION OVERRIDES
   Navbar CTA button, Ribbon, and CTA section flip to Royal Gold (#D4A745).
   Promise & Footer take Deep Midnight Navy (#0E2038 / #091526).
   ════════════════════════════════════════════════════════════ */

/* Navbar CTA button → radiant royal gold with dark navy text */
.btn-nav-order {
  background: var(--brand-gold) !important;
  color: #0E2038 !important;
}
.btn-nav-order::before {
  background: linear-gradient(135deg, #9C7420, #D4A745) !important;
}

/* Ribbon → royal gold */
.ribbon {
  background: var(--brand-gold) !important;
  color: #0E2038 !important;
  border-top-color:    rgba(14, 32, 56, 0.15) !important;
  border-bottom-color: rgba(14, 32, 56, 0.15) !important;
}

/* CTA section → deep antique gold/bronze */
.cta-section {
  background: var(--brand-gold-dark) !important;
}

/* Promise section → royal midnight navy (--color-ink set above) */
/* Why, Menu, Testimonials, Hero → warm ivory pearl / cream ✓ */