/*Animations*/
.fadeinleft {
    opacity:0;
    transform: translateX(200px);
    transition: all 1.3s ease-out;
}

.fadeinright{
    opacity: 0;
    transform: translateX(-200px);
    transition: all 0.8s ease-out;
}

.fadeindown{
    opacity: 0;
    transform: translateY(-100px);
    transition: all 1.2s ease-out;
}

.fade-in{
    opacity:0;
    transition: all 1.3s ease-in;
}

.active-left,.active,.active-right,.active-down{
    opacity:1;
    transform: translateX(0);
    transform: translateY(0);
}



.fadein{
opacity: 0;
}   
@keyframes MoveUpDown {
    0%, 100% {
      scale: 1;
    }
    50% {
      scale: 1.03;
    }
  }
/* End Animations*/

html,body
{
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden; 
    background-color:#101418 ;
    font-family: 'Josefin Sans';
}

h1,h2,h3,h4,h5,h6,p{
    font-family: 'Josefin Sans';
}

.navbar{
    background-color: #101418!important;
    color: white!important;
}

.navbar li{
    margin: 0px 10px;
}

.navbar li a{
    font-family:'Josefin Sans' ;
    color: white;
    font-size: 18px;
    border-bottom: 2px solid transparent;
}

.navbar li a.active{
    color: #c6a87d!important;
    border-bottom: 2px solid #c6a87d;

}

.navbar li a:hover{
    color: #c6a87d!important;
    border-bottom: 2px solid #c6a87d;

}

.book-btn{
    background-color: #c6a87d;
    color: white!important;
    font-family: 'Josefin Sans';
    padding: 15px 45px;
    font-size: 14px;
    border-radius: 0px;
}

.book-btn:hover{
    background-color: #c6a87d;
    color: white!important;
}


.sec-btn{
    background-color: transparent;
    color: white!important;
    font-family: 'Josefin Sans';
    padding: 15px 45px;
    font-size: 14px;
    border: 1px solid rgb(165, 165, 165);
    border-radius: 0px;
}

.sec-btn:hover{
    background-color: #c6a87d;
    color: white!important;
}

#home-head{
    background: url('../img/head-1.jpeg')rgba(0, 0, 0, 0.65);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    background-blend-mode: multiply;
}

.sub-title{
    font-family: 'Miniver';
    color:#bd9966 ;
    font-size: 22px;
}

.grid-box{
    background-color: black;
   
}

.grid-box-img:hover{
    animation: MoveUpDown 1.6s ease-in-out  infinite;
    position: relative;
}

#restaurant{
    background: url('../img/hero-bg.png');
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    background-position: 50% ;
    z-index: 0;
    background-blend-mode: multiply;
  }
  

  #about-head{
    background: url('../img/new/07bf8c4e-a0e1-4919-8bea-d5fa22491823\ \(1\).jpeg')rgba(0, 0, 0, 0.45);
    background-size: cover;
    height: 45vh;
    background-repeat: no-repeat;
    background-position: center;
    background-blend-mode: multiply;
    display: flex;
    align-items: center;
}

#gallery-head{
    background: url('../img/new/07bf8c4e-a0e1-4919-8bea-d5fa22491823\ \(1\).jpeg')rgba(0, 0, 0, 0.45);
    background-size: cover;
    height: 45vh;
    background-repeat: no-repeat;
    background-position: center;
    background-blend-mode: multiply;
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 897px) {
    .navbar {
      padding: 10px 0px!important;
    }
    .icon-box{
        width: 85%!important;
    }
    #restaurant{
        background-size: 200%!important;
    }
    .sec-btn{
        margin: 15px 0px;
    }

    footer .col-md-3{
        margin: 20px 0px!important;
    }
  }

   .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 0.95)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
  }