/* antonio-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Antonio';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/antonio-v19-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-400 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/poppins-v23-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/poppins-v23-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

* {
  font-family: 'Poppins';
  line-height: normal;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100vw;
}

main{
  width: 100%;
  overflow: hidden;
}

p {
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
  color: #666;
  font-weight: normal;
}


/* Titolo della pagina */
header {
  background-image: url(img/header.webp);
  background-position: center;
  background-size: cover;
  text-align: center;
  min-height: 300px;
}

header img {
  transform: translateY(50px);
  width: 80%;
  max-width: 300px;
}

header a{
  text-decoration: none;
  color: #333;
  font-weight: 600;
}


/* Sezioni del menu */
.menu-alert{
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  margin-bottom: 20px;
}

.menu-alert p{
  padding: 20px;
  text-align: center;
}

.menu-section {
  padding: 2rem 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.menu-section h2 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-family: 'Antonio';
  text-transform: uppercase;
  color: #a38b78;
}


/* Voce del menu */
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 0.5rem;
  flex-direction: column;
}

.menu-item h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}


/* Informazioni voci menu prezzo e icone */
.menu-info {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  align-items: center;
  font-size: .9rem;
}

.menu-price {
  margin-left: 1rem;
  white-space: nowrap;
  font-size: 1rem;
  margin-left: 15px;
}


/* Icone */
.menu-icons {
  display: flex;
  gap: 0.5rem;
}

.menu-icons img {
  width: 27px;
  height: 27px;
}


/* Sezione info */
.menu-section--legend ul{
  padding-left: 0;
}

.menu-section--legend li {
    list-style: none;
    display: flex;
    margin-bottom: 10px;
}

.menu-section--legend li:last-of-type {
    margin-bottom: 0px;
}

.menu-section--legend li img{
  margin-right: 10px;
}




@media (max-width: 500px) {
  
  .menu-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-info{
    margin-top: 10px;
  }

}

