* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  background: #050816;
  color: #f9fafb;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
}

.center {
  text-align: center;
}

/* HERO */
.site-hero {
  position: relative;
  min-height: 60vh;
  background-image:
    radial-gradient(circle at top, rgba(129,140,248,0.35), transparent 55%),
    radial-gradient(circle at bottom, rgba(248,113,113,0.45), transparent 55%),
    url('https://images.unsplash.com/photo-1514933651103-005eec06c04b?q=80&w=1600');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5,8,22,0.7), rgba(5,8,22,0.95));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 16px;
  text-align: center;
}

.hero-logo img {
  width: 120px;
  height: 120px;
  border-radius: 32px;
  object-fit: cover;
  box-shadow: 0 16px 40px rgba(0,0,0,0.7);
}

.hero-text h1 {
  font-size: 32px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e5e7eb;
}
.hero-text p {
  margin-top: 4px;
  color: #cbd5f5;
}

.hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-hero {
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f97316, #ec4899);
  border: none;
  color: #0b1020;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}
.btn-ghost {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.7);
  background: transparent;
  color: #e5e7eb;
  font-size: 14px;
}

/* sections */
.section {
  padding: 30px 0 16px;
}

.section h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.section-contact p,
.section-about p {
  margin-bottom: 4px;
  color: #cbd5f5;
}
.section-about {
  background: radial-gradient(circle at top, rgba(129,140,248,0.15), transparent 60%);
}
.section-about .narrow {
  max-width: 640px;
}

/* menu */
.section-menu {
  background: #020617;
}
.section-menu h2 {
  margin-bottom: 10px;
}

.menu-category {
  margin-top: 18px;
  margin-bottom: 6px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: #a5b4fc;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px;
}

.menu-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: 16px;
  background: radial-gradient(circle at top left, rgba(15,23,42,0.95), rgba(15,23,42,0.9));
  border: 1px solid rgba(75,85,99,0.9);
  box-shadow: 0 14px 40px rgba(0,0,0,0.5);
}

.menu-card-promo {
  border-color: rgba(248,113,113,0.9);
  box-shadow: 0 0 0 1px rgba(248,113,113,0.4), 0 18px 50px rgba(0,0,0,0.7);
}

.menu-card-main h4 {
  font-size: 15px;
  margin-bottom: 2px;
}
.promo-line {
  display: flex;
  gap: 8px;
  align-items: center;
}
.badge {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 999px;
  background: #f97316;
  color: #111827;
  font-size: 11px;
}
.muted {
  color: #9ca3af;
}
.small {
  font-size: 12px;
}

.menu-card-price {
  font-weight: 600;
  color: #e5e7eb;
  white-space: nowrap;
}

/* footer */
.site-footer {
  padding: 16px 0;
  background: #020617;
  border-top: 1px solid #111827;
  font-size: 13px;
}
.site-footer .small {
  font-size: 11px;
  margin-top: 4px;
}

/* responsive */
@media (max-width: 640px) {
  .hero-text h1 {
    font-size: 24px;
    letter-spacing: 0.12em;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
}


/* Допълнително описание под името на артикула */
.menu-card-desc {
  margin-top: 4px;
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.3;
}
