*{
    padding: 0;
    margin: 0;
    text-transform: capitalize; 
}

html {
  scroll-behavior: smooth;
}

.fixed>a{
    display: none;
    right: 10px;
    bottom: 20px;
    position: fixed;
    padding: 15px;
    border-radius: 50%;
    background-color: #ff5100;
    color: #fff;
    transition: 0.5s ease-in-out;
}

nav{
    z-index: 999;
    align-items: center;
    position: sticky;
    top: 0px;
    display: flex;
    background-color: #fff;
    padding: 30px 90px;
    justify-content: space-between;
    transition: 0.5s ease-in-out;
}


.fa-bars{
    font-size: 30px;
    position: absolute;
    right: 40px;
    top: 42px;
    display: none !important;
}



.close{
    display: none;
}





@media (max-width:1111px){

    .list >ul{
        position: absolute;
        left: 0px;
        top:0px;
        width: 50%;
        height: 100vh;
        text-align: center;
        justify-content: center;
        color: #fff;
        background-color: #ff5100;
        flex-direction: column;
    }

    .list{
        display: none;
    }
    .fa-bars{
        display: block !important;
    }

    .close{
        z-index: 909;
        position: relative;
        display: block;
    }
}


.navlink{
    border-radius: 0px 0px 10px 10px;
    box-shadow: 2px 2px 20px grey;
}
.list>ul{
    display: flex;
    gap: 40px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    list-style-type: none;
}
.logo>h1{
    font-size: 30px;
    color: #310707;
}

.border{
    padding: 14px 30px;
    background-color: transparent;
    border-radius: 10px;
    border: 2px solid rgb(255, 81, 0);
    color: rgb(255, 81, 0);
    font-weight: 700;
    transition: 0.5s ease-in-out
}

.border:hover{
    padding: 14px 30px;
    background-color: rgb(255, 81, 0);
    border-radius: 10px;
    border: 2px solid transparent;
    color: #fff;
    font-weight: 700;
}

.radius{
    padding: 14px 30px;
    background-color: rgb(255, 81, 0);
    border-radius: 10px;
    border: 2px solid rgb(255, 81, 0);
    color: #fff;
    font-weight: 700;
    transition: 0.5s ease-in-out;
}

.radius:hover{
    padding: 14px 30px;
    background-color: transparent;
    border-radius: 10px;
    border: 2px solid rgb(255, 81, 0);
    color: rgb(255, 81, 0);
    font-weight: 700;
}




/* main section  */


main{
    background-color: rgba(255, 0, 0, 0.014);
    padding: 40px 90px;
    display: flex; 
    justify-content: center;  
    gap: 50px;
}

.opening{
    gap: 30px;
    padding: 40px;
    display: flex;
}
.open{
    align-items: center;
    gap: 20px;
    display: flex;
}
.text>p{
    text-transform: uppercase;
    margin-bottom: 4px;
    color: #5f5f5f;
}
.i>i{
    font-size: 26px;
    color: #ff5100;
}

.left-main>h1{
    font-size: 65px;
    color: #310707;
    width: 600px;
}

.left-main>p{
    margin: 30px 0px;
    line-height: 1.5;
    width: 500px;
}

.right-main{
    display: flex;
}
.right-main>img:nth-child(2){
    width: 550px;
    height: 400px;
    border-radius: 20px;
}

.right-main>img:nth-child(odd){

    position: absolute;
    height: 140px;
    border-radius: 20px;
}

.right-main>img:nth-child(1){
    margin-top: 280px;
    position: absolute;
    border: 5px solid #fff;
    margin-left: -80px;
    z-index: 1;
    transition: 0.5s ease-in-out;
    animation: up 2s ease-in-out   infinite;
}


@keyframes up {
    0%{
        margin-top: 270px;
    }
    50%{
        margin-top: 260px;
    }
    100%{
        margin-top: 270px;
    }
}


.right-main>img:nth-child(3){
    position: absolute;
    border: 5px solid #fff;
    margin-left: 380px;
    z-index: 1;
    margin-top: 110px; 
    transition: 0.5s ease-in-out;
    animation: down 2s ease-in-out 1s infinite;
}


@keyframes down{
    0%{
       margin-top: 110px; 
    }
    50%{
        margin-top: 120px;
    }
    100%{
        margin-top: 110px;
    }
}






/* responsive */


