body{
    background-color: #FFFF00;
    margin: 0px;
    height: 100vh;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* BOTTON TO SCROLL 'TILL THE INIT OF THE PAGE */
#scrollToTopBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed position */
    bottom: 20px; 
    right: 30px;
    z-index: 9; 
    border: none;
    background: linear-gradient(to bottom, rgb(161, 0, 0), red);
    color: white;
    cursor: pointer;
    padding: 15px;
    font-weight: 600;
    border-radius: 10px;
    font-size: 14px; /* Increase font size */
}
#scrollToTopBtn:hover {
    background: linear-gradient(to bottom, rgb(161, 0, 0), rgb(209, 0, 0));
    color: rgb(189, 189, 189);
}



/* STYLES OF THE NAV */
nav{
    display: flex;
    position: relative;
    background: white;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.brand a img{
    margin: 10px;
    margin-left: 50px;
    width: 110px;
    height: 90px;
}
.menu{
    margin: auto;
    width: auto;
    font-family: 'Times New Roman', Times, serif;
    list-style: none;
    display: none;
    flex-direction: column;
    text-align: center;
}
.menu li a{
    color: black;
    font-weight: 600;
    font-size: 25px;
    margin: 7px;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
}
.menu li a:hover{
    border-radius: 7px;
    color: rgb(66, 66, 66);
    text-shadow: 0 0 10px rgb(247, 247, 212);
}
.menu li a:active {
    border-color: red;
}


.menu > li{float: left;}
.menu-icon {
    display: block;
    cursor: pointer;
    position: absolute;
    top: 40px;
    right: 10px;
    color: white;
    font-size: 30px;
}
@media (min-width: 1033px) {
    .brand a img{
        width: 120px;
        height: 100px;
    }
    .menu {
        display: flex;
        flex-direction: row;
    }
    .menu-icon {display: none}
}
/*  */



/* MAIN */
main{
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 130px;
}

.portada{
    width: 100%;
}
.portada img{
    width: 100%;
    height: auto;

}
.portada div{
    display: flex;
    background-color: #FFC000;
    font-size: 23px;
    letter-spacing: 1px;
    color: black;
    font-family:'Times New Roman', Times, serif;
    padding: 10px;
    margin-top: -5px;
    text-align: center;
    justify-content: end;
    flex-direction: column;
}
@media (min-width: 1033px) {
    main{
        padding: 60px 0;
    }
    .portada{
        display: flex;
        justify-content: center;
    }
    .portada img{
        width: 80%;
    }
    .portada div{
        font-size: 25px;
        letter-spacing: 2px;
    }
}


.contenedorInput{
    margin-bottom: -90px;
}
input{
    font-size: 20px;
    font-weight: 500;
    color: rgb(29, 29, 29);
    text-align: center;
}
.productos{
    display: flex;
    flex-direction: column;
    gap: 100px;
}
.productos li{
    width: 80%;
    padding-left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-self: center;
    gap: 10px
}
/* IMAGENES */
.normales{
    width: 50%;
    height: auto;
    box-shadow: 0 0 25px rgb(0, 0, 0);
    padding: 5px;
}
.especiales{
    width: 30%;
    height: auto;
    box-shadow: 0 0 25px rgb(0, 0, 0);
}
/**/
.productos a{
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: 600;
    text-decoration: none;
}
.productos p{
    text-align: center;
    font-size: 20px;
    letter-spacing: 4px;
    font-weight: 600;
    color: red;
}

@media (min-width: 1033px) {
    input{
        font-size: 35px;
        font-weight: 600;
        width: 800px;
    }
    .productos{
        gap: 100px;

    }
    .productos li{
        width: 800px;
    }
    .normales{
        width: 50%;
        height: auto;
        padding: 10px;
    }
    .especiales{
        width: 25%;
        height: auto;
        padding: 40px;
    }
    .productos a{
        font-size: 30px;
        letter-spacing: 2px;
    }
    .productos p{
        font-size: 30px;
        letter-spacing: 4px;
    }
}



.contenedorElse{text-align: center;}
.contenedorElse p{
    font-size: 30px;
    font-weight: 600;
    color: red;
}
.contenedorElse a{
    font-size: 25px;
    font-weight: 500;
    color: black;
    text-decoration: none;
}
.contenedorElse img{
    width: 90%;
    border: 1px solid black;
    margin-top: 15px;
}
#OpenClose{
    font-size: 28px;
    font-weight: 600;
}
#currentHour{
    margin-top: 18px;
}


#parahoy{
    text-align: center;
}
#parahoy button{
    font-size: 26px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 5px;
    color: white;
    padding: 10px 15px;
    animation: color-change 1.5s infinite alternate;
}
@keyframes color-change {
    0% {
        background-color: #0B8AFB;
    }
    100% {
        background-color: #978BF8;
    }
}

#recomendation{
    font-size: 25px;
    font-weight: 600;
    animation: texto-animation 3.7s forwards;
}
@keyframes texto-animation{
    0% {
        color: #978BF8;
    }
    25% {
        color: #0B8AFB;
    }
    50% {
        color: #978BF8;
    }   
    75% {
        color: #0B8AFB;
    }
    95% {
        color: yellow;
    }
    100% {
        color: black;
    }
}


.toggle-content {
    display: none;
    margin-top: 10px;
    padding: 10px;
    font-size: 20px;
}




/* FORMULARIO COMENTARIOS */
#Feedback{
    border: 2px solid black;
    padding: 10px 20px;
    text-align: center;
}
#Feedback p{
    font-size: 25px;
    font-weight: 600;
}
form{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: 25px
}
form label{
    font-size: 23px;
    color: black;
    font-weight: 600;
    margin-top: 20px;
}
input[type="text"], input[type="email"]{
    font-size: 22px;
    color: rgb(34, 34, 34);
}
input[type="submit"]{
    margin-top: 30px;
    border: none;
    background-color: transparent;
    width: min-content;
    font-size: 22px;
    color: black;
    font-weight: 600;
}
input[type="submit"]:hover{
    color: rgb(20, 20, 20);
    font-size: 24px;
    cursor: pointer;
}

textarea{text-align: center; width: 100%; font-size: 25px;}

