*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

header{
    background-color:#F6EBDA ;
    position: relative;
   
}

.nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 100px;
    position: relative;
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: #F6EBDA;
   
}



.logo{
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img{
    width: 50px;
    height: 70px;
}

.logo span{
    color: #FF902A;
    font-size: 30px;
    font-weight: 800;
}

.logo span b{
    color: black;
}

nav{
    display: flex;
    gap: 20px;
}

nav a{
    text-decoration: none;
    font-size: 20px;
    color: black;
    transition: all 0.3s ease;
}

nav a:hover{
    text-decoration: underline;
    text-decoration-color: #FF902A;
    
}

#active{
    color: #FF902A;
}

.nav-right{
    display: flex;
    gap: 20px;
    align-items: center;
}

.searchBtn input{
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid whitesmoke;
    padding-left: 30px;
    color: #FF902A;
}

.searchBtn input:hover{
    border: 2px solid #FF902A;
}

.searchBtn{
    position: relative;
}

.searchBtn i{
    position: absolute;
    top: 10px;
    left: 5px;
    color: #FF902A;
}

.hero{
    background-color: #F6EBDA;
    min-height: calc(100vh - 90px);
    width: 100%;
}

.exc1,.exc2{
    position: absolute;
    z-index: 3;
    width: 400px;
}

.exc1{
    top: 0;
    right: 0;
}

.exc2{
    bottom: 0;
    left: 0;
}

/* Hero Section */
.hero{
    display: flex;;
    justify-content: space-between;
    padding: 100px;
}

.hero-left{
    display: flex;
    flex-direction: column;

}

.hero-left-text{
    color: #2F2105;
}

