:root{
  --z-bg: #0b0f14;
  --z-card: rgba(255,255,255,.06);
  --z-border: rgba(255,255,255,.10);
  --z-text75: rgba(255,255,255,.75);
}

*{ font-family: "Cairo", system-ui, -apple-system, "Segoe UI", Arial, sans-serif; }

.fw-extrabold{ font-weight: 800; }
.text-white-75{ color: var(--z-text75); }

.brand-dot{
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #ffc107;
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(255,193,7,.15);
}

.hero-section{
  position: relative;
  min-height: 78vh;
  background: radial-gradient(1200px 600px at 80% 0%, rgba(255,193,7,.20), transparent 60%),
              linear-gradient(180deg, #0b0f14 0%, #070a0e 100%);
  padding: 72px 0 56px;
  overflow: hidden;
}

.hero-overlay{
  position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255,193,7,.08), transparent),
    radial-gradient(700px 400px at 20% 30%, rgba(255,255,255,.05), transparent 55%);
  pointer-events: none;
}

.promo-card{
  background: var(--z-card);
  border: 1px solid var(--z-border);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  color: white;
}

.price-chip{
  background: rgba(0,0,0,.25);
  border: 1px solid var(--z-border);
  border-radius: 14px;
  padding: 12px 14px;
  color: white;
}

.info-tile{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(0,0,0,.03);
  border: 1px solid rgba(0,0,0,.06);
}

.about-card{
  border-radius: 16px;
  border: 1px dashed rgba(0,0,0,.15);
  background: rgba(255,193,7,.12);
}

.search-box{ min-width: 280px; }

.menu-pill{
  border: 1px solid rgba(0,0,0,.10);
  background: white;
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
  user-select: none;
  transition: .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.menu-pill.active{
  background: #ffc107;
  border-color: rgba(0,0,0,.12);
  font-weight: 700;
}

.menu-card{
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.08);
  background: white;
  overflow: hidden;
  height: 100%;
}

.menu-card .card-head{
  padding: 14px 14px 10px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  background: linear-gradient(90deg, rgba(255,193,7,.22), transparent 55%);
}

.menu-card .card-body{
  padding: 12px 14px 14px;
}

.menu-table{
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
}

.menu-table th, .menu-table td{
  padding: 10px 8px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  vertical-align: middle;
}

.menu-table th{
  color: rgba(0,0,0,.65);
  font-weight: 700;
}

.price-badge{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,193,7,.18);
  font-weight: 800;
  white-space: nowrap;
}

.contact-card{
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.08);
  background: white;
}

.map-placeholder{
  border-radius: 16px;
  border: 1px dashed rgba(0,0,0,.18);
  background: rgba(0,0,0,.03);
}

/* Dark mode (toggle adds .dark to body) */
body.dark{
  background: #0b0f14;
  color: rgba(255,255,255,.90);
}

body.dark .bg-body-tertiary{ background: #0f141b !important; }
body.dark .menu-pill{ background: rgba(255,255,255,.06); color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.12); }
body.dark .menu-pill.active{ background: #ffc107; color: #111; }
body.dark .menu-card,
body.dark .contact-card{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
}
body.dark .menu-card .card-head{ border-color: rgba(255,255,255,.10); }
body.dark .menu-table th, body.dark .menu-table td{ border-color: rgba(255,255,255,.10); }
body.dark .price-badge{ border-color: rgba(255,255,255,.14); background: rgba(255,193,7,.18); }
body.dark .text-body-secondary{ color: rgba(255,255,255,.65) !important; }
