/* ==========================================================================
   LACE RESTAURANT — STOREFRONT STYLES
   ========================================================================== */

body { background-color: var(--paper); }

/* ---- Top info bar --------------------------------------------------- */
.promo-banner {
  background: var(--ink);
  color: #E8E2D6;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 9px 0;
}
.promo-banner strong { color: #fff; }

/* ---- Nav -------------------------------------------------------------- */
.navbar-custom {
  background-color: var(--surface);
  box-shadow: 0 1px 0 var(--line);
  padding: 14px 0;
}

.navbar-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
}

.brand-accent-red { color: var(--brand-red); }
.brand-accent-blue { color: var(--brand-blue); }
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--brand-gold);
  margin-right: 10px;
  font-size: 1.05rem;
}

.nav-link-custom {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 16px !important;
  transition: all 0.2s ease;
  border-radius: 8px;
}
.nav-link-custom:hover { color: var(--brand-blue); background-color: var(--brand-blue-soft); }
.nav-link-custom.active { color: var(--brand-blue); font-weight: 700; }

.cart-btn-premium {
  background-color: var(--brand-red);
  color: white !important;
  font-weight: 600;
  border-radius: 50px;
  padding: 8px 20px !important;
  box-shadow: 0 8px 20px rgba(227, 27, 35, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cart-btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(227, 27, 35, 0.35);
  color: white;
}

/* ---- Hero -------------------------------------------------------------- */
.hero-band {
  position: relative;
  background: radial-gradient(circle at 15% 20%, rgba(244, 182, 13, 0.16), transparent 45%),
              linear-gradient(120deg, var(--ink) 0%, #1c2130 60%, var(--brand-blue-deep) 130%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  overflow: hidden;
}
.hero-band .eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--brand-gold);
}
.hero-band h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.15;
}
.hero-band p { color: #C9CDD8; max-width: 46ch; }

/* ---- Category pills ------------------------------------------------------ */
.category-pill {
  background-color: var(--surface);
  color: var(--ink-soft);
  border: 1px solid var(--line);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}
.category-pill:hover, .category-pill.active {
  background-color: var(--brand-blue);
  color: #fff !important;
  border-color: var(--brand-blue);
  box-shadow: 0 8px 20px rgba(18, 56, 200, 0.3);
}

/* ---- Dish / category cards ------------------------------------------------ */
.dish-card-premium {
  border: none;
  border-radius: var(--radius-lg);
  background-color: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dish-card-premium:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.restaurant-card .card-title,
.dish-card-premium .card-title {
  font-family: var(--font-display);
}

/* ---- Empty states --------------------------------------------------------- */
.empty-state {
  text-align: center;
  padding: 4rem 1.5rem;
  color: var(--muted);
}
.empty-state i { color: var(--line); }

/* ---- Footer ---------------------------------------------------------------- */
.footer-premium {
  background-color: var(--ink);
  color: #A7ADBB;
  font-size: 0.9rem;
}
.footer-premium h6 {
  font-family: var(--font-display);
  color: #fff;
  font-weight: 600;
}
.footer-premium a { color: #A7ADBB; }
.footer-premium a:hover { color: var(--brand-gold); }
.footer-premium .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #7D8394;
  font-size: 0.82rem;
}