.hero-left-text h1{
    width: 489px;
    font-size: 49px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-left-text h1 span{
    color: #FF902A;
}

.hero-left-text p{
    width: 393px;
    font-size: 20px;
    color: #7E7D7A;
    margin-bottom: 32px;
}

.hero-left-btn{
    display: flex;
    justify-content: start;
    gap: 30px;
}

.orderBtn{
    position: relative;
}

.orderBtn button{
    padding: 13px 32px;
    padding-right: 64px;
    background-color: #2F2105;
    border: none;
    border-radius: 30px;
    color: white;
}

.orderBtn i{
    color: white;
}

.circle{
    position: absolute;
    right: 20px;
    top: 8px;
    width: 28px;
    height: 28px;
    background-color: #FF902A;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.hero-left-btn p{
    padding-top: 10px;
    font-size: 12px;
    color: #FF902A;
}

.hero-right{
    z-index: 1;
   background-color: #2F2105;
   width: 416px;
   height: 416px;
   border-radius: 50%;
   display: flex;
   justify-content: center;
   align-items: center;
   background-image: url(../public/image/Exclude.png);
   background-repeat: no-repeat;
   background-position: center;
   margin-top: -50px;
   border: none;
   position: relative;
}

.hero-right-text1,.hero-right-text2,.hero-right-text3{
    
    position: absolute;
    color: black;
    background-color: white;
    padding: 14px 27px;
    border-radius: 30px;
    border: 5px solid #FF902A ;
}


.hero-right-text1{
    top: 0;
    left: 0;
}

.hero-right-text2{
    right: -2rem;
    top: 5rem;
}

.hero-right-text3{
    bottom: 0;
    left: 2rem;
}

/* Popular Section */
.popular{
    width: 1268px;
    height: 558px;
    position: absolute;
    bottom: -400px;
    left: 7%;
}

.popular h1{
    padding: 20px 0px 0px 40px;
}

.popular-container{
    margin-top: 50px;
    padding: 0px 60px;
    background-color: #F9D9AA;
    max-width: 1268px;
    height: 367px;
    border-radius: 100px;
    position: relative;
}

.popular-card1{
    padding: 24px 18px;
    background-color: white;
    max-width: 343px;
    max-height: 373px;
    border-radius: 10px;
}

.popular-card-img{
    position: relative;
}

.popular-card-img p{
    position: absolute;
    top: 10px;
    left: 5px;
    background-color: white;
    border-radius: 300px;
    padding: 10px;
    font-weight: bolder;
    border: 5px solid #F9D9AA;
}

.popular-card-img p i{
    color: #FF902A;
}

.popular-card-text,.popular-card-cart{
    margin: 10px ;
    display: flex;
    justify-content: space-between;
}

.popular-card-text h3{
    font-size:24px ;
    font-weight: 600;
}

.popular-card-text h4{
    font-size: 24px;
    font-weight: bold;
    color: #2F2105;
}

.popular-card-cart-left{
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.popular-card-cart-left button{
    padding: 5px 20px;
    border-radius: 10px;
    color: #FF902A;
    border: 1px solid #FF902A;
    background-color: white;
    transition: all 0.3s linear;
}

.popular-card-cart-left button:hover{
    background-color: #FF902A;
    color: white;
    border: 1px solid #F9D9AA;
}

.popular-card-cart-right{
    background-color: #FF902A;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
}
.popular-card-cart-right i{
    color: white;
}

.popular-cards{
    display: flex;
    justify-content: center;
    gap: 60px;
    position: absolute;
   bottom: 10%;

}

.delvery-section{
    margin:400px 130px 100px 130px;
}

.delvery-section h2{
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 2rem;
}

.delvery-section h2 span{
    text-decoration: underline;
    text-decoration-color:#FF902A ;
}

.main-container{
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 0 100px;
}

.delivery-card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.delivery-card-body{
    text-align: center;
}

.delivery-card-body h3{
    font-size: 24px;
    color: #2F2105;
    font-weight: 600;
    margin-bottom: 10px;
}

.delivery-card-img{
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.tap{
    position: absolute;
    bottom: -2rem;
    right:  -1rem;
}

/* About Section */
.about{
    padding: 80px 200px;
    background-color: #F6EBDA;
    background-image: url('../public/image/About_US_Exclude.png');
    background-repeat: no-repeat;
    background-size: contain;
    height: 500px;
}

.about-left{
    position: relative;
}

.about-img{
    position: absolute;
    top: -10rem;
    left: 5rem;
}

.about-right{
    max-width: 500px;
    margin-top: 25px;
   position: absolute;
   left: 50rem;
   display: flex;
   flex-direction: column;
   gap: 20px;
}

.about-right p{
    color: #7E7D7A;
}

.about-right button{
    padding: 10px 20px;
    border-radius: 30px;
    background-color: #2F2105;
    color: #FF902A;
    border: none;
    width: 30%;
    transition: 0.5s all ease;
    cursor: pointer;
}

.about-right button:hover{
    background-color: #FF902A;
    color: white;
}

.about-right h1{
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
}

.about-right h1 span{
    text-decoration: underline;
    text-decoration-color: #FF902A;
    text-underline-offset: 5px;
}

.about-right h3{
    font-size: 24px;
    font-weight: 400px;
}

.menu{
    margin: 100px 150px;
}   

.menu h1 span{
      text-decoration: underline;
    text-decoration-color: #FF902A;
    text-underline-offset: 7px;
}

.menu-container{
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(350px,1fr));
    gap: 2rem;
    margin-top: 30px;
}

.menu-card{
    padding: 24px 18px;
    background-color: white;
    max-width: 343px;
    max-height: 373px;
    border-radius: 10px;
    box-shadow:  0 0 10px 6px rgba(0, 0, 0, 0.195);
} 

.popular-card-cart-left p{
    font-size: 18px;
    font-weight: 600px;
    color: #7E7D7A;
}


.review{
    width: 950px;
    height: 500px;
    background-color: #F6EBDA;
    border-radius: 0 20px 20px 0;
    padding: 200px 100px;
    position: relative;
    
}

.review-title{
   display: flex;
   flex-direction: column;
   gap: 20px;
}

.review-title h1{
    font-size: 32px;
    font-weight: 800;
}

.review-title p{
    color: #7E7D7A;
    font-size: 20px;
}

.review-photo-container{
    position: absolute;
    top: 30%;
    left: 50%;
    display: flex;
    gap: 10rem;
}

.review-card{
    position: relative;
}

.review-card-text{
    position: absolute;
    bottom: 1rem;
    left: 2rem;
    background-color: #FFCB7C;
    width: 250px;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0px 0px 0px 5px #FFD390;
}