/* Stile Globale: Tema Scuro Ispirato al PDF */
body {
  background-color: #1a1a1a; /* Nero Ardesia */
  color: #ffffff; /* Testo Bianco */
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.menu-header {
  text-align: center;
  padding: 20px;
  font-family: 'Times New Roman', Times, serif; /* Sostituire con il font calligrafico */
  color: #9a0000;
}
.menu-header h1 { margin: 0; font-size: 3rem; }
.menu-header p { margin: 0; font-size: 1.5rem; }


/* Contenitore principale del menu */
.menu-container {
  max-width: 900px;
  margin: 20px auto;
  padding: 20px;
}

/* Titoli delle categorie (es. "Antipasti", "Pizze Speciali") */
.category-title {
  font-family: 'Times New Roman', Times, serif; /* Sostituire con il font calligrafico */
  font-size: 2.5rem;
  color: #9a0000; /* Rosso/Bordeaux scuro */
  border-bottom: 2px solid #9a0000;
  padding-bottom: 10px;
  margin-top: 40px;
}

/* La "Card" di ogni prodotto (come da Wireframe) */
.product-card {
  background-color: #2b2b2b; /* Sfondo card leggermente più chiaro */
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid #444;
}
.product-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.product-name {
  font-size: 1.4rem;
  font-weight: bold;
  color: #f4f4f4;
}
.product-price {
  font-size: 1.4rem;
  font-weight: bold;
  color: #ffffff;
  white-space: nowrap;
  margin-left: 20px;
}
.product-tag {
  background-color: #9a0000;
  color: white;
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: bold;
  margin-left: 10px;
}
.product-description {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.5;
  margin-bottom: 10px;
}
.product-notes {
  font-size: 0.9rem;
  color: #aaa;
  font-style: italic;
}