
html,body
{
width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
}
nav.navbar {
  width: 100%;
  
  background-color: white;
  transition:all .5s ease-in-out;
  }
.navbar.scroll {
  background-color: #000000 !important; 
  transition: background-color 0.2s ease-in-out;
box-shadow:  3px 10px rgb(0, 0, 0, 0.15);
}
.navbar li a {
  margin: 0 20px;
  font-size: 20px;
color: black;
font-family: 'Roboto Serif', serif;

}
h1{
  letter-spacing: 10px;
  font-family: 'Tangerine', cursive;
  color: rgb(204, 140, 24)!important;

}
h5{
  font-family: 'Josefin Slab', serif;
  color: #000000!important;
}
h4{
  font-family: 'Barlow Condensed', sans-serif;
}
p{
  font-family: 'Josefin Slab', serif;
  font-size: 21px;
  color:
#4D4D4D;
}

.navbar li a:hover {
  color: #a58334;
}
 .navbar li a.active {
  border-bottom: 1px solid #000000;
;
color:  rgb(204, 140, 24);
}
.nav-item {
  position: relative;
  text-align: center;
}
.flag{
  margin-left: 120px;
}
  /* navbar end*/

.carousel-1 {
  background: rgba(0, 0, 0, 0.493) url('/images/new/a (7).JPG');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: multiply;
  height: 900px;
}
.carousel-2{
    background:rgba(0, 0, 0, 0.493) url('../images/new/a (15).JPG');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    height: 900px;
}
.carousel-3{
    background:rgba(0, 0, 0, 0.493) url('../images/new/a (13).JPG');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    height: 900px;
}
.carousel-text{
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px; 
  padding:20% 0;
  text-align: center;
  color: white;
}
.header-text{
  margin-bottom: 300px;
    display: flex;
    justify-content: start;
    font-family: 'Tangerine', cursive!important;
    color: white;
}
.big-text{
  font-family: 'Tangerine', cursive;
  font-size: 70px;
  color: black;
  width: 100%;
}
.carousel-control-prev-icon, .carousel-control-next-icon { 
  color: #BE9E46;
 }

.nav-button {
  appearance: none;
  background-color: #BE9E46;
  border: none;
  box-sizing: border-box;
  color: black;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  text-transform: uppercase;
  max-width: 200px;
  padding: 10px 24px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: 100%;
  will-change: transform;
}
.nav-button:disabled {
  pointer-events: none;
}
.nav-button:hover {
  background-color:transparent;
  border-bottom:2px solid #BE9E46 ;
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-5px);
  color: black;
}
.nav-button:active {
  box-shadow: none;
  transform: translateY(0);
}
nav .navbar-toggler{
  background-color: #BE9E46;
}
#home-about{
margin-top: 100px;
margin-bottom: 100px;

}
#facilities{

  background:  url('../images/parallax-bkg1.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  background-attachment: fixed;
}
@media (max-width: 576px) {
  .flag{
    margin:0;
  }
.platter, .platter1, .platter2{
width: 100%;
padding: 0!important;
}
.menu-2cols {
    display: grid;
    grid-template-columns: repeat(1,1fr)!important;
 }
 .carousel-text{
margin-bottom: 200px;
  font-size: 50px; 
  text-align: center;
}
.lines{
  width: 100px;
}
.review-section{
  margin-bottom: 60px;
}
.con {

  margin: 34px 60px 37px 35px!important;
  
}
.hours{
  padding: 0!important;
  padding-top: 40px!important;
}
}
 /**Styling scrollable elements*/
 .js-scroll {
  opacity: 0;
  transition: opacity 500ms;
}
.js-scroll.scrolled {
  opacity: 1;
}
.scrolled.fade-in {
  animation: fade-in 2s ease-in-out both;
}
.scrolled.fade-in-bottom {
  animation: fade-in-bottom 1s ease-in-out both;
}
.scrolled.fade-in-top {
  animation: fade-in-top 1s ease-in-out both;
}
.scrolled.slide-left {
  animation: slide-in-left 2s ease-in-out both;
}

