body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #080000;
    color: #d1c8c8;
}

header {
    text-align: center;
    padding: 0px;
}

h1 {
    font-size: 36px;
    color: #eeede9; 
    margin-top: -35px;
}

h2, h3 {
    color: #d6bd83;
    margin-bottom: 10px;
    text-transform: uppercase;
    margin-top: 60px;
    margin-bottom: 30px;
}

section {
    margin: 20px auto;
    width: 90%;
    max-width: 800px;
    padding: 0px;
    background-color: #080000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

ul {
    list-style-type: none;
    padding: 0;
    width: 100%;
}

ul li {
    /*display: flex;
    justify-content: space-between;
    align-items: center;*/
    padding: 10px 0;
    font-size: 18px;
    align-items: flex-start; 
    color: #b8860b;
    /*border-bottom: 1px solid #b8860b;*/
}

ul li {
    margin-bottom: 0px;  /* Espacio entre los ítems */
   /* width: 100%;*/
}


ul li:last-child {
    border-bottom: none;
}

hr {
    border: none;
    height: 2px;
    background-color: #b8860b;
    margin: 20px 0;
}

.logo {
    display: block;
    margin: 0 auto;
    max-width: 256px; /* Ajusta el tamaño del logo */
    height: auto;
}

.menu-title {
    margin-top: 0px;
    display: flex;
    justify-content: center;  /* Centra el contenido horizontalmente */
    align-items: center;  /* Alinea las imágenes y el texto verticalmente */
    position: relative;  /* Para poder hacer ajustes de posición */

    margin-bottom: -30px;
}

.menu-title img.adorno {
    width: 50px;  /* Ajusta el tamaño de las imágenes a tu gusto */
    margin: 0 10px;  /* Espaciado entre la imagen y el texto */
    vertical-align: top;  /* Alinea la imagen hacia la parte superior */
    position: relative;  /* Permite ajustar la posición */
    top: -25px;  /* Ajusta este valor para mover la imagen más arriba o abajo */
}

.menu-title img.invertido {
    transform: scaleX(-1);  /* Invertir la imagen horizontalmente */
}

.menu-title span {
    font-size: 24px;
    font-weight: bold;
}

.item-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;  /* Alinea los elementos al fondo */
    font-size: 18px;
}

.spc-item-row {
    width: 10%;
    display: flex;
    justify-content:  center;
    align-items: flex-start;  
}

.spc-top{
    margin-top: -30px;
    /*list-style-type: disc;*/
}

.sub-item-row {
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;  /* Alinea los elementos al fondo */
    font-size: 16px;
    font-style: italic;
}

.description-container {
    display: flex;
    width: 100%;
    clear: both;
}

.item-description {
    font-size: 14px;
    color: #d6bd83;
    margin-top: 5px;  /* Espacio entre el nombre del platillo y la descripción */
    margin-left: 10px;  /* Alinear la descripción con el nombre */
    display: block;  /* Asegura que el párrafo ocupe una nueva línea */
    clear: both;      /*Limpia cualquier flotado o flexbox que afecte */
    width: 100%;     /* Asegura que ocupe todo el ancho debajo del item-row */
}



.item-name {
    max-width: 80%;
    white-space: normal;
    word-wrap: break-word; 
    color: #b8860b;
}

.item-price {
    white-space: nowrap;
    font-weight: bold;
    color: #d6bd83;
}

.dots {
    flex-grow: 1;
    border-bottom: 2px dotted whitesmoke;  /* Línea punteada dorada */
    margin: 0 10px;
    margin-bottom: -8px;
    align-self: center;
    border-spacing: 10px;  /* Ajusta la separación entre las bolitas */
    height: 0; /* Hace que solo se vea la línea y no un borde adicional */
}
