/* @import url('https://fonts.googleapis.com/css2?family=Ubuntu+Condensed&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Kaushan+Script&family=Righteous&display=swap');
html{
    scroll-behavior: smooth;
    font-size: 10px;
}
body{
    padding: 0px;
    margin: 0px;
    overflow-x: hidden;
    background-color: #eee;
}
.color{
    color: #f50d4d;
}
.bg-color{
    background-color:  #f50d4d;
}
.shadow-sm{
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
}
.shadow{
    box-shadow:   0 .5rem 1rem rgba(0,0,0,.15)
}
*{
    box-sizing: border-box;
   
    font-family: 'Jost', sans-serif;
}

.font-family-ex{
    /* font-family: 'Righteous', cursive; */
    font-family: 'Kaushan Script', cursive;
}
.overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(0,0,0,.95),rgba(0,0,0,.2));
    z-index: -1;
}
.container{
    width: 100%;
    max-width: 122.5rem;
    padding: 0 1rem;
    margin:0 auto;

}

section{
    padding: 3.5rem 0;
}
img{
    width: 100%;
    max-width: 100%;
    border-radius: 5px;
    border: 5px solid #fff;
    box-shadow: 2px 0px 8px rgba(0,0,0,0.5);
    filter: saturate(0.65);
    transition: all .5s;
}
img:hover{
    filter: saturate(1);
}
a{
    text-decoration: none;
}
p{
    font-size: 1.8rem;
}
/*header*/
.navScolled{
    background-color: #fff;
    transition: all .5s linear;
    
}
.navScolled .logo{
    filter: grayscale();
} 
.navScolled .nav-link{
    color: #121212;
}
.navScolled .fa-bars{
    color: #121212;
}
.logo img{
    border: none;
    box-shadow: none;
}
@media screen and (max-width: 899px){
header{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index:2;
   
}
.nav{
   
    display: flex;
    align-items: center;
  
   
}
.menu-toggle{
    color: #fff;
    font-size: 2.2rem;
    position: absolute;
   
    transform:  translate(-50%);
    right: 2.5rem;
    cursor: pointer;
    z-index: 1500;
}
.fa-times{
    display: none;
}
.logo{
    filter: drop-shadow(1);
    width: 100px;
    filter: drop-shadow(2px 4px 2px #fff) invert(1);
}
.nav-list{
    list-style: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    min-height: 100vh;
    background-color: #000;
    opacity: .8;
    padding: 4.4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    z-index: 1250;
    transform: translateX(-100%);
    transition:all .5s;
   
}
.nav::before{
    content: " ";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,.8);
    z-index: 1000;
    opacity: 0;
    transform: scale(0);
    transition: all .5s;
}
.open  .fa-times{
    display: block;
}
.open  .fa-bars{
    display: none;
}
.open .nav-list{
    transform:  translateY(0);
   
}
.open .nav::before{
     opacity: 1;
     transform: scale(1);
}
.nav-item{
    position: relative;
}

.nav-item .nav-link{
    display: block;
    color: #f1f1f2;
    text-transform: uppercase;
    font-size: 1.6rem;
    letter-spacing: 2px;
    transition: all .5s;
    
}
.nav-item .nav-link:hover{
    transform: scaleY(1.2);
    color: #fff;
}
}
/*Hero*/
.hero{
    width: 100%;
    height: 100vh;
    background: url('../img/banner3.jpg') center no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
}
.sub-headline {
    font-size: 3.5rem;
    font-weight:500;
    line-height: .4;
    letter-spacing: -.1px;
    margin-bottom: 0px;
    opacity: 0;
    text-shadow: 0px 0px 16px rgba(255,255,255,0.4);
    animation: fadeUp .5s forwards;
    animation-delay: .5s;

}
.first-letter{
    text-transform: uppercase;
    font-weight: bold;
    font-size: 5rem;
   
}
.headline{
    color: #fff;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: .3rem;
    margin-right: -.3rem;
    margin-top: 5px;
    margin-bottom: 0px;
    text-transform: uppercase;
    opacity: 0;
    animation: scale .3s forwards;
    animation-delay: .3s;

}
.separato{
    display: flex;
    justify-content: center;
    align-items: center;
}
.line{
    width: 100%;
    max-width: 9rem;
    height: .25rem;
    background-color: #fff;
    position: relative;
    opacity: 0;
    animation:  grow .9s forwards;
    animation-delay: .5s;
}
.line-left::after,.line-right::after{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: .6rem solid transparent;
    opacity: 0;
    animation:  grow 1s forwards;
    animation-delay: .7s;
   
}
.line-left::after{
    border-left-color: #fff;
    left: 0;
}
.line-right::after{
    border-right-color: #fff;
    right:  0;
}
.astersike{
    font-size: 1.2rem;
    margin: 0 1.2rem;
    position: relative;
    
}
.hedline-discription h5{
    font-size: 1.4rem;
    color: #fff;
    font-weight: 100;
    text-transform: uppercase;
    margin: 1.2rem 0;
    letter-spacing: 3px;
    
}
.btn{
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 25px;
    border-radius: 5px;
    overflow: hidden;
    font-size: 1.7rem;
}
.cta-btn{
    background-color: #fff;
    color: #111;
    font-weight: 500;
   
    position: relative;
    z-index: 0;
    transition: all .5s ;
    margin-top: 10px;
}
.cta-btn::after{
    content: "";
    border-radius: 5px;
    position: absolute;
    background-color: #f50d4d;
    top: 0;
    left: 0;
    width: 110%;
    height: 100%;
    z-index: -1;
    transform: translateX(-100%);
    transition: all .5s ;
}
.cta-btn:hover,.cta-btn:focus{
    color: #fff;
    border: 1px solid #f50d4d;

}
.cta-btn:hover::after,.cta-btn:focus::after{
    transform: translateY(0) scale(1.2);
    
}
/*Discover-our-story*/
.global-headlin{
 text-align: center;
 margin-top: 3.9rem;

}
.discover-our-story .global-headlin{
    margin-top: 6.9rem;
}
.headline-dark{
    color: #111;
    position: relative;
}
.discover-our-story .line-left::after ,.restaurant-description .line-left::after,.Culinary-delight .line-left::after{
    border-left-color: #111;
    left: 0;
}
.discover-our-story .line-right::after,.restaurant-description .line-right::after,.Culinary-delight .line-right::after{
    border-right-color: #111;
    right:  0;
}
.d-background{
    background-color: #111 ;
}
.resturante-desc {
    margin-bottom: 5rem;
}
 p{
    margin-bottom: 3rem;
    font-size: 1.9rem;
    width: 80%;
    margin: 3rem auto;
    line-height: 25px;
    font-weight: 700;
    opacity: .8;
}
.body-btn{
    color: #f50d4d;
    transition: all .5s;
    position: relative;
    margin-bottom: 2rem;
}
.body-btn::after{
    position: absolute;
    content: "";
    bottom: 7px;
    width: 60%;
    left: 20%;
    height: 2px;
    transition: all .5s;
    background-color: #f50d4d;

}
.body-btn:hover,.body-btn:focus{
    color: #111;
   
}
.body-btn:hover::after,.body-btn:focus::after{
 background-color: #111;
}
/*tasteful*/
.tasteful{
    background: url(../img/recpic/1.jpg) no-repeat center fixed;
    background-size: cover;
    position: relative;
    z-index: 1;
}
.between{
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
/*discover-our-menu*/
.image-group{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
}
.discover-our-menu .restaurant-description {
    padding-top: 3rem;
    margin-bottom: 0;
}
/*perfect-blend*/
.perfect-blend{
    background: url(../img/blend/1.jpg) no-repeat center fixed;
    background-size: cover;
    position: relative;
    z-index: 1;
}
/*Footer*/
footer{
    padding: 7.9rem 0 ;
    background-color: #121212;
    color: #fff;
    text-align: center;
    position: relative;
}
.copy-right{
    padding: 2rem 0 ;
    border-top: 2px solid rgba(36, 36, 25,08);
    text-align: center;
    background-color: #121212;
   
}
.copy-right p{
    margin: 0px auto;
    font-size: 1.3rem;
    color: #fff;
}
.back-top{
    width: 7rem;
    height: 7rem;
    background-color: #121212;
    position: absolute;
    top: -3rem;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
}
.back-top i{
    display: block;
    color: #fff;
    font-size: 2rem;
    padding: 2rem;
}

.footer-content h4{
    font-size: 1.9rem;
    text-transform: uppercase;
    font-weight: 100;
    letter-spacing: 3px;
    margin-bottom: 3rem;
} 
.footer-content .astersike {
    margin: 2.4rem 0;
}
.footer-content-about{
    margin-bottom: 5.4rem;

}
.social-icons{
    list-style: none;
    margin-bottom: 5.4rem;
    display: flex;
    justify-content: center;
    padding: 0;
}
.social-icons i{
    font-size: 2rem;
    color: #fff;
    padding: .8rem 2rem;
    opacity: .6;
    transition: all .5s;
}
.social-icons i:focus,.social-icons i:hover{
    color: #f50d4d;
}
.newsletter-form{
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
}
.newsletter-input{
    width: 100%;
    max-width: 25rem;
    padding: 1rem;
    border-radius: .4rem;
    border: 0;
}
.newsletter-btn{
    background-color: transparent;
    border: none;
    color: #121212;
    position: absolute;
    font-size: 1.5rem;
    margin-left: 10rem;
    top: 50%;
    transform: translateY(-50%);
    transition: all .5s ;
}
.newsletter-btn:hover,.newsletter-btn:focus{
    color: #f50d4d;
}
/*media queries*/
@media screen and (min-width: 900px){
    section{
        padding: 7.9rem;
    }
    .menu-toggle{
        display: none;
    }
    .logo{
        display: block;
    width: 100px;
    filter: drop-shadow(2px 4px 2px #fff) invert(1);
    height: 50px;
    }
    
    .nav{
        display: flex;
        justify-content: space-between;
        
    }
    header{
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1030;
      
        padding: 10px 0;
        
    }
    .nav-list{
    list-style: none;    
}
.nav-item{
    display: inline-block;
}
.nav-link{
    font-size: 1.6rem;
    color: #f2f2f2;
    padding: 10px;
}
    
}
/*animation*/ 
@keyframes fadeUp{
    0%{
        transform: translateY(4rem);
    }
    100%{
        opacity: 1;
    }
}
@keyframes scale{
    0%{
        transform: scale(2);
    }
    100%{
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes grow{
    0%{
        width: 0;
    }
    100%{
        opacity: 1;
       width: 100%;
    }
}