.scrolled.slide-right {
  animation: slide-in-right 2s ease-in-out both;
}
@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(150px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-500px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(100px);
    transform: translateX(500px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
 /**Styling scrollable elements*/
/* menu section */

#menu{
width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
}
.food-menu{
  margin:0; font-size:0;
  list-style:none;
  margin-top:32px;
}
  .food-menu li{
    font-size:16px;
  margin-bottom:24px;
  padding-bottom:24px;
  border-bottom:1px dotted #999999;
}
  .food-menu li h4,.food-menu-v2 li h4{
    font-size: 16px;
  padding-right: 80px;
  position: relative;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
  .menu-price {
    position: absolute;
      top: 0;
      right: 0;
  }

  
  .menu-2cols {
  display: grid;
      grid-template-columns: repeat(2,1fr);
      grid-column-gap: 54px;
  }

  .food-menu li{
    -webkit-column-break-inside: avoid;
            page-break-inside: avoid;
                 break-inside: avoid;
                }
  

  
  .our-menu{padding:0;
  margin:0;
  margin-top:24px;}
  .our-menu li{list-style:none;}
  .our-menu li:last-child{margin-bottom:0px;}
  .menu-title-section{font-size: 28px;
  font-weight:700;
  letter-spacing: .05em;
  padding: 24px;
  text-transform:uppercase;
  cursor:pointer;
  }
  .menu-title-section:before {
      content: "\f067";
      display: inline-block;
      font-family: "Font Awesome 5 Free";
    font-weight:700;
    font-size:14px;
      margin-right: 16px;
    vertical-align: middle;
  }
  .menu-section{
    padding:0 24px 24px 24px;
  }
  
/*dishes carousel section*/

#dishes{
background-color: #f0fbff;
padding-bottom: 0px;
}

.decoration-img{
  width: 600px;
  display: flex;
   justify-content: start;
  z-index: 0;
  margin-top: -200px;
  padding: 0;
  }
  .decoration-img2{
    width: 600px;
    display: flex;
     justify-content: end;
    z-index: 0;
    margin-top: -450px;
margin-left: 70%;
    }
 .item {
  position: relative;
  margin-top: 100px;
  margin-bottom: 120px;
  width: 400px;
  height: 400px;
}
.dish-img{
  height: 600px;
  border: 2px solid #CC8C18;

}
 .item:hover img {
  -webkit-filter: none;
  filter: none;
  -webkit-transform: scale(1.09, 1.09);
  transform: scale(1.09, 1.09);
  -webkit-filter: brightness(75%);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}
 .item:hover .con {
  bottom: 0; 
}
.con {
  padding: 10px;
  background-color: #f8f5f0 !important;
  border-radius: 0;
  position: absolute;
  margin: 34px 60px 37px 63px;
  bottom: -150px;
  transition: all 0.3s ease-in-out;
  width: 300px;
  text-align: center;
  outline: 1px solid #CEB797;
  outline-offset: -10px;
  font-family: 'Montez', cursive;
font-size: 35px;
color: black;
}
 /*opening hours*/
    #op-hours{
      background: url('../images/image.jpg');
      background-attachment: fixed;
      background-size: cover;
      background-repeat: no-repeat;
      height: 500px;
    }
    .rest-box-1{
      background-color: rgba(85, 85, 85, 0.6);
      text-align: center;
      color: black;
      padding: 60px 0;
      width: 500px;
      margin-top: 20px;
      outline: 1px solid white;
      outline-offset: -30px;
    }

  .footer{
    background-color: #e7f2fd;
  }
  #menu-header{
    background: url('/images/menu.png ') ;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
padding-top: 50px;
padding-bottom: 50px;
  }

#menu-box{

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;

}


  .platter {
    background-color: #F0FBFF;
    position: relative;
    z-index: 1;
    padding: 50px;
  }
  
  .platter1 {
    background-color: white;
    position: relative;
    z-index: 1;
    padding: 50px;
  }
  .platter2 {
    background-color: #F0FBFF;
    position: relative;
    z-index: 1;
    padding: 50px;
  }
  #about-header{
    background: url('/images/contact.png') ;
    background-repeat: no-repeat;
    background-size: cover;
    background-position:top;
    height: 800px;
   }
  /* gallery page*/
  #gallery-header{
    background: rgba(0, 0, 0, 0.548) url('/images/new/a (15).JPG') ;
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;
  background-blend-mode: multiply;
    height: 800px;
   }

 .gall-img {
  width: 100%;
  height: 40vh;
  display: block;
  margin: 0 auto;
  border-radius:5px;
  object-fit:cover;
  transition: transform 0.3s;
  transition-timing-function: cubic-bezier(0.4, 1.55, 0.74, 0.55);
}
.zoom :hover img {
  transform: scale(1.05);
}
  /* contact page*/
#contact-header{
background: url('/images/sss.jpg') ;
background-repeat: no-repeat;
background-size: cover;
background-position:center;
height: 800px;
 }

 /*contact p0age*/
 #contact-body{
margin-top: 60px;

}
.contact-items{
margin-bottom: 40px;
padding: 40px;
}

/* testimonials section */
 .testimonials-text {
  font-family: 'Cormorant Garamond', serif;
  box-shadow: 0 5px 10px rgb(0 0 0 / 0.2);
  padding: 20px;
  }
.rest-box-2{
  padding: 60px 0;
  width: 50px;
  height: 50px;
  margin-left: -10px;

}