*{
   
    padding: 0;
    margin: 0;
    outline-color: red;
}
:root{
    --bodycol:#FDF0E0;
    --btnhover:#1C352D;
    --linkcol:#696614;
    --orderbtncol:#FF3E3E;
}
html {
  scroll-behavior: smooth;
}

* {
  transition: all 0.3s ease-in-out;
}

body{
    width: 100%;
     background-color: var(--bodycol);
}

/* navigation */

.nav{
    height: 10vh;
     width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    justify-content: space-between;
    border: white solid 1px;

}

/* navitem */

.navitem{
    width: 100%;
    height: auto;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: end;
  margin-right: 10px;
  background-color:var(--navcol)
   
}
.navlis ul{
    display: flex;
    gap: 2rem;
    background-color: var(--navcol);
 
}
.navlis ul li{
   text-decoration: none;
   list-style-type: none;
  
   gap: 2rem;
}
.navlis ul li a{
    text-decoration: none;
    color: var(--linkcol);
     background-color: var(--navcol);
}
.navlis ul li a:hover {
  background: linear-gradient(to right, #FFF958, #F96A6A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.search{
    height: 6vh;
    width: fit-content;
   display: flex;
    border: solid white;
    border-radius: 50px;
    padding: 1px 5px 1px 1px;
  
}
.search input{
    background-color: var(--bodycol);
    border-radius: 50px;
   
}
 .search input {
  border: none;
  outline: none;
  background: transparent;
}
.sign_btn {
  background: linear-gradient(var(--bodycol), var(--bodycol)) padding-box,
              linear-gradient(to right, #FFF958, #F96A6A) border-box;
  border: 2px solid transparent;
  border-radius: 50px;
  padding: 10px;
  width: 100px;
  margin-right: 20px;
  color: black;
}
.sign_btn:hover{
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(249, 106, 106, 0.4);
}
.sign_btn a{
    text-decoration: none;
    color: black;
}
/* HAMBURGER */
.menu-toggle{
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* 📱 MOBILE VIEW */
@media (max-width: 768px){

    /* SHOW HAMBURGER */
    .menu-toggle{
        display: block;
        font-size: 14px;
        padding-right: 20px;
    }

    /* HIDE SEARCH + BUTTON */
    
    .sign_btn{
      width: 60px;
      height: 25px;
      font-size: 12px;
        display:flex;
        padding: 3px 3px 3px 9px;
    }
    .search{
      display: none;
    }

    /* NAV MENU RIGHT SIDE POPUP */
    .navlis{
        position: fixed;
        top: 0;
        right: -100%;   /* hidden */
        width: 70%;
        height: 100vh;
       /* background: #b44e3a;
background: linear-gradient(90deg, rgba(180, 78, 58, 1) 0%, rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%); */
background-color: #ffff;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.3s ease;
        z-index: 1000;
    }

    /* ACTIVE MENU */
    .navlis.active{
        right: 0;
    }

    /* VERTICAL MENU */
    .navlis ul{
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
@media(max-width:768px){
.logo img {
    width: 100px;
    height: auto;
  
}

.nav{
    height: 10vh;
     width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    
    border: white solid 1px;
   

}

}

/* best food in search======================== */

.hero{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 50px 5%;

}
.hero-title h1 {
    font-size: 44px;
     text-shadow: 2px 2px 4px rgba(249, 106, 106, 0.3);
} 
.Food{
    color: #F96A6A;
}
.Delivery{
    color: rgb(235, 206, 76);
}
.service{
    color: purple;
}
.desc p{
    margin-top: 10px;
}
/* search box */
.searchbox{
    display: flex;
    background-color: white;
    border-radius: 50px;
    margin: 20px;
    width:50%;
    height:fit-content;
    padding: 3px 10px;
    justify-content: space-between;
    align-items: center;
}
.searchbox p{
    color: black;
    margin-bottom: 10px;
    margin-left: 10px;
}
.searchbox button{
    background-color: #FE5454;
    padding: 6px 5px;
    color: white;
    border-radius: 50px;
    border-color: white;
    
    
}

.searchbox button:hover{
    cursor: pointer;


}
.imgsec img{
    width: 90vh;
    height: 80vh;
}
@media(max-width:748px){
  .hero{
    width: fit-content;
    display: flex;
   
    flex-direction: column;

    

  }  
  .hero h1{
    font-size: 15px;
  }
  .hero p{
    font-size: 8px;
  }
 
  /* search box */
.searchbox{
    display: flex;
    background-color: white;
    border-radius: 50px;
    margin: 10px;
    width:50%;
    height:fit-content;
    padding: 3px 10px;
    justify-content: space-between;
    align-items: center;
}
.searchbox p{
    color: black;
    margin-bottom: 10px;
    margin-left: 10px;
}
.searchbox button{
    background-color: #FE5454;
    padding: 2px 3px;
    color: white;
    border-radius: 50px;
    border-color: white;
    font-size: 8px;
    
    
}

.searchbox button:hover{
    cursor: pointer;


}
.imgsec img{
    width: 50%;
    height: 40%;
}
}


/* best food  */

.bestfoodsec{
    margin: 50px 20px;
   
}
.titlesec{
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.sign{
    background-color: #F96A6A;
    width: 5px;
    height: 5vh;
}
.title{
    display: flex;
    flex-direction: column;
    position: relative;
}
.underline{
    width: 10vw;
    height: 1vh;
    border-radius: 10px;
    background-color: #FF3E3E;
    position: absolute;
    right: 0;
    bottom: 0;
}

@media(max-width:746px){
 
    .title h1{
        font-size: 14px;
    }

    .bestfoodsec{
    margin: 1px 10px;
   
}
.titlesec{
    display: flex;
    flex-direction: row;
    gap: 8px;
}
.sign{
    background-color: #F96A6A;
    width: 3px;
    height: 3vh;
}
.title{
    display: flex;
    flex-direction: column;
    position: relative;
}
.underline{
    width: 10vw;
    height: 0.5vh;
    border-radius: 10px;
    background-color: #FF3E3E;
    position: absolute;
    right: 0;
    bottom: 0;
}


}

/* ======================card section=========== */

.card{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    
}
.leftarrow{
    width: 30px;
    height: 30px;
}
.rightarrow{
    width: 30px;
    height: 30px;
}
.carditems{
     display: flex;
     flex-direction: row;
     align-items: center;
     gap: 3px;
     flex-wrap: wrap;
     
}
.maincontainer{
    width: 200px;
    height: 35vh;
    display: flex;
    flex-direction: column;
    background-color: #ffff;
   position: relative;
   margin: 10px 20px;
    border-radius: 20px;



}
.imgpart{
    width: 100%;
    height: 50%;
   position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  
     border: 50px;
    
    
}
.foodimage{
    width: 100%;
    height: 100%;
    border-radius: 20px 20px 0px 0px;
    object-fit:cover;
}
.imgpart p{
    position: absolute;
    top: 0;
    left: 0;
    padding: 6px 10px;
    background-color: #1c352d89;
    color: white;
    margin: 10px;
    border-radius: 10px;
}
.namefood{
    font-size: 8px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
   padding: 5px 10px;

}
.rating{
    font-size: 12px;
    color:#F96A6A;
    padding: 1px 10px;
}
.pricing{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 10px;
    color: black;
    padding: 1px 10px;
    
}
.pricing h1{
    text-decoration: line-through;
}
@media(max-width:746px){
.card{
    
display: flex;
flex-direction: column;
align-items: center;
}
.leftarrow{
    display: none;
}
.rightarrow{
    display: none;
}

.maincontainer{
    width: 100%;
    height: 35vh;
    display: flex;
    flex-direction: column;
    background-color: #ffff;
   position: relative;
   margin: 10px 20px;
    border-radius: 20px;



}

}

/* footer */

.footer {
  background: #222;
  color: #fff;
}

/* TOP */
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 50px 6%;
  flex-wrap: wrap;
}

/* COLUMN */
.footer-col {
  flex: 1;
  min-width: 200px;
}

/* HEADINGS */
.footer-col h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
}

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 10px;
}

/* TEXT */
.footer-col p {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #ccc;
}

/* LIST */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  font-size: 13px;
  margin-bottom: 6px;
  color: #ccc;
  cursor: pointer;
  transition: 0.3s;
}
.footer-col li  a{
    text-decoration: none;
  font-size: 13px;
  margin-bottom: 6px;
  color: #ccc;
  cursor: pointer;
  transition: 0.3s;
}

/* HOVER */
.footer-col li a:hover {
  color: #FFF958;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  padding: 15px;
  background: #111;
  font-size: 13px;
}

