 *{
    margin: 0px;
    padding: 0px;
}
body{
    font-family: sans-serif;
    overflow-x: hidden;
}
.navbar{
    width: 100%;
    height: 100px;
    padding-top:20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
}
.nav-p{
    width: 33%;
    display: flex;
    flex-direction: row;
    margin-left: 30px;
}
.navbar p{
    font-size: 18px;
    padding: 3%;
    min-width: 50px;
}
.navbar .img{
    width: 33%;;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 30px;
}
.navbar .img img{
    height: 50px;
    display: flex;
    justify-content: center;
    align-self: center;
}
.navbar .icons{
   width: 33%;
   display: flex;
   justify-content: flex-end;
}
.navbar .icons i{
    padding: 20px;
}
@media screen and (max-width:900px) {
    .nav-p{
        display: none;
    }
    .icons{
        display: none;
    }
    .navbar .icons{
        display: none;
    }
    .navbar{
        height: 80px;
        display: flex;
        justify-content: center;
        align-items: center;
    } 
}
/* main1-img */
.main1-img{
    background-image: url(assets/main\ 1st.webp);
    height: 800px;
    width: 100%;
    background-size: cover;
}
 .content{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1;
    gap: 20px;
    height: 100%;
}
.main1-img h2{
    padding-top: 50px;
    color: #c59d5f; 
    font-size: 60px;
}
.tang{
    font-family: "Tangerine", cursive;
}
.lato{
    font-family: "Lato", sans-serif;
}
.main1-img p{
    font-size: 60px;
    text-align: center;
    word-spacing: 10px;
    letter-spacing: 1px;
    font-weight: 700;
    font-style: normal;
    color: white;
}
.main1-img button{
    height: 45px;
    width: 160px;
    background-color: #c59d5f;
    color: white;
    border: none;
    transition: 0.3s;
}
.main1-img button:hover{
    background-color: #041527;
    border: 1px solid #c59d5f;
    transition: 0.3s,;
} 
@media screen and (max-width:900px){
    .main1-img{
        background-size: cover;
        height: 400px;
        display: flex;
        width: 100%;
    }
    .main1-img .content h2{
        font-size: 40px;
    }
    .content button{
        height: 40px;
        width: 120px;
    }
    .main1-img .content p{
        font-size: 20px;
    }
    .content{
        height: 100%;
        width: 50%;
    }
}
/* Popular Dishes */
.Dishes{
    height: 700px;
}
.title{
    height: 100px;
    margin: 80px 100px 50px 60px;
    display: flex;
    justify-content: space-between;

}
.title1{
    width: 30%;  
    margin-right: 20px; 
    padding-top: 20px;
}
.title1 h4{
    font-size: 30px;
    font-family: "Tangerine", cursive;
    text-align: end;
    color: #c59d5f;
}
.title1 h2{
    font-size: 35px;
    font-family: "Lato", sans-serif;
    text-align: end;
    color: #041527;
}
.title2{
    display: flex;
    align-items: center;
    margin-left: 20px;
    padding-left: 20px;
    line-height: 25px;
    color: #041527;
}
    @media screen and (max-width:900px){
    .title{
        width: 850px;
        margin-left: 20px;
        margin: 50px 0px;
    }
    .title1{
        width: 40%;
    }
    .title1 h2{
        font-size: 30px;
    }
    .title1 h4{
        font-size: 30px;
    }
    .title2 {
        width: 60%;
    }
}

/* scroll-items */
.scroll-items{
    height: 500px;
    width: 98%;
    display: flex;
    overflow: hidden;
    overflow-x: scroll;
    background-color: white;
    padding: 2  0px;
    margin: 0 10px;
}
/* width */
::-webkit-scrollbar {
    width: 10px;
    height: 6px;
}
 
