/* ==========================
   ESTILOS GENERALES
========================== */
body {
  font-family: Arial, sans-serif;
  background-color: #faf6f2;
  margin: 0;
  padding: 0;
  color: #333;
}

/* ==========================
   CONTENEDOR PRINCIPAL
========================== */
.menu-container {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 1rem;
}

/* ==========================
   TITULOS
========================== */
h2 {
  text-align: center;
  color: #a83232;
  text-transform: lowercase;
  margin-top: 1rem;
  margin-bottom: 2rem;
  font-size: 2rem;
}

/* ==========================
   TARJETAS DE PLATILLOS
========================== */
.menu-item {
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Imagen del platillo */
.menu-item img {
  width: 180px;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  margin-right: 1.5rem;
}

/* Texto dentro de cada tarjeta */
.menu-item div {
  flex: 1;
}

/* Nombre del platillo */
.menu-item h3 {
  margin: 0;
  color: #a83232;
  font-size: 1.5rem;
  text-transform: capitalize;
}

/* Descripción */
.menu-item p {
  margin: 0.5rem 0;
  font-size: 1rem;
  line-height: 1.4;
}

/* Precio */
.menu-item span {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: bold;
  color: #a83232;
  font-size: 1.1rem;
}

/* ==========================
   RESPONSIVE
========================== */
@media (max-width: 700px) {
  .menu-item {
    flex-direction: column;
    text-align: center;
  }

  .menu-item img {
    margin-right: 0;
    margin-bottom: 1rem;
    width: 90%;
    height: auto;
  }
}
