body{
    background: whitesmoke;
    font-family: system-ui;
    /* background-image: url('./image/back2.jpg');
    background-size: 100%;
    background-repeat: no-repeat; */
    background: linear-gradient(rgba(15, 23, 43, .9), rgba(15, 23, 43, .9)), url('./image/back2.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
   
}


.container{
    width: 90%;
    margin: auto;
    margin-top: 2px;
    transition: 0.5s;
}
.navbar .logo
{
    display: flex;
    display: inline-block;
}
.navbar .theul
{
    display: flex;
    display: inline-block;
    float: right;
}
.navbar h3 {
   display: inline-block;
   color: #e16009;
   /* font-family: 'Honk', system-ui; */
   /* font-family: 'Indie Flower', cursive; */
   font-size: 30px;
   font-family: 'Pacifico', cursive;
   
}
.navbar img
{
    width: 60px;
    height: 60px;
    margin-left:5px ;
    padding: 5px;
    border-radius: 50%;
    display: inline-block;
}
.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    float: right;
}

.navbar li {
    display: inline;
    margin: 10px;
}

.navbar li.logo {
    margin-right: auto; 
}

.navbar li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    
}

.navbar li a:hover {
   color:  #e16009;
}

.navbar .dropdown {
    position: relative;
    background-color:   #e16009;;
    border-radius: 20px;
    min-width: 140px;
}

.navbar .dropdown-content {
    display: none;
    position: absolute;
    background-color: #e16009;
    min-width: 140px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 20px;
}

.navbar .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.navbar .dropdown-content a:hover {
    background-color: #dddddd;
    border: solid 2px rgb(125, 92, 14);
    border-radius: 5px;
}

.navbar .dropdown:hover .dropdown-content {
    display: block;
   
}

.navbar .dropbtn {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.navbar .dropbtn:hover {
    background-color: #dddddd;
    color:black;
    border: solid 2px rgb(125, 92, 14);
    border-radius: 5px;
}

header{
    display: grid;
    grid-template-columns: 1fr 50px;
    margin-top: 5px;
}
header h1
{
    color: #e16009;
     margin-left: 40%;
     font-family: 'Pacifico', cursive;
}
header h1::after
{
    content: '';
    position:relative;
    display: block;
    width: 30px;
    height: 3px;
    background: #e16009;
    bottom: 0;
    left: calc(5% - 25px);
    
    margin: 20px
}
header .shopping{
    position: relative;
    text-align: right;
}
header .shopping img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
}
header .shopping span{
    background: red;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: absolute;
    top: -5px;
    left: 80%;
    padding: 3px 10px;
}
.list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
    row-gap: 20px;
    margin-top: 50px;
   margin-bottom: 15px;
}
.list .item{
    text-align: center;
    background-color: #DCE0E1;
    padding: 20px;
    /* box-shadow: 0 50px 50px #757676; */
    letter-spacing: 1px;
    border: solid 2px rgb(255, 255, 255);
    border-radius: 8px;
    height: 300px;
    animation-duration: 1s; 
    animation-fill-mode: both;
    animation-name: backInUp
}
.list .item img{
    width: 50%;
    height: 50%;
    border-radius: 50%;
    object-fit: cover;
    background-color: #ffffff;
    box-shadow: #dddddd;
    border: solid 2px rgb(255, 255, 255);
    transition: width 0.4s ease, height 0.3s ease, border-radius 0.3s ease, box-shadow 0.3s ease;
}



.list .item .title{
    font-weight: 600;
    font-family: "Oldenburg", serif;
}
.list .item .price{
    margin: 10px;
}
.list .item button{
    background-color:  #e16009;
    color: #fff;
    width: 100%;
    padding: 10px;
    border: solid 2px rgb(255, 255, 255);
    border-radius: 5px;
    margin-top: 0px;
}

.list .item:hover img {
    width: 95%;
    height: 80%;
    border-radius: 0;
    
}

.list .item:hover .title,
.list .item:hover .price
 {
    display: none;
}

.list .item:hover button
 {
    margin-top: 3px;
}


.card {
    position: fixed;
    top: 0;
    left: 100%;
    width: 500px;
    background-color: #453E3B;
    height: 100vh;
    transition: 0.5s;
    min-height: 500px;
    overflow: auto;
}

.active .card {
    left: calc(100% - 500px);
}

.active .container {
    transform: translateX(-200px);
}

.card h1 {
    color: #e16009;
    font-weight: 100;
    margin: 0;
    padding: 0 20px;
    height: 80px;
    display: flex;
    align-items: center;
}

.card .checkOut {
    position: fixed;
    bottom: 0;
    width: 500px; 
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background-color: #453E3B;
    margin-top: 30px;
}

.card .checkOut div {
    background-color: #e16009;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    cursor: pointer;
}

.card .checkOut div:nth-child(2) {
    background-color: #1C1F25;
    color: #fff;
}

.listCard li {
    display: grid;
    grid-template-columns: 100px repeat(3, 1fr);
    color: #fff;
    row-gap: 10px;
}

.listCard li div {
    display: flex;
    justify-content: center;
    align-items: center;
}
.item-name {
    font-family: "Oldenburg", serif;
}
.item-price {
    font-weight: bold;
    color:#e16009
}
.listCard li img {
    width: 90%;
    margin-bottom: 10px;
    padding-bottom: 5px;
}

.listCard li button {
    background-color: #fff5;
    border: none;
}

.listCard .count {
    margin: 0 10px;
}


/*          Special Dishes       */
.SpecialDishes
 {
  position: relative;
  font-size: 60px;
  color: #000000;
  background-color: #ffffff;
  margin-bottom: 2%;
 }
 .SpecialDishes .heading-section
 {
    font-family: 'Pacifico', cursive;
 }
 .Dishes
 {
    display: flex;
 }
 .Dishescontent
 {
    display: inline-block;
    width: 45%;
    font-size: 30px;
    padding: 2%;
  
 }
 .Dishescontent p{
    font-size: 20px;
    color: #000000;
 }
 .Dishescontent a
 {
    text-decoration: none;
    background-color:#e16009;
    color: #fff;
    width: 30%;
    height: 20%;
    padding: 2%;
    border-radius: 5%;
 }
 .Dishesimg
 {
    display: inline-block;
    width: 45%;
 }

.SpecialDishes h3 span {
  color: #e16009;
}

.dishes-text {
  padding-left: 90px;
 }

 
/*arrow*/
.uparrow {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.uparrow a {
    display: block;
    width: 40px;
    height: 40px;
    background-color: #e16009; 
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.uparrow a:hover {
    background-color: #dd6f20;
}
