@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --color1: #B9375D;
    --color2: #D25D5D;
    --color3: #F5CBCB;
    --color4: #F5F5F5;
}
header{
    height: 70px;
    width: 100%;
    box-shadow: 10px 5px 10px 5px rgba(247, 4, 36, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Playfair Display", serif;
    position: fixed;
    background-color: white;
}.logo{
    width: 90px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--color1);
    margin-left: 20px;
}.linksCnt ul{
    display: flex;
    list-style-type: none;
    justify-content: space-around;
    align-items: center;
    height: inherit;
}.linksCnt a{
    text-decoration: none;
    color: var(--color1);
    font-size: larger;
    font-weight: 800;
}
.logoCnt {
    height: inherit;
    width: 5%;
}
.linksCnt{
    height: inherit;
    width: 105%;
}
.menuCnt{
    height: inherit;
    width: 11%;
}
.logoCnt,.menuCnt{
    display: flex;
    align-items: center;
    justify-content: center;
}
/* .bannerCnt{
    height: 1100px;
    width: 80%;
    baground-video: url("./Street\ Food\ Modern\ Clean\ Video\ Intro\ Outro.mp4");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 1000;;
} */
 .bannerCnt {
    position: relative;
    height: 100vh; /* full screen height */
    overflow: hidden;
}

