@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Poppins', sans-serif;
}

.container{
    max-width: 1200px;
    margin: 0 auto;
}

.header{
    display: flex;
    align-items: center;
    min-height: 70vh;
    position: relative;
}

.menu{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}
.logo{
    font-size: 25px;
    color: #FF9000;
    text-transform: uppercase;
    font-weight: 800;
}

.menu .navbar ul li{
    position: relative;
    float: left;
}

.menu .navbar ul li a{
    font-size: 18px;
    padding: 20px;
    font-weight: 600;
    color: #1D1D1B;
    display: block;

}

.menu .navbar ul li a:hover{
    color: #c59a62;
}

#menu{
    display: none;
}

.menu-icono{
    width: 25px;
}

.menu label{
    cursor: pointer;
    display: none;
}

.submenu{
    position: absolute;
}

.submenu #carrito{
    display: none;
}

.submenu:hover #carrito{
    display: block;
    position: absolute;
    right: 0;
    backdrop-filter: blur(10px);
    top: 100%;
    z-index: 1;
    background-color: #77777797;
    padding: 20px;
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

table{
    width: 100%;
}

th, td{
    color: #FFFFFF;
}

.borrar{
    background-color: #FF9000;
    border-radius: 50%;
    padding: 5px 10px;
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 800;
    cursor: pointer;
}

.bg{
    position: absolute;
    width: 700px;
    top: 0;
    right: 0;
    z-index: -1;
}

.header-content{
    display: flex;
    align-items: center;
}


.header-txt{
    width: 50%;
    margin-right: 50px;
}

.header-txt h1{
    font-size: 55px;
    line-height: 65px;
    color: #1D1D1B;
    margin-bottom: 35px;
}

.header-txt p{
    font-size: 16px;
    color: #5E5E5E;
    margin-bottom: 45px;
}

.header-txt span{
    color: #FFAE00;
}

.btn-1{
    display: inline-block;
    background-color: #FF9000;
    padding: 13px 45px;
    border-radius: 25px;
    font-size: 16px;
    color: #FFFFFF;
    text-transform: capitalize;
    box-shadow: 0 0  20px rgba(0, 0, 0, 0.2);
}


.btn-1:hover{
    background-color: #ef8700;
}

.header-img{
    width: 50%;
    text-align: right;
}

.header-img img{
    width: 650px;
}

.breakfast{
    padding: 50px 0;

}

h2{
    font-size: 45px;
    line-height: 55px;
    color: #1D1D1B;
    margin-bottom: 15px;
}

p{
    font-size: 16px;
    color: #5E5E5E;
    margin-bottom: 45px;
}

.breakfast-content{
    display: flex;
    justify-content: space-between;

}

.breakfast-1{
    display: flex;
    align-items: center;
    background-color: #FF9000;
    padding: 10px;
    border-radius: 15px;
    width: 200px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

/* Aqui estan los trucos para el area de los platos*/

.breakfast-1 h3{
    padding-right: 20px;
    color: #FFFFFF;
    font-size: 600;
}

.breakfast-1 img{
    width: 50px;
    margin-right: 25px;
}

.info{
    padding: 100px 0;
    position: relative;
}

.bg-2{
    position: absolute;
    width: 300px;
    z-index: -1;
    top: 50px;
}

.info-content{
    display: flex;
    align-items: center;
}

.info-img{
    width: 50%;
    text-align: left;
}

.info-img img{
    width: 450px;
    margin-left: -50px;
}

.info-txt{
    width: 50%;
}

.products{
    padding: 0 0 50px 0;
    text-align: center;
}

.box-container{
    margin-top: 55px;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px, 1fr));
    gap: 20px;
}

.box{
    border-top: 2px solid #FF9000;
    padding: 20px;
    border-radius: 15px;
    z-index: 1000;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

.box:nth-child(1),
.box:nth-child(2),
.box:nth-child(3),
.box:nth-child(4){
    display: inline-block;
}



.box img{
    width: 120px;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.product-txt h3{
    font-size: 20px;
    color: #1D1D1B;
    margin-bottom: 10px;
}

.product-txt p{
    margin-bottom: 25px;
}

.precio{
    font-size: 15px;
    color: #FF9000;
}

.btn-2{
    background-color: #FF9000;
    margin-top: 50px;
    display: inline-block;
    border-radius: 25px;
    padding: 13px 35px;
    color: #FFFFFF;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.btn-2:hover{
    background-color: #ef8700;
}

.btn-3{
    display: inline-block;
    padding: 5px 25px;
    background-color: #FF9000;
    color: #FFFFFF;
    border-radius: 10px;
}

.btn-3:hover{
    background-color: #ef8700;
}


.app{
    align-items: center;
    display: flex;
    padding: 30px 0;
}

.app-txt{
    width: 50%;
}

.descarga{
    display: flex;
}

.descarga img{
    width: 150px;
}

.app-img{
    width: 50%;
    text-align: center;
}

.app-img img{
    width: 450px;
}

.footer{
    padding: 50px 0;
    background-color: #FF9000;

}

.footer-content{
    display: flex;
    justify-content: space-between;
}

.link h3{
    font-size: 18px;
    margin-bottom: 15px;
    color: #070707;
}

.link a{
    color: #FFFFFF;
    font-size: 16px;
    display: block;
    margin-bottom: 10px;
}


.creador{
    margin-bottom: 20px;
    text-align: center;
}

.creador a{
    text-decoration: none;
    color: #FFFFFF;
}


@media (max-width:991px){

    .menu{
        padding: 20px;
    }

    .menu label{
        display: initial;
    }

    .menu .navbar{
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #FF9000;
        display: none;
    }

    .menu .navbar ul li{
        width: 100%;
    }
    
    .menu .navbar ul li a:hover{
        color: #FFFFFF;
    }

    .logo{
        display: none;
    }

    /*Este comando hace que aparesca el menu */
    #menu:checked ~ .navbar{
        display: initial;
    }

    .submenu:hover #carrito{
        width: 100%;
    }


    .bg{
        display: none;
    }


    .header-content{
        padding: 100px 30px 30px 30px;
        flex-direction: column;
    }

    .header-txt{
        text-align: center;
        width: 100%;
        margin: 0 0 25px 0;
    }

    .header-txt h1{
        font-size: 45px;
        line-height: 55px;
        margin-bottom: 20px;
    }

    .header-txt p{
        margin-bottom: 20px;
    }

    .header-img{
        width: 100%;
        text-align: center;
    }
    
    .header-img img{
        width: 300px;
    }


    .breakfast{
        padding: 30px;
    }

    .breakfast-content{
        flex-direction: column;
        align-items: center;
    }
    
    .breakfast-1{
        justify-content: space-between;
        padding: 10px 55px;
        width: 100%;
        margin-bottom: 25px;
    }


    .info{
        padding: 30px;
    }

    .bg-2{
        display: none;
    }

    .info-content{
        flex-direction: column;
    }

    .info-img{
        width: 100%;
        text-align: center;
    }

    .info-img img{
        width: 250px;
        margin-left: 0;
    }


    .info-txt{
        width: 100%;
        text-align: center;
    }


    .products{
        padding: 30px;
    }

    .box-container{
        margin-top: 25px;
    }


    .app{
        flex-direction: column;
        padding: 30px;
    }

    .app-txt{
        width: 100%;
        text-align: center;
    }

    .descarga{
        flex-direction: column;
        align-items: center;
    }

    .app-img{
        width: 100%;
        text-align: center;
    }
    .app-img img{
        width: 300px;
    }

    .footer{
        padding: 30px;
    }

    .footer-content{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }





}