@media (max-width: 1324px) {
    main {
        margin: 10px 40px;
        padding: 30px 50px;
        gap: 30px;
    }
    .left-main>h1 {
        font-size: 48px;
        width: 100%;
    }
    .left-main>p {
        width: 100%;
    }
    .right-main>img:nth-child(2) {
        width: 450px;
        height: 320px;
    }
    .right-main>img:nth-child(3) {
        margin-left: 300px;
    }
}


@media (max-width: 1179px) {
    main {
        flex-direction: column;
        align-items: center;
        padding: 20px;
        text-align: center;
    }
    .left-main>h1 {
        font-size: 38px;
        width: 100%;
    }
    .left-main>p {
        width: 90%;
        margin: 20px auto;
    }
    .opening {
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
        align-items: center;
    }
    .right-main {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .right-main>img:nth-child(2) {
        width: 90%;
        height: auto;
    }
    .right-main>img:nth-child(1),
    .right-main>img:nth-child(3) {
        position: static;
        margin: 0;
        animation: none;
        height: 120px;
        border: 5px solid #fff;
    }
}

@media (max-width: 480px) {
    .left-main>h1 {
        font-size: 28px;
    }
    .left-main>p {
        font-size: 14px;
        line-height: 1.4;
    }
    .button {
        flex-direction: column;
        gap: 10px;
    }
    .opening {
        padding: 10px 0;
    }
    .i>i {
        font-size: 20px;
    }
    .right-main>img:nth-child(1),
    .right-main>img:nth-child(3) {
        height: 100px;
    }
}



/* our chefs */
.box{
    width: 190px;
    background-color: #ff5100;
    padding: 20px 40px;
    border-radius: 20px;
    text-align: center;
    color: #fff;
    flex-wrap: wrap;
    position: relative;
    top: 120px;
    left: 224px;
}
.our{
    padding: 50px 90px;
    align-items: center;
    display: flex;
    gap: 50px;
}
.our-img>img{
    border-radius: 10px;
    width: 500px;
}

.our-text>h1{
    font-size: 40px;
    font-family: 'Times New Roman', Times, serif;
}

.our-text>h4{
    margin: 40px 0px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ff5100;
    font-size: 22px;
}

.our-text>p{
    line-height: 1.4;
}

.quote{
    margin: 40px 0px;
    line-height: 1.7;
    border-left: 3px solid #ff5100;
    border-radius: 20px;
    width: 400px;
    padding: 30px 30px;
    background-color: #ff000009;
}



@media (max-width:1228px){
    .our{
        text-align: center;
        align-items: center;
        flex-direction: column;
    }

    .our-text{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .our-img>img{
        justify-content: center;
        width: 100%;
        margin: 10px;
    }
    .box{
        top: 150px;
        max-width: 250px;
        left: 70%;
    }
}




@media (max-width:1018px){
    .box{
        top: 150px;
        max-width: 250px;
        left: 60%;
    }
}

@media (max-width:809px){
    .box{
        top: 150px;
        max-width: 250px;
        left: 50%;
    }
}



@media (max-width:685px){
    .box{
        font-size: 12px;
        top: 120px;
        max-width: 150px;
        left: 50%;
    }
}



@media (max-width:601px){
    .box{
        font-size: 12px;
        top: 120px;
        max-width: 150px;
        left: 40%;
    }
}




@media (max-width:535px){
    .box{
        font-size: 12px;
        top: 120px;
        max-width: 150px;
        left: 30%;
    }
}

/* images */
.images{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 10px 10px;
}
.img-1{
    background-image: url(img/showcase-2.webp);
}
.img-2{
    background-image: url(img/main-4.webp);
}
.img-3{
    background-image: url(img/misc-7.webp);
}
.img{
    z-index: 1;
    border-radius: 20px;
    margin: 60px 0px;
    width: 360px;
    height: 250px;
    color: transparent;
    background-position: center;
    background-size: cover;
}

.white{
    background-color:white;
    height: 80px;
    width: 400px;
    position: relative;
    top: 176px;
}

.imgg{
    background-image: linear-gradient(transparent);
    border-radius: 0px 0px 15px 15px;
    padding: 10px 0px;
    transform: translateY(250px);
    background-color: transparent;
    transition: 0.5s ease-in-out;
    text-align: center;
}
.img:hover .imgg{
    transform: translateY(175px);
    color: #fff;
    background-image: linear-gradient(rgba(0,0,0,.4), rgba(0, 0, 0, 0.151) , rgba(0,0,0,0.4));
}



/* menu */


.download>button{
    padding: 20px 40px;
    color: #fff;
    font-size: 18px;
    border-radius: 30px;
    border: none;
    background-image: linear-gradient( to right ,#ff5100 30%, #ff510096 , #ff51008f);
}


.men{
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    padding: 30px 30px;
    gap: 30px;
}




.cards{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 50px 100px  ;
    margin: 20px;
}


.cars>img{
    width: 500px;
    height: 300px;
    border-radius: 20px 20px 0px 0px;
}


.cars{
    box-shadow: 2px 2px 10px grey;
    border-radius: 20px;
    width: 500px;
}


.h1{
    padding: 5px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.h1>h1{
    font-size: 23px;
    font-family: sans-serif;
}

.h1>i{
    font-size: 18px;
    background-color: #ff5100;
    color: #fff;
    padding: 10px;
    margin: 20px 0px;
    border-radius: 50%;
}


.men>button{
    gap: 5px;
    font-size: 20px;
    display: flex;
    align-items: center;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    color: #000;
    background-color: transparent;
    border: 1px solid #383838;
}


.mens{
    border: none !important;
    background-color: #ff5100 !important;
    color: #fff !important;
    box-shadow: 2px 2px 10px #ff7a3c;
}


.hr{
    margin: 20px 0px;
    align-items: center;
    display: flex;
    justify-content: center;
}

.menu{
    padding: 40px 20px;
    text-align: center;
}


.divider{
    border: none;
    background-color: #ff5100;
    width: 100px;
    height: 3px;
}


.hr>hr{
    border: none;
    background-color: #5f5f5f;
    height: 2px;
    width: 40px;
}



.text-cars{
    padding: 30px 30px;
}

.cars>.text-cars>p{
    text-align: start;
}


.cars>.text-cars>span{
    color: #ff5100;
    font-size: 30px;
    font-weight: 700;
    position: relative;
    left: 45%;
}



/* responsive */

@media (max-width:576px){
    .cars{
        width: 400px;
    }
    .cars>img{
        width: 400px;
    }
}


/* onclick button */

.course,
.deserts,
.beverage{
    display: none;
}




/* testimonial */


.test{
    padding: 60px 20px;
    background-color: #ff00000a;
    text-align: center;
}

.ti{
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 500px;
    font-size: 18px;
}

.ti:nth-child(2),
.ti:nth-child(2) i{
    color: #fff;
    background-color: #ff5100;
}

.ti{
    text-align: start;
    margin: 30px;
}

.testi{
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.client{
    display :flex;
    gap: 20px;
}

.cli-text>h1{
    font-size: 17px;
}


.ti i{
    margin-bottom: 20px;
    color: #ff5100;
    font-size: 23px;
}


.client{
    line-height: 2;
}

.cl-img>img{
    border-radius: 10px;
    width: 80px;
}




/* chef */

.chef{
    display: flex;
    padding: 90px 90px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.ci{
    background-color: #ffffff;
    padding-bottom: 20px;
    box-shadow: 2px 2px 10px grey;
    border-radius: 20px;
    width: 250px;
    font-family:sans-serif;
    text-align: center;
    position: relative;
    bottom: 0px;
    transition: 0.5s ease-in-out;
}

.ci>img{
    width: 250px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.ci>h2{
    margin: 7px 20px;
    font-size: 20px;
}

.ci>h3{
    font-size: 16px;
    margin-bottom: 10px;
    color: #ff5100;
}

.ci>p{
    line-height: 1.5;
    padding: 4px 10px;
}


.ci:hover{
    position: relative;
    bottom: 30px;
}






/* footer */

footer{
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 50px 100px;
    background-color: #ff00000e;
    flex-wrap: wrap;
}


.foo:nth-child(1){
    width: 400px;
}


.foo>ul{
    margin-top: 20px;
    line-height: 1.5;
    list-style-type: none;
}

.foo>h3{
    font-size: 20px;
    color: #ff5100;
}


.foo{
    width: 100px;
}

.foo>p{
    margin-top: 20px;
    line-height: 1.4;
}


.icons{
    margin: 20px 0px;
    display: flex;
    gap: 20px;
}

.icons>i{
    font-size: 20px;
    color: #fff;
    padding: 15px;
    background-color: #ff5100;
    border-radius: 50%;
}




@media (max-width: 446px) {
  .our-img>.box {
    position: relative;
    top: -0px;
  }

  .left-main > h1 {
    font-size: 28px;
  }

  .left-main > p {
    font-size: 13px;
  }

  .right-main > img:nth-child(2) {
    width: 310px;
    height: 230px;
  }
}


@media (max-width:432px){
    .btn>button{
        display: none;
    }
}