/* Video as background */
.bannerCnt video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Center content on video */
.bannerContent {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction:column;
    justify-content:end; /* vertical center */
    align-items: center;     /* horizontal center */
    text-align: center;
    color: white;
    padding: 20px;
}
.bannerContent h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.bannerContent p {
    font-size: 1.2rem;
    max-width: 700px;
    margin-bottom: 20px;
}
/* Buttons */
.btns button {
    margin: 5px;
    padding: 10px 20px;
    font-size: 1em;
    background: rgba(255, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.whyChooseUs{
    height: fit-content;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    border-radius: 20px;
}
.FoodService,.BestOffer,.FreshFood{
    height: 320px;
    width: 20%;
    margin: 5px;
    padding: 5px;
    text-align: center;
    border-radius: 20px;
    background-color: var(--color3);
}
.whyChooseUs img{
    height: 230px;
    width: 100%;
    border-radius: 10%;
    border: 2px solid var(--color2);
}
.FoodService:hover,.BestOffer:hover,.FreshFood:hover{
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

/* code for mobile device */
@media (max-width:576px){
    .header{

    }

.linksCnt{
    display: none;
}
.FoodService,.BestOffer,.FreshFood{
    width: 90%;
    margin-bottom: 10px;
}
}
/* code for tablet devices */
@media (max-width:577px){
.menuCnt{
    display: none;
}
}
/* code for laptop devices */
@media (max-width:993px){
}
  /* Menu section  */

    .ExploreMenu {
     height: fit-content;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    border-radius: 20px;
    text-decoration: none;
    }

    .ExploreMenu div {
    height: 300px;
    width: 20%;
    margin: 10px;
    padding: 10px;
    text-align: center;
    border-radius: 20px;
    background-color: bisque;
}
.ExploreMenu img{
    height: 200px;
    width: 100%;
    border-radius: 10%;
    border: 2px solid var(--color3);
}
.veg:hover,.Nonveg:hover,.Soups:hover,.Seafood:hover,.MainCourse:hover,.Chinese:hover,.Salads:hover,.Burgers:hover,.Pizzas:hover,.Beverages:hover,.Desserts:hover{
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
@media(max-width:576px)
{
.ExploreMenu{
    display: flex;
    flex-direction: column;
     width: 90%; 
}
.Starters,.veg,.Nonveg,.Soups,.Seafood,.MainCourse,.Chinese,.Salads,.Burgers,.Beverages,.Pizzas,.Desserts{
    height: fit-content;
    width: 95%;
}
.ExploreMenu div {
        width: 80%;

}
}

    /* Delivery and Payment */
.del-section
{
     width: 100%; 
     height: fit-content; 
    /* border: 2px solid black; */
    margin: auto;
    margin-top: 25px; 
}
.del-section h1{
    font-size: 2em;
}
.delivery
{
   width: 92%;
    height: fit-content;
    /* border: 2px solid black; */
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    
}
.d-box
{
    width: 40%;
    height:300px;
    /* border: 2px solid; */
    margin: 15px 10px 10px 10px;
}
.d-box img{
    width: 100%;
    height: 100%;
    border-radius: 15px;
}
.d-box img:hover
{
    transform: scale(1.02);
     box-shadow: 0 0 4px #e5c32e;
}
.d-box h2{
    color: rgb(80, 142, 229);
    margin: 10px 0px 15px 0px;
}
.d-box p{
    color:rgb(127, 169, 228) ;
    margin:5px 0px 15px 15px;
}
.d-box button{
    width:150px ;
    height: 40px;
    border-radius: 5px ;
   color: white;
   border: none;
    background-image:linear-gradient(rgb(80, 142, 229),rgb(131, 31, 131));
}
@media(max-width:576px)
{
    .delivery
    {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .d-box{
        width: 90%;
        display: flex;
        flex-wrap: wrap;
    }
    .d-box h2{
      font-size: 1.3rem;
    }
    
    .delivery .d-box:nth-child(3)
    {
        order:4;
    }
}
/* gift */
.gift
{
    width: 95%;
    height: 300px;
    /* border: 2px solid black; */
    margin: auto;
    margin-top: 25px; 
    background-image: radial-gradient(rgb(131, 31, 131),rgb(80, 142, 229));
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.g-box
{
    width: 40%;
    height: 80%;
    /* border: 2px solid; */
    display: flex;
    flex-direction:column ;
    justify-content: space-evenly;
   
}
.g-box1{
    width: 40%;
    height: 80%;
    /* border: 2px solid; */
}
.g-box1 img{
    width: 80%;
   height: 100%;
    border-radius: 15px;
    box-shadow:6px 3px 4px rgb(131, 31, 131);
}

.g-box button{
    border: none;
    margin-top: 20px;
    width:155px ;
    height: 40px;
    /* border-radius: 5px ; */
   color: black;
    background-image:linear-gradient(rgb(80, 142, 229),rgb(131, 31, 131));
}
/* gift end */
/* footer */
footer{
    width: 100%;
    height: 400px;
    background-color: rgba(29, 2, 40, 0.961);
    margin-top: 10px;
}
.f-sec
{
    width: 100%;
    height: 8vh;
    /* border: 2px solid;   */
    display: flex;  
    justify-content: space-between;
    align-items: center;
    padding: 50px;
}
.f-sec h1{
    color: white;
    font-style: italic;
    padding-left: 20px;
}
.f-sec-box
{
    width: 300px;
    height: 8vh;
    /* border: 2px solid aqua; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn{
width: 100px;
height: 5vh;
background-color: white;
border-radius: 10px;
border: 1px solid ;
font-size: 1rem;
text-align: center;
padding-top: 5px;
margin-left: 5px;
}
.btn select {
    font-size: 1rem;
    border: none;
}
.f-body
{
    width: 100%;
    height: 70%;
    /* border: 2px solid aqua; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
   
}
.f-body-box
{
    width:19%;
    height: 100%;
    /* border: 2px solid red; */
    color: white;
    padding-left: 20px;
}
.f-body-box ul{
    text-align: left;
    list-style: none;
}
.f-body-box li{
    margin: 5px 5px 5px 0px;
}
.bot{
    height: 70px;
    width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(163, 129, 214);
    border-radius: 20%;
    position: fixed;
    bottom: 30px;
    right: 5px;
     margin: auto;
}
.bot-img{
    height: 50px;
    width: 50px;

}
.form{
height: 280PX;
width: 25%;
position:fixed;
top: 36%;
left:70%;
background-color: hsl(0, 68%, 88%);
display: none;
box-shadow: 6px 5px 4px 3px #e2e8dd;
}
.form p {
    justify-content: end;
}
 .mainCnt{
            height: fit-content;
             display: flex;
            justify-content: space-between;
            flex-direction: column;
        }
        .boxreceiver{
            align-self: start;
             width: 280px;
            height: fit-content;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .boxsender{
            align-self: end;
             width: 280px;
            height: fit-content; 
            display: flex;
            align-items: center;
            justify-content: center;
        }
             .receiver-img{
            width: 50px;
            height: 50px;
            border-radius: 50%;
        }
        .sender-img{
            width: 50px;
            height: 50px;
            border-radius: 50%;
        }
        .message{
            padding: 3px;
            margin: 3px;
            height: fit-content;
            border: 1px solid rgba(16, 4, 63, 0.225);
        }
@media(max-width:567px)
{
    .follow-us {
    left: auto;

    }
    .bot{
        left:10px;
    }
   .footer {
    width: 100%;
    background-color: rgba(29, 2, 40, 0.961);
    margin-top: 10px;
    }
.footer h1{
    text-align: center;
    height: fit-content;
    width: 100%;
}
    .f-sec {
        flex-direction: column;
        padding: 20px;
        text-align: center;
        gap: 10px;
    }
    .f-sec h1{
        margin-left: -50px;
    }

    .f-sec-box {
        width: 90%;
        justify-content: center;
        flex-wrap: wrap;
        margin-left: -40px;
    }

    .btn {
        margin: 5px;
        width: 45%;
        padding: 8px 0;
    }

    .f-body {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 20px;
        margin-top: 40px;
    }

    .f-body-box {
        width: 100%;
        padding-left: 0;
        margin-bottom: 15px;
    }

    .f-body-box h2 {
        font-size: 1.2rem;
    }

    .f-body-box li {
        font-size: 0.9rem;}
     }
