@font-face{
    font-family: "RobotoVF";
    src: url("assets/fonts/Roboto-VariableFont_wdth,wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
}

*{
    box-sizing: border-box;
    font-family: "RobotoVF", sans-serif;
    font-weight: 300;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

*::selection{
    background: #4fffad;
    color: white;
}

.app{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    overflow-y: auto;
}

.green-box{
    width: 100%;
    background: #1AC073;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.nav-bar{
    width: 100%;
    height: auto;
    display: flex;
    padding: 10px 100px;
}

.nav-logo{
    margin: 0px 50px 0px 0px;
    min-width: 90px;
    width: 90px;
    min-height: 50px;
    height: 50px;
    background: url("assets/logo.svg") center no-repeat;
    background-size: contain;
}

.nav-links{
    margin: 0px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.nav-link{
    font-size: 16px;
    color: #fff;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    transition: font-weight 0.2s, text-shadow 0.2s;
}

.nav-link:hover{
    cursor: pointer;
    font-weight: 500;
    text-shadow: 2px 4px 32px rgba(0, 0, 0, 0.3), 0 0 5px rgba(0, 0, 0, 0.3);
}

.nav-icons{
    margin: 0px 0px 0px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.nav-icon{
    min-width: 40px;
    width: 40px;
    min-height: 40px;
    height: 40px;
    background-size: contain;
    transition: transform 0.2s;
}

.nav-icon:hover{
    transform: scale(1.2);
}

.nav-icon:active{
    transform: scale(0.9);
}

.nav-search{
    background: url("assets/search.svg") center no-repeat;
}

.nav-shop{
    position: relative;
    background: url("assets/shop.svg") center no-repeat;
}

.nav-facebook{
    background: url("assets/facebook.svg") center no-repeat;
}

.nav-instagram{
    background: url("assets/instagram.svg") center no-repeat;
}

.nav-icon:hover{
    cursor: pointer;
}

.nav-shop-dot{
    position: absolute;
    top: 5px;
    right: 5px;
    min-width: 10px;
    width: 10px;
    min-height: 10px;
    height: 10px;
    background: url("assets/dot.svg") center no-repeat;
    background-size: contain;
}

.header-box{
    margin: 100px 0px 50px 0px;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-box-1{
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.mini-box-container{
    width: 70%;
    height: 500px;
    display: flex;
    flex-direction: column;
}

.header-title{
    margin: 10px 0px;
    font-weight: 400;
    font-size: 70px;
    color: #fff;
}

.header-text{
    margin: 10px 0px;
    font-size: 20px;
    color: #fff;
}

.header-search-box{
    margin: 30px 0px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    width: 450px;
    height: 60px;
}

.search-input-box{
    width: 70%;
    height: 100%;
    border-radius: 10px 0px 0px 10px;
    background: #FFF;
}

.search-input{
    padding: 20px;
    font-size: 16px;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    border: none;
    outline: none;
    transition: outline 0.1s;
}

.search-input:focus{
    outline: 3px solid #F3BA00;
}

.search-button{
    width: 30%;
    height: 100%;
    border-radius: 0px 10px 10px 0px;
    background: #F3BA00;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    transition: transform 0.2s, filter 0.2s;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.search-button:hover{
    transform: scale(1.1);
}

.search-button:active{
    transform: scale(1);
    filter: brightness(1.2);
}

.search-button:hover{
    cursor: pointer;
}

.mini-box-2{
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cooking-image{
    min-width: 500px;
    width: 500px;
    min-height: 500px;
    height: 500px;
    background: url("assets/cooking.svg") center no-repeat;
    background-size: contain;
}

.items-section{
    padding: 60px 60px 20px 60px;
    width: 100%;
    background: #F7F8FA;
}

.items-title{
    margin: 0;
    font-weight: 800;
    font-size: 32px;
}

.items{
    margin: 50px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.item{
    width: 300px;
    background: #fff;
    border-radius: 15px;
    border: 1px solid #E0E0E0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.item:hover{
    cursor: pointer;
    transform: scale(1.05);
    box-shadow: 2px 4px 32px 0px rgba(0, 0, 0, 0.2);
}

.item-image{
    width: 100%;
    height: 300px;
    background: center no-repeat;
    background-size: cover;
    border-radius: 15px 15px 0px 0px;
    position: relative;
}

.item-pizza1{
    background-image: url("assets/pizza1.svg");
}

.item-pizza2{
    background-image: url("assets/pizza2.svg");
}

.item-pizza3{
    background-image: url("assets/pizza3.svg");
}

.item-pizza4{
    background-image: url("assets/pizza4.svg");
}

.item-pizza5{
    background-image: url("assets/pizza5.svg");
}

.item-pizza6{
    background-image: url("assets/pizza6.svg");
}

.item-pizza7{
    background-image: url("assets/pizza7.svg");
}

.item-pizza8{
    background-image: url("assets/pizza8.svg");
}

.item-chicken1{
    background-image: url("assets/chicken1.svg");
}

.item-chicken2{
    background-image: url("assets/chicken2.svg");
}

.item-discount{
    position: absolute;
    top: 5px;
    left: 5px;
    padding: 5px;
    background: #F3BA00;
    border-radius: 10px;
    border: 2px solid #F7F8FA;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
}

.discount-hidden{
    display: none;
}

.item-info{
    width: 100%;
    height: 30%;
    border-radius: 0px 0px 15px 15px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.item-info-1{
    padding: 0px 20px;
    width: 100%;
    display: flex;
    align-items: center;
}

.item-title{
    font-weight: 500;
    font-size: 18px;
}

.item-price{
    margin: 0px 0px 0px auto;
    font-weight: 500;
    font-size: 18px;
}

.item-info-2{
    margin: 0px 0px 20px 0px;
    padding: 0px 20px;
    width: 100%;
    display: flex;
    align-items: center;
}

.item-rating{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F7F8FA;
    border-radius: 10px;
    border: 1px solid #E0E0E0;
    padding: 5px 10px;
    gap: 2px;
}

.item-rating-icon{
    width: 20px;
    height: 20px;
    background: url("assets/star.svg") center no-repeat;
    background-size: cover;
    border-radius: 15px 15px 0px 0px;
}

.item-rating-text{
    margin: 0;
    font-weight: 400;
}

.item-time-box{
    margin: 0px 10px;
    width: 100px;
    border-radius: 10px;
    background: #BEBEBE;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-time{
    padding: 5px 5px;
    width: 90%;
    height: 100%;
    font-weight: 400;
    border-radius: 10px;
    background: #F7F8FA;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-add-icon{
    margin: 0px 0px 0px auto;
    width: 35px;
    height: 35px;
    background: url("assets/add.svg") center no-repeat;
    background-size: contain;
    transition: transform 0.1s;
}

.item-add-icon:hover{
    transform: scale(1.1);
}

.item-add-icon:active{
    transform: scale(0.9);
}

.item-add-icon:hover{
    cursor: pointer;
}

.popular-items{
    padding: 0px 0px 40px 0px;
    width: 100%;
    background: #F7F8FA;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.popular-items-title{
    margin: 0;
    font-weight: 800;
    font-size: 32px;
}

.popular-items-slider{
    width: 100%;
    margin: 10px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-icon{
    border-radius: 50%;
    width: 70px;
    height: 70px;
    background: url("assets/arrow.svg") center no-repeat;
    background-size: cover;
    transition: transform 0.2s, background-image 0.2s, box-shadow 0.2s;
}

.arrow-icon:hover{
    background-image: url("assets/arrow-hover.svg");
    box-shadow: -2px 6px 8px 0px rgba(0, 0, 0, 0.3);
}

.arrow-back:hover{
    cursor: pointer;
    transform: scale(1.2);
}

.arrow-back:active{
    transform: scale(0.9);
}

.arrow-forward{
    transform: scaleX(-1);
}

.arrow-forward:hover{
    cursor: pointer;
    transform: scaleX(-1) scale(1.2);
}

.arrow-forward:active{
    transform: scaleX(-1) scale(0.9);
}

.slider{
    max-width: 70%;
    width: 70%;
    margin: 0px 50px;
    padding: 0px 0px 30px 0px;
}

.splide__track{
    padding: 40px 0px;
}

.item-hidden{
    visibility: hidden;
}

.popular-item{
    min-width: 300px;
    width: 300px;
    margin: 0px 30px;
    background: #fff;
    border-radius: 15px;
    border: 1px solid #E0E0E0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.popular-item:hover{
    cursor: pointer;
    transform: scale(1.05);
    box-shadow: 2px 4px 32px 0px rgba(0, 0, 0, 0.2);
}

.popular-items-button{
    margin: 30px 0px 0px 0px;
    padding: 20px 50px;
    background: #1AC073;
    color: #fff;
    border-radius: 15px;
    font-size: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    transition: transform 0.2s;
}

.popular-items-button:hover{
    cursor: pointer;
    transform: scale(1.1);
}

.popular-items-button:active{
    transform: scale(0.9);
}

.video-section{
    padding: 60px 0px 0px 0px;
    width: 100%;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.video-title{
    letter-spacing: 2px;
    margin: 5px 0px;
    font-size: 40px;
    font-weight: 500;
    text-shadow: 2px 4px 4px rgba(0, 0, 0, 0.3), 0 0 5px rgba(0, 0, 0, 0.3);
}

.video-title-2{
    margin: 0px 0px 20px 0px;
}

.video-text{
    letter-spacing: 2px;
    margin: 2px 0px;
    font-size: 20px;
    font-weight: 300;
}

.video-box{
    width: 100%;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.video-box-1{
    width: 100%;
    height: 50%;
    background: #FFF;
}

.video-box-2{
    width: 100%;
    height: 50%;
    background: #C7EACC;
}

.video{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    max-width: 90%;
    aspect-ratio: 16 / 9;
}

.video:hover{
    cursor: pointer;
}

.video-play-button{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    margin: 0px 0px 0px auto;
    width: 120px;
    height: 120px;
    background: url("assets/play.svg") center no-repeat;
    background-size: contain;
    transition: opacity 0.3s, transform 0.3s;
}

.video-play-button:hover{
    cursor: pointer;
}

.video-play-button-hidden{
    opacity: 0;
    transform: translate(-50%, -50%) scale(2);
}

.form-section{
    padding: 100px 0px 50px 0px;
    width: 100%;
    background: #F7F8FA;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.form-box-1{
    padding: 0px 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    flex: 0 0 20%;
}

.form-box-2{
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 20%;
}

.form-image{
    min-width: 450px;
    width: 450px;
    min-height: 450px;
    height: 450px;
    background: url("assets/delivery.svg") center no-repeat;
    background-size: contain;
}

.form-title{
    margin: 0;
    font-size: 30px;
    font-weight: 400;
}

.form-text{
    margin: 15px 0px;
    font-size: 20px;
    font-weight: 300;
}

.form-part{
    margin: 10px 0px 0px 0px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.form-name-box{
    width: 400px;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    flex: 1 0 20%;
}

.form-name-input{
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    padding: 20px;
    background: #FFF;
    border-radius: inherit;
    font-size: 16px;
    transition: outline 0.1s;
}

.form-email-box{
    width: 400px;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    flex: 1 0 20%;
}

.form-email-input{
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    padding: 20px;
    background: #FFF;
    border-radius: inherit;
    font-size: 16px;
    transition: outline 0.1s;
}

.form-message-box{
    width: 800px;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    flex: 1 1 100%;
}

.form-message-input{
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    padding: 20px;
    background: #FFF;
    border-radius: inherit;
    font-size: 16px;
    resize: none;
    transition: outline 0.1s;
}

.form-name-input:focus, .form-email-input:focus, .form-message-input:focus{
    outline: 3px solid #4fffad;
}

.form-submit-button{
    padding: 20px 80px;
    background: #1AC073;
    color: #fff;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    transition: transform 0.2s;
}

.form-submit-button:hover{
    cursor: pointer;
    transform: scale(1.1);
}

.form-submit-button:active{
    transform: scale(0.9);
}

.footer{
    width: 100%;
    background: #1AC073;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.divider{
    margin: 0px 0px 40px 0px;
    width: 90%;
    height: 1px;
    background: #FFF;
}

.splide__pagination{
    z-index: 97;
}

.modal-box{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    z-index: 98;
}

.modal{
    width: 90%;
    max-width: 600px;
    height: auto;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 30px;
    border-radius: 20px;
    z-index: 99;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.3s, transform 0.3s;
}

.modal-hidden{
    opacity: 0;
    transform: scale(0);
}

.modal-title{
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 2px;
}

.modal-dish-box{
    margin: 20px 0px 10px 0px;
    width: 100%;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    flex: 1 1 100%;
}

.modal-dish-input{
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    padding: 20px;
    background: #FFF;
    border-radius: inherit;
    font-size: 16px;
    transition: outline 0.1s;
}

.modal-details-box{
    margin: 0px 0px 20px 0px;
    width: 100%;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    flex: 1 1 100%;
}

.modal-details-input{
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    padding: 20px;
    background: #FFF;
    border-radius: inherit;
    font-size: 16px;
    resize: none;
    transition: outline 0.1s;
}

.modal-dish-input:focus, .modal-details-input:focus{
    outline: 3px solid #4fffad;
}

.modal-buttons{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.modal-button{
    max-width: 100%;
    padding: 20px 40px;
    background: #1AC073;
    color: #fff;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    transition: transform 0.2s;
}

.modal-button:hover{
    cursor: pointer;
    transform: scale(1.05);
}

.modal-button:active{
    transform: scale(0.9);
}

.modal-button-cancel{
    background: #F3BA00;
}

.notification{
    padding: 20px 30px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 90%;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    background-color: #F3BA00;
    border-radius: 20px;
    box-shadow: 2px 4px 32px 0px rgba(0, 0, 0, 0.2);
    z-index: 99;
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.notification:hover{
    cursor: pointer;
}

.notification-hidden{
    opacity: 0;
    transform: translateX(100%);
}

@media (max-width: 1024px){
    .nav-bar{
        padding: 10px 40px;
        flex-wrap: wrap;
    }

    .nav-icons{
        margin: 10px 0 0 0;
        width: 100%;
        justify-content: center;
    }

    .header-box{
        flex-direction: column;
        text-align: center;
        margin: 50px 0px;
    }

    .mini-box-1,
    .mini-box-2{
        width: 100%;
    }

    .mini-box-container{
        width: 90%;
        height: auto;
    }

    .header-title{
        font-size: 50px;
    }

    .header-search-box{
        width: 100%;
        flex-direction: column;
        height: auto;
    }

    .search-input-box,
    .search-button{
        width: 100%;
        border-radius: 10px;
    }

    .search-button{
        margin-top: 10px;
        margin-bottom: 10px;
        min-height: 50px;
        padding: 15px 0;
        font-size: 16px;
        text-align: center;
    }

    .search-button:hover{
        transform: scale(1.05);
    }

    .search-button:active{
        transform: scale(0.9);
    }

    .search-input{
        min-height: 50px;
        font-size: 16px;
    }

    .cooking-image{
        min-width: 300px;
        width: 80%;
        height: auto;
    }

    .slider{
        max-width: 90%;
        width: 90%;
    }

    .arrow-icon{
        display: none;
    }

    .video-box{
        max-height: 300px;
    }

    .video{
        width: 90%;
        max-width: 100%;
        max-height: 80%;
    }

    .video-title{
        margin-left: 10px;
        margin-right: 10px;
        font-size: 28px;
        text-align: center;
    }

    .video-text{
        margin-left: 10px;
        margin-right: 10px;
        font-size: 16px;
        text-align: center;
    }

    .video-play-button{
        width: 100px;
        height: 100px;
    }

    .form-section{
        flex-direction: column;
        padding: 60px 20px;
    }

    .form-box-1,
    .form-box-2{
        width: 100%;
        padding: 0;
        align-items: center;
        flex: auto;
    }

    .form-box-2{
        max-height: 300px;
    }

    .form-box-1{
        margin-bottom: 40px;
    }

    .form-part{
        justify-content: center;
    }

    .form-name-box,
    .form-email-box,
    .form-message-box{
        width: 100%;
        max-width: 100%;
    }

    .form-message-box textarea{
        width: 100%;
    }

    .form-image{
        min-width: 300px;
        max-width: 90%;
        min-height: 300px;
        max-height: 90%;
    }

    .nav-links{
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .nav-bar{
        flex-direction: column;
        padding: 20px;
    }

    .nav-links,
    .nav-icons{
        margin: 10px 0;
        justify-content: center;
    }
}

@media (max-width: 600px){
    .header-title{
        font-size: 36px;
    }

    .header-text{
        font-size: 16px;
    }

    .search-input{
        font-size: 14px;
    }

    .search-button{
        font-size: 14px;
        padding: 10px 20px;
    }

    .popular-items-button{
        padding: 20px 35px;
        font-size: 16px;
    }

    .video-play-button{
        width: 80px;
        height: 80px;
    }

    .form-title{
        font-size: 22px;
        text-align: center;
    }

    .form-text{
        font-size: 16px;
        text-align: center;
    }

    .form-submit-button{
        width: 100%;
        padding: 15px 0;
        text-align: center;
    }

    .form-submit-button:hover{
        transform: scale(1.05);
    }

    .form-submit-button:active{
        transform: scale(0.9);
    }

    .nav-logo{
        margin: 0 auto;
    }

    .nav-icons{
        margin: 0;
    }

    .arrow-icon{
        display: none;
    }

    .notification{
        left: 50%;
        right: 0;
        transform: translateX(-50%);
    }

    .notification-hidden{
        opacity: 0;
        transform: translateX(100%);
    }
}