:root {
  --rosso: #d62828;
  --rosso-scuro: #b91c1c;
  --giallo: #fcbf49;
  --nero: #111;
  --grigio-card: #222;
  --grigio-card-hover: #272727;
  --grigio-testo: #bbb;
  --bianco: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

p {
  line-height: 1.7;
}

a {
  transition: 0.2s ease;
}

a:hover {
  opacity: 0.88;
}

.subtitle {
  margin: 8px 0 14px;
  color: #ffe8e8;
  font-size: 15px;
}

.menu-note {
  margin-top: 40px;
  padding: 22px;
  background: #1f1f1f;
  border-left: 4px solid var(--rosso);
  border-radius: 14px;
  color: var(--grigio-testo);
  line-height: 1.7;
}

.item {
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.item:hover {
  transform: translateY(-2px);
  background: var(--grigio-card-hover);
  border-color: rgba(252, 191, 73, 0.18);
}

.price {
  white-space: nowrap;
  text-align: right;
}

.img-placeholder {
  background: linear-gradient(135deg, #3a3a3a, #1f1f1f);
  position: relative;
  overflow: hidden;
}

.img-placeholder::after {
  content: "🍕";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  opacity: 0.75;
}

@media (max-width: 600px) {
  header {
    padding: 18px 12px;
  }

  nav {
    margin-top: 10px;
  }

  nav a {
    display: inline-block;
    margin: 6px 8px;
  }

  .container {
    padding: 16px;
  }

  .item {
    align-items: flex-start;
    gap: 12px;
  }

  .name {
    font-size: 16px;
  }

  .desc {
    font-size: 13px;
  }

  .price {
    font-size: 16px;
  }

  .img-placeholder {
    width: 52px;
    height: 52px;
  }
}
