@font-face {
  font-family: 'Amarillo'; 
  src: url('/fonts/Amarillo.otf') format('opentype'),
       url('/fonts/Amarillo.ttf') format('truetype');
       font-weight: normal; 
  font-style: normal;  
}

body {
  display: grid;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: rgb(73, 19, 19);
}

/*contentedor*/
.main-content-wrapper { 
  background: linear-gradient(to bottom, #fbf4eb  0%, #e1c7a6  100%), url("/img/carta/pastas.avif");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed; 
  background-position: center;
  max-width:600px;             
  width: 90%;               
  margin: 0 auto;
  padding: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); 
}

.menu-container {
  max-width: 800px; 
  margin: 0 auto; 
  padding: 20px;
  border-radius: 8px; 
}

/*Categorías*/
.menu-category {
  margin-bottom: 40px; 
}

.category-title {
  position: relative; 
  padding-right: 15px; 
  text-align: center;
  font-family:'Amarillo', sans-serif; 
  color: #15955c;
  font-feature-settings: "swsh" 0, "salt" 0, "ss01" 0, "ss02" 0, "ss03" 0, "ss04" 0, "calt" 0;
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: lighter;
}

.category-title1 {
  position: relative; 
  padding-right: 15px; 
  text-align: center;
  font-family:'Amarillo', sans-serif; 
  color: #15955c;
  font-feature-settings: "swsh" 0, "salt" 0, "ss01" 0, "ss02" 0, "ss03" 0, "ss04" 0, "calt" 0;
  font-size: 20px;
  font-weight: lighter;
  margin-bottom: 15px;
}

.category-image {
  display: block; 
  height: auto;
  vertical-align: middle; 
  margin-left: 10px; 
  margin: 0 auto 15px auto; 
}
.footer-image {
  display: block; 
  height: auto;
  vertical-align: middle; 
  margin-left: 10px; 
  margin: 0 auto 15px auto; 
}

/*Platos*/
.dish-list {
  list-style: none; 
  padding: 0;
  margin-top: 20px;
}

.dish-item {
  position: relative;
  margin-bottom: 25px;
  padding-left: 20px; 
}

.dish-item::before {
  content: '•';
  color: #15955c; 
  position: absolute;
  left: 5px; 
  top: 0; 
  font-size: 1.2em; 
  line-height: 1.1; 
}

.dish-name {
  color: #716a65;
  font-size: 14px;
  display: inline-block; 
  margin-right: 10px; 
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

.dish-name1 {
  font-weight: 700; 
  color: #3a925b;
  font-size: 1.1em;
  display: inline-block; 
  margin-right: 10px;
  font-family: "Montserrat", sans-serif;
}

.dish-price {
  font-weight: 700;
  color: #716a65; 
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
}

.dish-description {
  font-size: 0.95em;
  color: #716a65;
  margin-top: 5px; 
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
}

/*Sushi*/
.sushi-line {
  list-style: none; 
  padding: 0;
  margin-top: 20px
}



.sushi-line li {
  color: #716a65;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95em;
}

.gluten {
  color: #15955c; 
}
/*Sugerencias e información del final de la carta*/
.suggestions {
  border: 1px solid #15955c;
  color: #15955c;
  padding: 10px; 
  border-radius: 10px;
  margin: 30px auto; 
  text-align: center;
  max-width: 80%; 
  font-family:'Amarillo', sans-serif; 
  font-feature-settings: "swsh" 0, "salt" 0, "ss01" 0, "ss02" 0, "ss03" 0, "ss04" 0, "calt" 0;
  line-height: 2;
  font-size: 10px;
}
  
.closeness {
  color: #15955c;
  margin-top: 30px;
  font-family:'Amarillo', sans-serif; 
  font-feature-settings: "swsh" 0, "salt" 0, "ss01" 0, "ss02" 0, "ss03" 0, "ss04" 0, "calt" 0;
  line-height:1.6;
  font-size: 11px;
}

.fire {
  color: #666;
  margin-top: 30px;
  font-family:'Amarillo', sans-serif; 
  font-size: 12px;
  line-height: 2;
  font-feature-settings: "swsh" 0, "salt" 0, "ss01" 0, "ss02" 0, "ss03" 0, "ss04" 0, "calt" 0;
}

.bread {
  margin-top: 30px;
  text-align: center;
  color: #666;
  font-weight: bold;
  font-size: 12px;
}

.footer {
  color: #666;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
}

/*media queries*/

@media (min-width: 625px) {
  .menu-category {
    display: grid;
    grid-template-rows: auto 1fr; 
    grid-template-columns: 1fr minmax(150px, 250px);
    align-items: start;
    gap: 20px;
    margin-bottom: 40px;
  }
  .category-title,
  .category-title1 {
    grid-column: 1 / -1; 
    grid-row: 1 / 2; 
    text-align: left;
    margin-bottom: 15px;
    padding-right: 0;
    display: block;
  }
  .category-image {
    grid-column: 2 / 3; 
    grid-row: 2 / 3; 
    justify-self: end; 
    align-self: start; 
    margin: 0;
    max-width: 100%;
    height: auto;
    order: unset;
  }
  .dish-list {
    grid-column: 1 / 2; 
    grid-row: 2 / 3; 
    margin-top: 0;
  }
}