*{
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    box-sizing: border-box;
}

#nav_bar{
    background-color: white;
    height: 90px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    z-index: 1000;
    justify-content: center;
    align-items: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}
.nav_ul{
    gap: 40px;
    list-style: none;
    display: flex;
    font-size: 17px;
    font-weight: bold;    
    position: relative;
}

.nav_ul li a{
    text-decoration: none;
    color: gray;
}
.nav_home a:hover,.nav_chefs a:hover,.nav_gallary a:hover,.nav_contact a:hover
{
    color: black;
}
.nav_home::after{
    content: "";
    position: absolute;
    background-color: red;
    transform: scale(0);
    transform-origin:left ;
    width: 48px;
    left: 0;
    height: 3px;
    bottom: -3px;
}

.nav_home:hover::after{
    color: black;
    transform: scale(1);
    /* text-decoration: underline; */
    transition: 0.6s;
}
.nav_chefs::after{
    content: "";
    position: absolute;
    background-color: red;
    transform: scale(0);
    transform-origin:left ;
    width: 44px;
    left: 89px;
    height: 3px;
    bottom: -3px;
}
.nav_chefs:hover::after{
    color: black;
    transform: scale(1);
    /* text-decoration: underline; */
    transition: 0.6s;
}
.nav_gallary::after{
    content: "";
    position: absolute;
    background-color: red;
    transform: scale(0);
    transform-origin:left ;
    width: 56.5px;
    left: 23.5vh;
    height: 3px;
    bottom: -3px;
}
.nav_gallary:hover::after{
    color: black;
    transform: scale(1);
    /* text-decoration: underline; */
    transition: 0.6s;
}
.nav_contact::after{
    content: "";
    position: absolute;
    background-color: red;
    transform: scale(0);
    transform-origin:left ;
    width: 61.5px;
    left: 37vh;
    height: 3px;
    bottom: -3px;
}
.nav_contact:hover::after{
    color: black;
    transform: scale(1);
    /* text-decoration: underline; */
    transition: 0.6s;
}
.logo{
    position: relative;
    font-weight: bold;
    font-size: 30px;
    position: absolute;
    left: 130px;
    top: 20px;
    color: black;
    list-style: none;
}
.logo span{
    color: red;
}
.home {
    display: flex;
    margin-top: 90px;
    padding-top: 20px;
    height: 84.9vh;
    background-color:#EEEEEE;
    justify-content: space-evenly;
}
.home_caption{
    width: 525px;
    height: 310px;
    position: relative;
    transform: translateY(50%);
}
.home_caption h2{
    font-family: Amatic SC;
    color: #37373F;
    font-size: 70px;
    font-weight: 700;
    padding-bottom: 20px;
}
.home_caption p {
    font-size: 16px;
    color: #4F4F5A;
    padding-bottom: 20px;
}
.home_caption .links{
    width: 525px;
    height: 55px;
    background-color: #EEEEEE;
    display: flex;
    gap: 40px;
}
.home_caption .links .a1{
    text-decoration: none;
    width: 138px;
    height: 43px;
    background-color: red;
    color: white;
    border-radius: 0px 25px 25px 20px;
}
.home_caption .links .a1 span{
    position: relative;
    top: 10px;
    left: 20px;
}
.home_caption .links .a2 {
    text-decoration: none;
    width: 138px;
    height: 43px;
}
.home_caption .links .a2 .icon{
    font-size: 30px;
    color: black;
}
.home_caption .links .a2 .text{
    position: relative;
    left: 10px;
    bottom: 5px;
    color: black;
}
.hero_img img {
    position: relative;
    top: 40px;
    width: 525px;
    height: 525px;
}
.hero_img img:hover{
    animation: vibrate 0.3s infinite;
}
@keyframes vibrate {
        
    0% { transform: rotate(0deg); }
    20% { transform: rotate(-2deg); }
    40% { transform: rotate(2deg); }
    60% { transform: rotate(-2deg); }
    80% { transform:rotate(2deg); }
    100% { transform:rotate(2deg); }
}

.chefs{
    height: 130vh;
    max-width: 100%;
    overflow-x: hidden;
    /* scrollbar-width: 0; */
}
.chefs_caption{
    display: flex;
    align-items: center;
    flex-flow: column nowrap ;
    margin-bottom: 50px;
    margin-top: 70px;
}
.chefs_caption p {
    font-size: 50px;
    font-family: Amatic SC;
}
.chefs_caption h2{
    color: #7F7F90;
    font-size: 14px;
}
.chefs_caption span{
    color: red;
    font-family: Amatic SC;
}
.chefs_pics{
    display: flex;
    justify-content: center;
    gap: 35px;
}
.pic1 , .pic2 , .pic3 {
    width: 445px;
    height: 600px;
    box-shadow: #0000000b 3px 3px 3px 3px;
    border-radius: 10px;
}
.pic1:hover , .pic2:hover , .pic3:hover{
    transform: scale(1.1);
    transition: 0.4s;
}
.icons1 , .icons2 ,.icons3{
    display: flex;
    flex-flow: column;
    position: relative;
    transform: translateY(-70vh);
    left: 60vh;
    gap: 20px;
    opacity: 0;
    overflow: hidden;
    background-color: rgba(220, 217, 217, 0.51);
    padding: 10px;
    width: fit-content;
    border-radius: 5px;
}
.icons1 a:hover, .icons2 a:hover,.icons3 a:hover{
    color: black;
    transition: .3s;
}
.icons1 a , .icons2 a ,.icons3 a {
    color: rgb(162, 160, 160);
}
.pic1:hover .icons1 , .pic2:hover .icons2 ,.pic3:hover .icons3 {
    transition: 0.6s;
    position: relative;
    left: 55vh;
    opacity: 1;
}
.pic1_caption , .pic2_caption,.pic3_caption {
    text-align: center;
    padding: 20px;
    position: relative;
    bottom: 320px;
}

