:root {
  --bg: #0d1018;
  --bg-soft: #161b29;
  --card: rgba(18, 24, 37, 0.85);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f5f7ff;
  --muted: #b5bdd1;
  --accent: #f04f24;
  --accent-2: #f7b733;
  --ok: #22c55e;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 20%, rgba(240, 79, 36, 0.22), transparent 35%),
    radial-gradient(circle at 80% 10%, rgba(247, 183, 51, 0.18), transparent 30%),
    linear-gradient(160deg, rgba(13, 16, 24, 0.95), rgba(9, 11, 18, 0.97)),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat fixed;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 7, 14, 0.62);
  backdrop-filter: blur(1px);
  z-index: -1;
}

.topbar,
.hero {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: "Russo One", sans-serif;
  font-size: 1.1rem;
  background: linear-gradient(140deg, #f04f24, #f7b733);
  color: #111;
  box-shadow: 0 10px 24px rgba(240, 79, 36, 0.35);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Russo One", sans-serif;
  letter-spacing: 0.3px;
}

.logo-wrap p {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero {
  padding: 1.8rem 0 3rem;
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(1.2rem, 2.5vw, 2rem);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.badge {
  display: inline-flex;
  border: 1px solid rgba(247, 183, 51, 0.35);
  color: var(--accent-2);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
  font-size: 0.8rem;
}

.hero-card h2 {
  font-size: clamp(1.5rem, 3.3vw, 2.4rem);
  margin-bottom: 0.8rem;
}

.hero-card p {
  color: #e2e7f8;
  line-height: 1.65;
  max-width: 75ch;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.1rem;
}

.menu-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.menu-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.menu-card p,
.menu-card li {
  color: var(--muted);
}

.menu-card ul {
  margin: 0.7rem 0 0;
  padding-left: 1.1rem;
  line-height: 1.5;
}

.btn {
  border: 0;
  cursor: pointer;
  border-radius: 12px;
  padding: 0.74rem 1.1rem;
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform 0.22s ease, opacity 0.22s ease, box-shadow 0.22s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(140deg, var(--accent), var(--accent-2));
  color: #101010;
  box-shadow: 0 10px 22px rgba(240, 79, 36, 0.28);
}

.btn-outline {
  border: 1px solid rgba(247, 183, 51, 0.35);
  color: #f6e6c2;
  background: rgba(247, 183, 51, 0.05);
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  margin-top: 0.7rem;
}

.small {
  padding: 0.62rem 1rem;
  font-size: 0.88rem;
}

.toast {
  position: fixed;
  bottom: 1.1rem;
  left: 50%;
  transform: translateX(-50%) translateY(18px);
  min-width: min(720px, 92%);
  max-width: 92%;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(14, 21, 34, 0.95);
  color: #eaf0ff;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: rise 0.75s ease forwards;
}

.menu-card:nth-child(1) { animation-delay: 0.12s; }
.menu-card:nth-child(2) { animation-delay: 0.22s; }
.menu-card:nth-child(3) { animation-delay: 0.32s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  .logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 0.95rem;
  }

  .topbar,
  .hero {
    width: min(1100px, 94%);
  }

  .hero-card,
  .menu-card {
    border-radius: 14px;
  }

  .btn {
    width: 100%;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}
