@media screen {
    *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Google Sans Flex", sans-serif;
}
body{
    overflow-x: hidden;
}
}

 nav div{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    padding: 15px 40px;
    font-size: 20px;
}

nav ul{
    display: flex;
    list-style: none;
    gap: 20px;
}

nav a{
    text-decoration: none;
    color: white;
}

nav h2{
    color:white;
}

nav a:hover{
    color: red;
}

nav li:last-child a {
    background-color:red;
    padding: 6px 12px;
    border-radius: 5px;
}

nav li:last-child a:hover{
    background-color:#cc0000;
    color: black;
}

.active{
    color: red;
    text-decoration: underline;
}

img{
    width: 180px;
}

.hero{
    height: 92vh;
    background-image: url(./images/Background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-section h1{
    font-size: 60px;
}

.hero-section{
    color: white;
}

.hero-section p{
    font-size: 30px;
}

.hero-section button{
    font-size: 20px;
    border-radius: 10px;
    margin-top: 10px;
    background-color: red;
    padding: 10px 20px;
    color: white;
}

.hero-section button:hover{
    background-color: darkred;
}

.hero-section a{
    text-decoration: none;
    color: white;
}

.video-section{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    gap: 40px;
}

.video-text h2{
    font-size: 32px;
}

.video-text{
    flex: 1;
}

.video-text p{
    font-size: 18px;
    color: grey;
} 

video{
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.video-box{
    flex:1;
}

.about{
    text-align: center;
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.about h2{
    font-size: 32px;
    color: rgba(255, 0, 0, 0.615);
}

.about p{
    font-size: 18px;
    color: grey;
    line-height: 1.6;
}


    .menu-conatiner{
    height: 450px;
    width: 80%;
    display: grid;
    grid-template-columns: 30% 30% 30% 30%;
    gap: 20px;
    padding: 20px;
    justify-content: space-evenly;
    text-align: center;
    margin-bottom: 100px;
    }

    .menu-card{
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 0px 6px 4px grey;
    border-radius: 10px;
}


.menu-card h3{
    font-size: 26px;
    margin-top: 40px;
}

.menu-card p,span{
    font-size: 22px;
}

.menu-card img{
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.menu-card button{
    color: white;
    font-size: 20px;
    background-color: red;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    border-color: red;
}

.menu-card button:hover{
    background-color: darkred;
}

.menu-img:hover{
    transform: scale(1.1);
    }

    .cat-categories{
    width: 100%;
    display: flex;
    gap: 70px;
    padding: 20px;
    justify-content: center;
    margin-bottom: 100px;
}

.cat-icon{
    width: 100px;
    height: 100px;
    border: 2px solid lightgray;
    border-radius: 50%;
    border-image:fill;
    text-align: center;
    padding: 5px;
    background-color: #fff;
}

.cat-icon img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    cursor: pointer;
}

.cat-icon p{
    margin-top: 10px;
    font-size: 20px;
    cursor: pointer;
}

.cat-icon p:hover{
    color: red;
}

.cat-icon:hover{
    border-color: rgb(0, 0, 0);
}

.cat-icon img:hover{
    transform: scale(1.1);
}

header{
    position: sticky;
    top: 0;
    z-index: 1000;
}

table{
    margin-top: 70px;
    justify-self: center;
    width: 70%;
    border-collapse: collapse;
    
}

.radius{
    border-top-left-radius: 10px;
}

.right{
    border-top-right-radius: 10px;
}

 tr,td, th{
    padding: 20px;
    text-align: center;
}

thead{
    background-color: red;
    font-size: 22px;
    color: white;
}

.item{
    display: flex;
     gap: 20px;
}

.item img{
    width: 80px;
    height: 80px;
    border-radius: 10px;
}

.cart-img{
    align-self: center;
    text-align: center;
}

tbody tr{
    border-bottom: 1px solid #ddd;
}

.button{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.button button{
    padding: 2px 10px; 
    background-color: red;
    border-radius: 5px;
    font-size: 25px;
    border-color: red;
    color: white;
}

.button button:hover{
    background-color: darkred;
}

.remove{
    font-size: 22px;
    padding: 2px 8px;
    width: 50px;
    border-radius: 10px;
    border-color: red;
    background-color: red;
    color: white;
}

.remove:hover{
    background-color: darkred;
}

.total th{
    font-size: 22px;
}

.total button{
    background-color: red;
    border-color: red;
    color: white;
    border-radius: 10px;
    font-size: 20px;
    padding: 10px;
    width: 120px;
}

.total button:hover{
    background-color: darkred;
}

.auth-container{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #000, #1c1c1c);
}

.auth-box{
    width: 400px;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 8px 25px rgb(0, 0, 0,0.3);
}

.auth-one{
    color: red;
    font-size: 30px;
}

.auth-box h2{
    margin-bottom: 20px;
    color: #000;
    font-size: 30px;
}

.auth-box input{
    border-radius: 20px;
    border: 1px solid #ddd;
    font-size: 20px;
    width: 100%;
    padding: 10px;
    margin-top: 20px;
}

.auth-box button{
    margin-top: 20px;
    width: 100%;
    border: none;
    border-radius: 10px;
    background-color: red;
    padding: 10px;
    font-size: 22px;
    color: white;
    cursor: pointer;
}

.auth-box p{
    margin-top: 20px;
}

.auth-box a{
    color: red;
    text-decoration: none;
}

.auth-box button:hover{
    background-color: darkred;
}

.auth-box input:focus{
    border-color: red;
}

    .bite-deals{
    width: 100%;
    padding: 40px;
    background-color: #f8f8f8;
}

.deal-conatiner{
    background-color: #fff;
    padding: 30px;
    margin-top: 100px;
}

.deal-hero{
    background: linear-gradient(135deg, #000, #1c1c1c);
    height: 200px;
    text-align: center;
    align-content: center;
    border-radius: 10px;
}

.deal-hero h1{
    color: white;
    font-size: 40px;
    font-weight: bolder;
}

.deal-hero p{
    color: white;
    font-size: 19px;
}

.section{
    font-size: 30px;
    margin-bottom: 20px;
}

.sub-section{
    border-radius: 10px;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(3, 32%);
    gap: 20px;
}

.combo{
    padding: 20px;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
}

.combo img{
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.combo h3{
    font-size: 20px;
}

.combo p{
    font-size: 16px;
    margin-bottom: 10px;
}

.combo h4 span{
    font-size: 14px;
    font-weight: 100;
    color: gray;
    text-decoration: line-through;
}

.combo button{
    padding: 10px;
    border-radius: 10px;
    background-color: red;
    width: 100px;
    color: white;
    border: none;
}

.combo button:hover{
    background-color: darkred;
}

.today-container{
    margin-top: 40px;
}

.today-container h2{
    font-size: 30px;
    margin-bottom: 20px;
}

.offer-container{
    display: grid;
    grid-template-columns: repeat(3, 32.5%);
    gap: 20px;
}

.sub-offer{
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.sub-offer h3{
    margin-bottom: 10px
}

.sub-offer p{
    margin-bottom: 8px;
}

.coupon{
    background-color: black;
    color: white;
    justify-self: center;
    font-size: 18px;
    padding: 5px;
}

.hotdeals{
    margin-top: 40px;
}

.hotdeals h2{
    font-size: 30px;
    margin-bottom: 20px;
}

.hotdeal-container{
    display: grid;
    grid-template-columns: repeat(3, 32.5%);
    gap: 20px;
}

.sub-hotdeal{
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.sub-hotdeal h3{
    margin-bottom: 10px
}

.sub-hotdeal p{
    margin-bottom: 8px;
}

.deal-coupon{
    background-color: black;
    color: white;
    justify-self: center;
    font-size: 18px;
    padding: 5px;
}

.red{
    border-top: 7px solid red;
}

.yellow{
    border-top: 7px solid yellow;
}

.green{
    border-top: 7px solid green;
}


footer{
    background-color: #111;
    color: #ccc;
    padding: 40px;
}

.ft-container{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.ft-box{
    color: #fff;
}

.ft-box ul{
    display: block;
    list-style: none;
}

.ft-box h2,
.ft-box h3{
    color: white;
    margin-bottom: 15px;
}

.ft-box span{
    color: red;
}

.ft-box a{
    color: #ccc;
    text-decoration: none;
}
.ft-box a:hover{
    color: red;
}

.ft-box p{
    color: #ccc;
}

.ft-bottom{
    font-size: 14px;
    text-align: center;
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid #333;
}

#icon a{
    font-size: 25px;
    display: inline-block;
    padding: 10px;
    background-color: #222;
    color: #ccc;
    border-radius: 50%;
    margin-right: 15px;
}

#icon a:hover{
    background: red;
    color: white;
}