.pic1_caption p,.pic2_caption p,.pic3_caption p{
    padding-top: 5px;
    color: #7F7F90;
}
.pic1_caption h3,.pic2_caption h3,.pic3_caption h3{
    padding-bottom: 7px;
}
.wave{
    position: relative;
    bottom: 100px;
    width: 100%;
    }
.pic1_caption span,.pic2_caption span,.pic3_caption span{
    color: #7F7F90;
}
.pic1,.pic2,.pic3, img{
    width: 445px;
    border-radius: 10px;
}
.gallary{
    height: 1550px;
    background-color:#EEEEEE;
    padding-left: 70px;
    padding-right: 70px;
}
.gallary_caption{
    padding-top: 50px;
    overflow-x: hidden;
    display: flex;
    flex-flow: column;
    align-items: center;
    padding-bottom: 40px;
}
.gallary_caption h2{
    color: #7F7F90;
    font-size: 14px;
    font-weight: 400;
}
.gallary_caption p{
    color: black;
    font-family: Amatic SC;
    font-size: 50px;
}
.gallary_caption span{
    color: red;
    font-family: Amatic SC;
}
.gallary_pics{
    display: flex;
    justify-content: space-evenly;
}
.first_column , .second_column , .third_column{
    display: flex;
    flex-flow: column;
    position: relative;
    gap: 30px;
}
.meal-1 , .meal-2 , .meal-4 , .meal-3 , .meal-5 , .meal-6 , .meal-7{
    position: relative;
}
.meal1_caption{
    color: white;
    position: absolute;
    top: 18rem;
    text-align: center;
    transform: scale(0);
    display: flex;
    flex-flow: column;
    justify-content: center;
    width: 445px;
    height: 100px;
    transition: 0.4s ease;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
}
.meal-1:hover .meal1_caption{
    position: absolute;
    top: 0;
    transform: scale(1);
    
    height: 296px;
}
.meal4_caption{
    color: white;
    position: absolute;
    top: 22rem ;
    text-align: center;
    display: flex;
    flex-flow: column;
    justify-content: center;
    width: 445px;
    height: 600px;
    background-color:rgba(0, 0, 0, 0.5) ;
    transform: scale(0);
    transition: 0.4s ease;
    
}
.meal-4:hover .meal4_caption{
    position: absolute;
    top: 0;
    height: 667px;
    transform:scale(1);
}

