*{
   
    padding: 0;
    margin: 0;
}
: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;
    position: sticky;
    top: 0;
    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;
        text-align: center;
        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: 10000;
    }

    /* 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;
   

}

}
/* main section */

/*  =========title section======== */

.titlesec{
    /* background-color: #1C352D; */
    display: flex;
    justify-content: space-around;
    margin-top: 20px;

}
.titlesec img{
    width: 5%;
    height: 8%;
}
.titlesec h1{
    color: black;
    font-family: 'PT Serif', sans-serif;
}
@media(max-width:768px){
    .titlesec{
        width: 100%;
    /* background-color: #1C352D; */
    display: flex;
    justify-content: space-around;
    margin-top: 20px;

}
.titlesec img{
    width: 5%;
    height: 8%;
}
.titlesec h1{
    font-size: 15px;
    color: black;
    font-family: 'PT Serif', sans-serif;
}
.titlesec p{
    font-size: 10px;
}
}
/* service card section */
/* ==========vide=========== */
/* main div contaiiner */
.sertype{
    display: flex;
    
    margin: 10px 20px;
}
/* img  container */
.servideo {
    width: auto;
    height: auto;
    
} 
.servideo img{
    width: 20vw;
    height: 60vh;
}
.servideo img:hover{
    cursor: pointer;
}
/* responsive of service cards sec */
@media(max-width: 768px){
   .sertype{
    display: flex;
    flex-direction: column;
    margin: 10px 20px;
}
/* img  container */
.servideo {
    width: auto;
    height: auto;
    
} 
.servideo img{
    width: 20vw;
    height: 40%;
}
.servideo img:hover{
    cursor: pointer;
} 
}

.fooding{
    width: 250px;
    height: 150px;
    background-color: white;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px ;
    
}
 .fooding h1{
    font-size: 16px;
 }
 .sercards{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
 }

/* service detailing */
/* =======description========= */
.titledescription{
    display: flex;
    flex-direction: column;
    margin: 10px 20px;
}
.titledescription h1{
    font-size: large;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    margin-bottom: 10px;
}
/* food facility with images */
/* ===main container==== */
.foodfacilitysecmain{
    display: flex;
    /* background-color: #1C352D; */

}
/* images customisation */
.imagesecoffacility{
   
    padding: 10px;
    margin: 20px;
}
.imagesecoffacility .facilityimg1{
    width: 20vw;
}

.imagesecoffacility .facilityimg2{
    width: 20vw;
    /* height: 60vh; */
    height: auto;
}
.imagesecoffacility .facilityimg3{
    margin-top: 10px;
    width: 50vw;
    height: auto;
}

/* animation  in images */
/* ist image */
@keyframes move {
  from {
    transform: translateX(-100px);
  }
  to {
    transform: translateY(0px);
  }
  
}

.facilityimg1 {
  animation: move 2s;
}


/* 2st image */
@keyframes movesec {
  from {
    transform: translateY(-100px);
  }
  to {
    transform: translateY(0px);
  }
}

.facilityimg2 {
  animation: movesec 2s;
}

/* 3st image */
@keyframes movethird {
  from {
    transform: translateX(100px);
  }
  to {
    transform: translateY(0px);
  }
}

.facilityimg3 {
  animation: movethird 2s ease-in-out;
}

/* responsive of facility section */
@media (max-width: 768px){
    .foodfacilitysecmain{
        display: flex;
        flex-direction: column;
    }

}


/* first para of facility */

.para1{
    margin-top: 30px;
    margin-right: 20px;
    margin-left: 20px;
}
 .para1 .par1subheadings{
    display: flex;
    margin-top: 10px;
 }
 .orderbtn {
    color: wheat;
    background-color: var(--orderbtncol);
    padding: 10px 20px;
    border: 1px solid white;
    border-radius: 50px;
    margin-top: 29px;
    margin-left: 20px;

    /* Yellowish shadow */
    box-shadow: 0 4px 10px rgba(255, 200, 0, 0.6);

    /* Smooth animation */
    transition: all 0.3s ease;
}

.orderbtn:hover {
    transform: translateY(-3px) scale(1.05);

    /* Strong glow on hover */
    box-shadow: 0 8px 20px rgba(255, 200, 0, 0.9);

    cursor: pointer;
}

.orderbtn:active {
    transform: scale(0.95);
    box-shadow: 0 3px 8px rgba(255, 200, 0, 0.5);
}
.orderbtn a{
    text-decoration: none;
    color: white;
}
.para2{
    margin: 20px;
}



/* delivery with images */
/* ===main container */

.deliverysec.titledescription{
    display: flex;
    flex-direction: column;
    margin: 10px 20px;
    
}
.titledescriptiondel h1{
    font-size: large;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    margin-bottom: 10px;
    padding-left: 10px;
    color: purple;

}
.titledescriptiondel p{
    padding-left: 20px;
}
.deliverysecmain{
    display: flex;
    /* background-color: #1C352D; */

}
/* images customisation */
.imagesecofdelivery{
   display: flex;
    padding: 10px;
    margin: 20px;
}
.imagesecofdelivery .deliveryimg1{
    width: 20vw;
    margin-right: 10px;
}

.imagesecofdelivery .deliveryimg2{
    width: 20vw;
    /* height: 60vh; */
    height: auto;
}


/* animation  in images */
/* ist image */
@keyframes moved {
  from {
    transform: translateX(-100px);
  }
  to {
    transform: translateY(0px);
  }
  
}

.deliveryimg1 {
  animation: moved 2s;
}


/* 2st image */
@keyframes movesecd {
  from {
    transform: translateY(-100px);
  }
  to {
    transform: translateY(0px);
  }
}

.deliveryimg2 {
  animation: movesecd 2s;
}


/* responsive of facility section */
@media (max-width: 768px){
    .deliverysecmain{
        display: flex;
        flex-direction: column;
    }
    .deliverysec h1{
        padding-left: 20px
    }
    .deliverysec p{
        padding-left: 20px;
    }

}


/* first para of facility */

.deliverysec.para1{
    margin-top: 30px;
    margin-right: 20px;
}
 .deliverysec.para1 .par1subheadings{
    display: flex;
    margin-top: 10px;
 }
 .deliverysec.orderbtn {
    color: wheat;
    background-color: var(--orderbtncol);
    padding: 10px 20px;
    border: 1px solid white;
    border-radius: 50px;
    margin-top: 29px;
    margin-left: 20px;

    /* Yellowish shadow */
    box-shadow: 0 4px 10px rgba(255, 200, 0, 0.6);

    /* Smooth animation */
    transition: all 0.3s ease;
}

.deliverysec.orderbtn:hover {
    transform: translateY(-3px) scale(1.05);

    /* Strong glow on hover */
    box-shadow: 0 8px 20px rgba(255, 200, 0, 0.9);

    cursor: pointer;
}

.deliverysec.orderbtn:active {
    transform: scale(0.95);
    box-shadow: 0 3px 8px rgba(255, 200, 0, 0.5);
}
.deliverysec.para2{
    margin: 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;
}