/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    background: #c59d5f;
    border-radius: 5px;
}
 
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.items{
    min-width:300px;
    height: 420px;
    overflow: hidden;
    position: relative;
    margin: 20px;
    border-radius: 10px;
    transition: width 0.3s, height 0.3s;
}
.items img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s;
}
.items:hover {
    width: 320px;
    letter-spacing: 2px;
}
.items:hover img {
    transform: scale(1.1);  
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(4, 21, 39, 0.5); 
    opacity: 0; 
    transition: opacity 0.3s; 
    z-index: 1; 
    text-align: center;
}
.overlay p {
    margin: 0 0 10px 0; 
    color: white;
    font-size: 50px; 
    font-family: "Tangerine", cursive;
}
.overlay p:hover{
    color: #c59d5f;
}
.shop-button {
    padding: 10px 20px;
    border: none;
    background-color:#c59d5f;
    color: #041527;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}
.shop-button:hover {
    background-color: #041527;
    color: #fff;
}
.items:hover .overlay {
    opacity: 1;
}
        /* Chef's Iconic Menus */
.chef-iconic-menu{
    height: fit-content;
    width: 100%;
    padding-bottom: 100px;
}
.chef-iconic-menu .content{
    height: 150px;
    text-align: center;
    width: 100%;
    margin: 100px 0px;

}
.chef-iconic-menu .content h4{
    font-family: "Tangerine", cursive;
    font-size: 35px;
    color: #c59d5f;
}
.chef-iconic-menu .content h2{
    font-size: 30px;
    font-family: "Lato", sans-serif;
    color: #041527;
}
.chef-foods{
    display: flex;
    justify-content: center;
    height: fit-content;
    flex-wrap: wrap;
    row-gap: 20px;
}
.food{
    height: 300px;
    width: 300px;
    display: flex;
    justify-content: center; 
    overflow: hidden;
    transition: height 0.3s,width 0.3s;
    margin: 0px 20px;
    border-radius: 10px;
    flex-direction: column;
}
 .food img{
    height: 100%;
    width: 100%;
    transition: 0.3s;
}
.food:hover img{
    transform:scale(1.1);
    cursor: pointer;
}
.pricing{
    height: 150px;
    text-align: center;
    padding-top: 20px;
    line-height: 30px;
}   
.pricing h3{
    color: #041527;
    font-size: 25px;
    font-family:  "Lato", sans-serif;
}
.pricing:hover h3{
    color: #c59d5f;
}
.pricing p{
    font-size: 16px;
    color: #041527;
    font-family: "Lato", sans-serif; 
}
@media  screen and (max-width:900px) {
    .chef-iconic-menu .content{
        margin-top: 50px;
    }
    .gap{
       margin: 0px 20px;
    }
    .chef-iconic-menu .content{
        margin-bottom: 50px;   
    }
}
/* Fav items for unique dining */
.fav-items{
    height: fit-content;
    width: 100%;
}
.uniq-dining{
    height: fit-content;
    padding: 0px 50px;
    text-align: center;
    height: 1000px;
}
.uniq-dining h1{
    font-family: "Tangerine",cursive;
    color:#c59d5f;
    font-size: 40px;
}
.uniq-dining h4{
    font-family: "Lato", sans-serif;
    font-size: 30px;
    color: #041527;
    margin-bottom: 50px;
}
.uniq-dining button{
    height: 40px;
    width: 120px;
    border: none;
    color: white;
    border-radius: 50px;
    margin: 0px 20px;
    background-color: #c59d5f;
}
.uniq-dining button:active{
    background-color: #041527;
}
.uniq-items{
    height: fit-content;
    display: flex;
    justify-content: space-evenly;  
    margin-top: 100px;
}
.uniq-items .left{
    margin-right: 100px;
    width: 600px;
}
.uniq-items .right{
    width: 600px;
}
.box{
    display: flex;
    justify-content: space-around;
    max-width: 700px;
    height: 150px;
    margin-top: 50px;
}
.box img{
    height: 120px;
    width: 200px;
    border-radius: 50%;
}
.bgimg{
    position: absolute;
    z-index: -10;
    opacity: 0.1;
}
.matter{
    text-align: start;
    padding: 20px 30px 20px 50px;
}
.matter h4{
    font-size: 22px;
    margin-bottom: 10px;
}
.matter p{
    font-size: 16px;
    line-height: 25px;
}

.bgimg img{
    border-radius: 20px;
    width: 650px;
    height: 620px;
}
@media screen and (max-width:900px){
    .uniq-items{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: auto;
    }
    .left, .right{
        margin: 50px 50px 50px 50px;
    }
    .uniq-dining{
        height: fit-content;
    }
}
        /* shack */
.shack{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px; 
    height: fit-content;
    margin: auto;
    margin-bottom: 100px;
}
.left-img{
    background-image: url(assets/shack.webp);
    height: 600px;
    width: 600px;
    background-size: cover;
    border-radius: 10px;
}
.shack-content{
    padding: 10px 50px;
}
.shack-content p{
    font-size: 35px;
    font-family: "Tangerine",cursive;
    color: #c59d5f;
    padding: 0px 0px;
    width: fit-content;
}
.shack-content h2{
    width: fit-content;
    font-size: 30px;
    font-family: "Lato", sans-serif;
    padding: 0px 0px 15px 0px;
}
.shack-content .cost{
    display: flex;
    align-items: center;
    text-align: center;
    width: fit-content;
    padding: 5px 0px 5px 0px;
}
.cost p{
    font-family: "Lato", sans-serif;
    font-size: 25px;
    color: #041527;
    letter-spacing: 2px;
}
.cost s{
    color: grey;
    font-size: 17px;
    padding: 0px 20px;
}
.cost .off{
    background-color: #041527;
    border-radius: 3px;
    color: white;
    font-size: 14px;
    height: 25px;
    width: 35px;
    font-family: "Lato", sans-serif;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 10px;
}
.diff{
    width: fit-content;
}
.dif1{
    display: flex;
    padding-top: 20px;
}
.dif1 p{
    font-family: "Lato", sans-serif;
    font-size: 18px;
    color: #041527;
    font-weight: bolder;
    width: 150px;
}
.dif1 button{
    width: 80px;
    padding: 5px;
    margin: 0px 10px;
}
.dif1 .btn1{
    border: 1px solid #c59d5f;
    background-color: white;
    color: #c59d5f;
    transition: 0.3s;
    font-size: 15px;
}
.btn1:hover {
    background-color: #c59d5f;
    color: white;
    transition: 0.3s ;
}
.dif1 .btn2{
    border: none;
    background-color: rgb(252, 248, 248);
    font-size: 15px;
    width: 100px;
    color: #041527;
    transition: 0.3s 0.2s;

}
.btn2:hover{
    background-color: #c59d5f;
    color: white;
    transition: 0.3s ;
}
.adding{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0px;
    width: 160px;
    height: 40px;
    border: 2px solid #041527;
    box-shadow: 0px 0px 2px 2px #041527;
}
.ve button:hover{
    background-color: #041527;
    color: #fff;
    transition: 0.3s ease-in;
    transition-delay: 0.1s;
}
.adding button{
    width: 50px;
    height: 40px;
    background-color: white;
    border: none;
    font-size: 20px;  
    transition: 0.3s;
}
.adding-cont{
    display: flex;
    flex-wrap: wrap;
    width: 550px;
}
.cart button{
    margin: 25px 0px 0px 20px;
    height: 50px;
    width: 320px;
    color: white;
    background-color: #c59d5f;
    border: none;
    font-size: 17px;
    transition: 0.3s;
}
.cart button:hover{
    background-color: #041527;
    transition: 0.3s;
}
.buynow{
    width: 505px;
    height: 50px;
    border: none;
    background-color: #c59d5f;
    color: white;
    font-size: 17px;
    margin-bottom: 20px;
    transition: 0.3s;
}
.buynow:hover{
    background-color: #041527;
    transition: 0.3s;
}
hr{
    width: 510px;
    background-color: gainsboro;
    margin-bottom: 20px;
}
.share{
    margin-bottom: 20px;
}
.share a{
    text-decoration: none;
    color: black;
    padding-left: 10px;
}
.starts{
    height: 50px;
}
.full-detail{
    padding-top: 20px;  
}@media screen and (max-width:900px){
    .left-img{
        height: 500px;
        width: 450px;
        left: 0px;
        margin-left: 15px;
        background-size: contain;
    }
    .shack-content{
        height: 500px;
        padding: 10px 0px 10px 35px;
    }
    .shack{
        height: fit-content;
        width: fit-content;
        display: flex;  
        gap: 0px; 
        margin: 0px 0px 100px 0px;
    }
    .shack-content p {
        padding-bottom: 2px;
        width: fit-content;
    }
    .shack-content h2{
        font-size: 20px;
    }
    .cost{
        width: fit-content;
    }
    .cost b{
        font-size: 15px;
    }
    .cost s{
        font-size: 12px;
    }
    .cost .off{
        height: 20px;
        width: 30px;
        font-size: 12px;
    }
    .diff{
        width: fit-content;
    }
    .diff p{
        font-size: 15px;
        width: 60px;
        padding: 5px;
    }
    .diff .btn1{
        font-size: 12px;
        margin: 5px;
    }
    .diff .btn2{
        font-size: 12px;
        margin: 5px;
        width: 60px;
    }
    .dif1{
        padding-top: 5px;
    }
    hr{
        width: fit-content;
    }
    .adding-cont{
        width: 385px;
        margin-top: 10px;
    }
    .adding{
        width: 100px;
        height: 30px;
        margin: 8px 15px 5px 0px;
    }
    .ve button{
        width: 30px;
        height: 20px;
    }
    .adding b{
        width: 20px;
    }
    .cart button{
        width: fit-content;
        padding: 0px 47px;
        height: 40px;
        margin: 5px;
    }
    .buynow {
        width: 300px;
        height: 40px;
        margin: 10px 0px;
    }
}
/* video-section */
.video-section{
    position: relative;
    height: 600px;
    margin-bottom: 80px;
}
.bgcolor{
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #041527;
    opacity: 0.3;
} 
video{ 
    position: absolute;
    top: 0px;
    left: 0px;
    height:100%;
    width: 100% ;
    object-fit: cover;
    z-index: -2;
}
.video-section .content{
    position: relative;
    padding-left: 100px;
    padding-top: 50px;
    color: white;
    z-index: 1;
    width: 50%;
    height: 500px;
}
.video-section .content p{
    color: #c59d5f;
    font-family: "Tangerine",cursive;
    font-size: 50px;
}
.video-section .content h2{
    font-family: "Lato", sans-serif;
    font-size: 25px;
    padding: 10px 0px 30px;
}
.video-section .content span{
    line-height: 30px;
}
.video-section .content img{
    height: 40px;
    padding: 20px 20px 0px 0px;
}
@media screen and (max-width:900px) {
    .video-section .content{
        width: fit-content;  
    }
    .video-section .content{
        padding-top: 50px;
        height: 500px;
    }
    
}
/* contactus */
.contact-us{
    position: relative;
    background-image: url(assets/map_01.webp);
    height: 600px;
    object-fit: cover; 
    margin: 20px 0px 0px 0px; 
    display: flex;
}
.contact-us .left-info{
    height: 550px;
    width: 500px;
    background-color: #041527;
    color: white;
    z-index: 10;
    margin: 25px 25px 25px 50px;
    text-align: center;
    border: 1px solid white;
    border-radius: 5px;
}
.right-img img{
    height: 400px;
    width: 700px;
    padding: 100px 20px 20px 150px;
}
.adress{
    margin-top: 50px;
    line-height: 40px;
    font-size: 16px;
}
.mail-wap button{
    margin-top: 30px;
    height: 40px;
    width: 120px;
    font-size: 16px;
    border: none;
    background-color: white;
    border-radius: 50px;
    transition: 0.3s;
}
button:hover{
    background-color: #c59d5f;
    color: white;
    transition: 0.3s ease-in;
}
.mail-wap .wap{
    width: 200px;
    margin-left: 60px;
}
.working{
    margin-top: 30px;
}
.working p{
    font-size: 15px;
    line-height: 25px;
}
.working button{
    margin-top: 50px;
    height: 40px;
    width: 200px;
    font-size: 16px;
    border: none;
    background-color: white;
    border-radius: 50px;
    transition: 0.3s;   
}
.working button:hover{
    background-color: #c59d5f;
    transition: 0.3s;
}
.adress h2{
    padding-bottom: 10px;
    font-family: "Tangerine",cursive;
    font-weight: bolder;
    font-size: 40px;
}   
@media  screen and (max-width:900px) {
    .contact-us .right-img img{
        width: 400px;
        height: 350px;
        padding: 80px 20px 20px 0px;
    }
    .contact-us{
        margin-bottom: 50px;
    }
    .left-info{
        max-height: 450px;
        max-width: 400px;
            
    }
    .adress{
        margin-top: 20px;
    }
    .adress p{
        font-size: 15px;
    }
    .mail-wap button{
        width: 90px;
    }
}
/* footer */
.footer{
    background-color: #041527;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
    color: white;
    
    line-height: 40px;
}
.footer a{   
    color: white;
    display: flex;
    text-decoration: none;
}
a:hover{
    color: #c59d5f;
}
.footer h2{
    margin-bottom: 20px;
}
.div1{
    height: 400px;
    width: 430px;
    color: white;
}
.div1 img{
    margin-bottom: 20px;
}
.div2{
    height: 400px;
    width: 250px;
}
.div3{
    height: 400px;
    width: 250px;
}
.div4{
    height: 400px;
    width: 400px;
}
.div4 input{
    width: 300px;
}.div4 a{
    color: #c59d5f;
}
@media  screen and (max-width:900px) {
    .footer{
        padding: 50px;
    }
    .footer h2{
        font-size: 20px;
    }
    .footer p{
        font-size: 15px;
    }
    .footer a{
        font-size: 15px;
    }
}