.meal2_caption{
    color: white;
    position: absolute;
    top: 29rem ;
    text-align: center;
    display: flex;
    flex-flow: column;
    justify-content: center;
    width: 445px;
    height: 600px;
    background-color:rgba(0, 0, 0, 0.5) ;
    transform: scale(0);
    transition: 0.4s ease;
}
.meal-2:hover .meal2_caption{
    position: absolute;
    top: 0;
    height: 742px;
    transform:scale(1);
}
.meal7_caption{
    color: white;
    position: absolute;
    top: 20rem ;
    text-align: center;
    display: flex;
    flex-flow: column;
    justify-content: center;
    width: 445px;
    height: 300px;
    background-color:rgba(0, 0, 0, 0.5) ;
    transform: scale(0);
    transition: 0.4s ease;
}
.meal-7:hover .meal7_caption{
    position: absolute;
    top: 0;
    height: 445px;
    transform:scale(1);
} 
.meal3_caption{
    color: white;
    position: absolute;
    top: 18rem;
    text-align: center;
    transform: scale(0);
    display: flex;
    flex-flow: column;
    justify-content: center;
    width: 445px;
    height: 100px;
    transition: 0.4s ease;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
}
.meal-3:hover .meal3_caption{
    position: absolute;
    top: 0;
    transform: scale(1);
    
    height: 296px;
}
.meal5_caption{
    color: white;
    position: absolute;
    top: 18rem;
    text-align: center;
    transform: scale(0);
    display: flex;
    flex-flow: column;
    justify-content: center;
    width: 445px;
    height: 100px;
    transition: 0.4s ease;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
}
.meal-5:hover .meal5_caption{
    position: absolute;
    top: 0;
    transform: scale(1);
    
    height: 296px;
}
.meal6_caption{
    color: white;
    position: absolute;
    top: 20rem ;
    text-align: center;
    display: flex;
    flex-flow: column;
    justify-content: center;
    width: 445px;
    height: 300px;
    background-color:rgba(0, 0, 0, 0.5) ;
    transform: scale(0);
    transition: 0.4s ease;
    padding: 10px;
}
.meal-6:hover .meal6_caption{
    position: absolute;
    top: 0;
    height: 445px;
    transform:scale(1);
} 
.gallary_pics img {
    border: white 4px solid;
    border-radius: 0;
}
.contact{
    height: 1220px;
}
.contact_caption{
    padding-top:60px ;
    display: flex;
    flex-flow: column;
    align-items: center;
}
.contact_caption h2{
    font-size: 14px;
    color: #7F7F90;
    font-weight: 400;
}
.contact_caption p {
    font-size: 50px;
    font-family: Amatic SC;
}
.contact_caption span{
    font-size: 50px;
    font-family: Amatic SC;
    color: red;
}
.contact{
    display: flex;
    flex-flow: column;
    align-items: center;
    height: 1310px;
}
 .details{
    width: 1310px;
    height: 215px;
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.map iframe{
    width: 1310px;
    height: 350px;
    padding-top: 30px;
    margin-bottom: 30px;
}

.right , .left{
    display: flex;
    flex-flow: column;
    gap: 20px;
}
.our_address , .call_us , .oppening_hours , .email_us{
    display: flex;
    align-items: center;
    height: 100px;
    width: 645px;
    background-color:#EEEEEE;
    padding: 20px;
    gap: 20px;
}
.details i {
    font-size: 16px;
    width: 50px;
    height: 50px;
    background-color: red;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: white;
}
.email_caption a , .call_caption a{
    color: black;
    text-decoration: none;
}
.form{
    height: 415px;
    width: 1310px;
    background-color: white;
    display: flex;
    padding-top: 20px;
    /* align-items: center; */
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2); 
}
.form form{
    display: flex;
    flex-flow: column;
    gap: 20px;
    align-items: center;
}
.form_first{
    display: flex;
    gap: 20px;
}
.form_first input{
    width: 627px;
    height: 53px;
    padding: 20px;
}
.form_second input{
    width: 1275px;
    height: 54px;
    padding: 20px;
}
.form_third input{
    width: 1275px;
    height: 150px;
    padding: 20px;
}
.button{
    width: 180px;
    height: 50px;
    background-color: red;
    display: flex;
    justify-content: center;
    border-radius: 50px;
}
.button button{
    color: white;
    border: 0;
    background-color: transparent;
    cursor: pointer;
}
.footer{
    height: 360px;
    background-color: black;
    display: flex;
    justify-content: space-evenly;
    padding-left: 70px;
    padding-right: 70px;
}
.about{
    margin-top: 40px;
    color: white;
    width: 317px;
    height:282px ;
    display: flex;
    flex-flow: column;
    position: relative;
}
.about_top{
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}
.about_top img {
    width: 40px;
    height: 40px;
}
.about p {
    margin-bottom: 20px;
}
.about_mid{
    border-bottom: 2px solid #7F7F90;
    display: flex;
    justify-content: center;
}
.about h3{
    padding-bottom: 20px;
}

.about_icons{
    display: flex;
    justify-content: space-around;
    list-style: none;
    padding-top:20px ;
    font-size: 24px;
}
.about_icons li a {
    text-decoration: none;
    color: white;
}
.subscription{
    margin-top: 40px;
    width: 635px;
    height: 282px;
}
.sub_top{
    height: 136px;
    width: 635px;
    color: white;
}
.sub_top h3{
    padding-bottom: 20px;
}
.sub_top p {
    padding-bottom: 20px;
}
.input input{
    width: 520px;
    height: 40px;
    padding: 10px;
}
.input button{
    background-color: red;
    color: white;
    border: 0px;
    width: 110px;
    height: 40px;
    font-size: 15px;
    font-weight: 400;
}
.sub_bottom{
    margin-top: 30px;
    color: white;
}
.quick_links{
    display: flex;
    gap: 35vh;
}
.ql_left ul {
    padding-top: 20px;
    list-style: none;
    color: white;
    display: flex;
    flex-flow: column;
    gap: 10px;
}
.ql_left ul li a{
    text-decoration: none;
    padding: 10px;
    color: white;
}
.ql_right ul {
    padding-top: 20px;
    list-style: none;
    color: white;
    display: flex;
    flex-flow: column;
    gap: 10px;
}
.ql_right ul li a{
    text-decoration: none;
    padding: 10px;
    color: white;
}
.contact_details{
    margin-top: 40px;
    color: white;
    width: 327px;
    height: 282px;
}
.c_details ul{
    list-style: none;
}
.c_details ul li {
    margin: 15px;
}
.c_details ul li a{
    padding-left: 15px;
    text-decoration: none;
    color: white;
}
.c_details ul li span{
    padding-left: 15px;
    text-decoration: none;
    color: white;
} 
.c_details ul li i {
    font-size: 22px;
    font-weight: 900;
    color: red;
    cursor: pointer;
}