@import url("https://fonts.googleapis.com/css?family=Cabin|Herr+Von+Muellerhoff|Source+Sans+Pro:400,900,1000&display=swap");

@font-face {
  src: url(font/ready.ttf);

  font-family: main;
}

/* src: url(font/loaf.ttf); */

@font-face {
  /* src: url(font/loaf.ttf); */

  src: url(font/Gotham-UltraItalic.ttf);

  font-family: secondary;
}

@font-face {
  src: url(font/HelveticaNeueLTStd-MdCn.otf);

  font-family: nav;
}

/*Globle Styles*/

*,
*::before,
*::after {
  margin: 0;

  padding: 0;

  box-sizing: border-box;
}

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background-color: var(--main-font-color-dark);
}

*::-webkit-scrollbar-thumb {
  background-color: white;

  border-radius: 50px;
}

:root {
  --main-font: "Source Sans Pro", sans-serif;

  --secondary-font: "Herr Von Muellerhoff", cursive;

  --body-font: "Cabin", Sans-serif;

  --main-font-color-dark: #252525;

  --secondary-font-color: #f39c1a;

  --body-font-color: #515151;
}

body {
  scroll-behavior: smooth;

  overflow-x: hidden;
}

html {
  font-family: var(--body-font);

  font-size: 10px;

  color: var(--body-font-color);

  scroll-behavior: smooth;
}

section {
  padding: 3.9rem 0;

  overflow: hidden;
}

img {
  width: 100%;

  max-width: 100%;

  overflow: hidden;
}

/*a {*/
/*  color: #fff;*/
/*}*/


   a:visited{
            text-decoration:none;
             color:#ffff;
        }

p {
  font-size: 1.5rem;
}

.container {
  width: 100%;

  max-width: 122.5rem;

  margin: 0 auto;

  padding: 0 2.4rem;
}

/*Header*/

header {
  width: 100%;

  position: fixed;

  border-radius: 0px;

  top: 0;

  left: 0;

  z-index: 1;

  background-color: #121212;

  transition: 0.4s;

  /* box-shadow: 0 3px 08px rgb(51, 51, 51); */

  /*background-image: linear-gradient(to bottom, rgba(0,0,0,.2),transparent);*/
}

.nav {
  height: 5.8rem;

  display: flex;

  align-items: center;

  justify-content: center;
}

.menu-toggle {
  color: #fff;

  font-size: 2.2rem;

  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  right: 2.5rem;

  cursor: pointer;

  z-index: 1500;
}

.fa-times {
  display: none;
}

.nav-list {
  list-style: none;

  position: fixed;

  top: 0;

  left: 0;

  width: 80%;

  height: 100vh;

  background-color: #fff;

  padding: 4.4rem;

  display: flex;

  flex-direction: column;

  justify-content: space-around;

  z-index: 1250;

  transform: translateX(-100%);

  transition: transform 0.5s;
}

.nav::before {
  content: "";

  position: fixed;

  top: 0;

  left: 0;

  width: 100vw;

  height: 100vh;

  background-color: rgba(0, 0, 0, 0.8);

  z-index: 1000;

  opacity: 0;

  transform: scale(0);

  transition: opacity 0.5s;
}

.open .fa-times {
  display: block;
}

.open .fa-bars {
  display: none;
}

.open .nav-list {
  transform: translateX(0);
}

.open .nav::before {
  opacity: 1;

  transform: scale(1);
}

/*.nav-item{

    border-bottom: 2px solid rgba(255,255,255, .3);

    border-bottom-right-radius: 50px;

}*/

.nav-link {
  display: block;

  color: var(--main-font-color-dark);

  font-family: nav;

  text-transform: uppercase;

  font-size: 2.5rem;

  letter-spacing: 2px;

  margin-right: -2px;

  transition: color.5s;
}

.nav-link:hover {
  color: var(--secondary-font-color);
}

/*Hero*/

.hero {
  width: 100%;

  height: 100vh;

  background: url("image/home/01.jpg") center no-repeat;

  background-size: cover;

  background-attachment: fixed;

  /*animation: slide 15s infinite;*/

  overflow: hidden;

  display: flex;

  /* align-items: bottom; */

  padding-top: 80vh;

  text-align: center;
}

.sub-headline {
  font-size: 5rem;

  font-family: main;

  color: var(--secondary-font-color);

  font-weight: 100;

  line-height: 0.4;

  letter-spacing: 2px;

  opacity: 0;

  animation: fadeUp 0.5s forwards;

  animation-delay: 0.5s;
}

.first-letter {
  text-transform: uppercase;

  font-size: 7rem;
}

.headline {
  color: rgb(255, 255, 255);

  text-shadow: 2px 2px 4px #000000;

  font-size: 2.5rem;

  font-family: secondary;

  text-transform: uppercase;

  font-weight: 900;

  letter-spacing: 0.5rem;

  margin-right: -0.5rem;

  /* margin-top: 52rem; */

  animation: scale 0.5s forwards;
}

.separator {
  display: flex;

  align-items: center;

  justify-content: center;

  /* padding-top: 60rem; */
}

.line {
  width: 100%;

  max-width: 8.4rem;

  height: 0.25rem;

  background-color: #fff;

  position: relative;

  opacity: 0;

  animation: grow 2s forwards;

  animation-delay: 0.9s;
}

.line-right::before,
.line-left::before {
  content: "";

  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  border: 0.6rem solid transparent;

  opacity: 0;

  animation: grow 0.5s forwards;

  animation-delay: 1.2s;
}

.line-right::before {
  border-right-color: #fff;

  right: 0;
}

.line-left::before {
  border-left-color: #fff;

  left: 0;
}

.asterisk {
  font-size: 2rem;

  color: var(--secondary-font-color);

  margin: 0 1.6rem;

  opacity: 0;

  animation: spin 0.9s forwards;

  animation-delay: 2s;
}

.single-animation {
  opacity: 0;

  animation: fadeDown 0.5s forwards;

  animation-delay: 1.5s;
}

.headline-description h5 {
  color: #fff;

  font-size: 2.2rem;

  font-weight: 100;

  text-transform: uppercase;

  font-weight: ;

  margin-bottom: 0.8rem;

  letter-spacing: 3px;

  margin-right: -3px;

  font-family: nav;
}

.btn {
  display: inline-block;

  text-transform: uppercase;

  letter-spacing: 2px;

  margin-right: -2px;
}

.btn .fas {
  margin-left: 10px;
}

.cta-btn {
  font-size: 1.2rem;

  background-color: rgb(0, 0, 0);

  padding: 0.9rem 1.8rem;

  color: #fff;

  border-radius: 2rem;

  transition: background-color 0.5s;
}

.cta-btn:hover,
.cta-btn:focus {
  color: #fff;

  background-color: var(--secondary-font-color);
}

.newsletter-btn:hover,
.newsletter-btn:focus {
  color: #f39c1a;
}

.video1 {
  position: fixed;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  z-index: 10000;

  background: rgba(0, 0, 0, 0.95);

  width: 100%;

  height: 100%;

  display: flex;

  justify-content: center;

  align-items: center;

  visibility: hidden;

  opacity: 0;
}

.video1.active {
  visibility: visible;

  opacity: 1;
}

.video1 video {
  position: relative;

  max-width: 319px;

  outline: none;
}

.close {
  position: absolute;

  top: 30px;

  right: 30px;

  cursor: pointer;

  filter: invert(0);

  max-width: 32px;
}

/*Discover Our Story*/

.global-headline {
  text-align: center;

  margin-top: 3.9rem;
}

.discover-our-story .global-headline {
  margin-top: 6.9rem;
}

.global-headline .asterisk {
  color: var(--secondary-font-color);

  margin: 2.4rem 0;
}

.headline-dark {
  color: var(--main-font-color-dark);

  letter-spacing: 0.7rem;

  margin-right: -0.7rem;

  text-shadow: 0px 0px 0px #000000;
}

.global-headline .sub-headline {
  letter-spacing: -1px;

  line-height: 0.42;
}

.restaurant-info {
  text-align: center;
}

.restaurant-description {
  margin-bottom: 3rem;
}

.restaurant-description p {
  line-height: 1.6;

  margin-bottom: 2.4rem;
}


.body-btn{
    
    font-size: 1.5rem;
        
    color: var(--secondary-font-color);
    
    position: relative;
    
    transition: color 0.5s;
    
    /* background-color: #000;
    
    border-radius: 50px; */
}

.body-btn::before {
  content: "";

  position: absolute;

  left: 0;

  bottom: -3px;

  width: 100%;

  height: 2px;

  background-color: #121212;

  transition: background-color 0.5s;
}

.body-btn:hover,
.body-btn:focus {
  color: #121212;
}

.body-btn:hover::before,
.body-btn:focus::before {
  background-color: #121212;
}

.bird-img {
  width: 5%;
  height: auto;
  position: absolute;
  margin-left: 0%;
  margin-top: -15%;
  opacity: 100%;
  display: inline;
  z-index: 1;
}

.mou-img {
  width: 100%;
  height: auto;
  position: absolute;
  margin-left: 0%;
  margin-top: 0%;
  opacity: 100%;
  display: none;
  z-index: 1;
}

/*tasteful Recipes*/

.tasteful-recipes {
  background: url("image/tastefull-recipes.jpg") center no-repeat;

  background-size: cover;

  background-attachment: fixed;
}

.between {
  min-height: 65vh;

  display: flex;

  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;
}

.rec-img {
  width: 20%;
  height: auto;
  position: absolute;
  margin-left: 35%;
  margin-top: 110%;
  opacity: 20%;
  display: inline;
  z-index: -1;
}

.home-img {
  width: 80%;
  height: auto;
  position: absolute;
  margin-left: -80%;
  margin-top: 160%;
  opacity: 100%;
  display: none;
  z-index: -0;
}

/*The Perfect Blend*/

.perfect-blend {
  background: url(image/perfect-blend.jpg) center no-repeat;

  background-size: cover;

  background-attachment: fixed;
}

.nat-img {
  display: none;
}

/*Footer*/

footer {
  padding: 4rem 0;

  background-color: #121212;

  color: #fff;

  text-align: center;

  position: relative;
}

.back-to-top {
  width: 7rem;

  height: 7rem;

  background-color: #121212;

  position: absolute;

  top: -3rem;

  left: 50%;

  transform: translateX(-50%);

  border-radius: 50%;
}

.back-to-top i {
  display: block;

  color: #fff;

  font-size: 2rem;

  padding: 2rem;

  animation: up 2s infinite;
}

.footer-content {
  overflow: hidden;
}

.footer-content h4 {
  font-size: 1.9rem;

  text-transform: uppercase;

  font-weight: 100;

  letter-spacing: 3px;

  padding-top: 6rem;

  margin-bottom: 3rem;
}

.footer-content h5 {
  font-size: 1.9rem;

  text-transform: uppercase;

  font-weight: 100;

  letter-spacing: 3px;

  margin-bottom: 1rem;
}

.footer-content .asterisk {
  margin: 2.4rem 0;
}

.footer-content-about {
  margin-bottom: 5.4rem;

  line-height: 3rem;
}

.social-icons {
  list-style: none;

  margin-bottom: 1rem;

  display: flex;

  justify-content: center;
}

.social-icons i {
  font-size: 2rem;

  color: #fff;

  padding: 0.8rem 2rem;

  opacity: 0.5;

  transition: color 0.5s;
}

.social-icons i:hover,
.social-icons i:focus {
  color: var(--secondary-font-color);
}

.newsletter-form {
  width: 100%;

  position: relative;

  display: flex;

  justify-content: center;
}

.newsletter-input {
  /*width: 100%;*/

  max-width: 25rem;

  padding: 1rem;

  border-radius: 2rem;

  border: none;

  width: 250px;

  height: 30px;

  color: #252525;
}

.newsletter-btn {
  background-color: transparent;

  border: none;

  color: #121212;

  cursor: pointer;

  font-size: 1.6rem;

  padding: 1px 0.6rem;

  position: absolute;

  top: 50%;

  margin-right: -10rem;

  transform: translateY(-50%);

  margin-left: 10.5rem;
}

.footer-content-rights p {
  padding: 3rem;

  font-size: 1rem;

  letter-spacing: 2rem;
}

.footer-content-reserved p a:hover {
  color: var(--secondary-font-color);

  transition: 0.5s;
}

.center-side-img {
  width: 100%;
  height: auto;
  position: absolute;
  margin-left: 0%;
  margin-top: -30%;
  opacity: 10%;
  display: none;
}

header.sticky {
  padding: 0px 100px;
  background: #fff;
}

header.sticky .menu-toggle,
header.sticky .logo {
  filter: brightness(0);
}

/*Media Queries*/

@media screen and (min-width: 900px) {
  header.sticky {
    padding: 0px 100px;
    background: #fff;
  }

  header.sticky .logo {
    filter: brightness(0);
  }

  header.sticky ul li a {
    color: #000;
  }

  .hero {
    padding-top: 75vh;
  }

  section {
    padding: 7.9rem;

    /* padding-top: 50rem; */

    /* padding-bottom: 50rem; */
  }

  /* .separator{

        display: flex;
    
        align-items: center;
    
        justify-content: center;
    
        padding-top: 70rem;
    
    } */

  .menu-toggle {
    display: none;
  }

  .nav {
    justify-content: space-between;
  }

  .nav-list {
    position: initial;

    width: initial;

    height: initial;

    background-color: transparent;

    padding: 0;

    justify-content: initial;

    flex-direction: row;

    transform: initial;

    transition: initial;

    margin-right: -35%;
  }

  .nav-item {
    margin: 0 2rem;

    border: none;
  }

  .nav-item:last-child {
    margin-right: 0;
  }

  .nav-link {
    font-size: 1.4rem;

    font-family: nav;

    color: #fff;
  }

  .active {
    position: relative;
  }

  /*.active::before{

        content: '';

        position: absolute;

        width: 100%;

        height: 1.5px;

        background-color: rgb(161, 161, 161);

        left: 0px;

        bottom: -3px;

    }*/

  .sub-headline {
    font-size: 8rem;
  }

  .first-letter {
    font-size: 12rem;
  }

  .headline {
    font-size: 3.5rem;

    margin-top: 0rem;

    /* letter-spacing: .8rem; */
  }

  .line {
    max-width: 11.4rem;
  }

  .video1 video {
    max-width: 65%;
  }

  .video1 {
    position: fixed;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    z-index: 10000;

    background: rgba(0, 0, 0, 0.95);

    width: 100%;

    height: 100%;

    display: flex;

    justify-content: center;

    align-items: center;
  }

  .restaurant-info {
    display: flex;

    align-items: center;
  }

  .restaurant-info > div {
    flex: 1;
  }

  .padding-right {
    padding-right: 7rem;
  }

  .footer-content {
    max-width: 77.5rem;

    margin: auto;
  }

  .footer-content-about {
    max-width: 51.3rem;

    margin: 0 auto 5.4rem;
  }

  .footer-content-divider {
    display: flex;

    justify-content: space-between;
  }

  .social-media,
  .newsletter-form {
    width: 100%;

    max-width: 25.3rem;

    margin-left: 0rem;
  }

  .social-icons i {
    opacity: 1;
  }

  .newsletter-btn {
    margin-left: 11rem;
  }

  .footer-content-reserved {
    max-width: 100%;

    align-items: center;

    margin-left: 5rem;
  }

  .center-side-img {
    width: 100%;
    height: auto;
    position: absolute;
    margin-left: -50%;
    margin-top: -30%;
    opacity: 10%;
    display: inline;
  }

  .bird-img {
    width: 5%;
    height: auto;
    position: absolute;
    margin-left: 0%;
    margin-top: 0%;
    opacity: 100%;
    display: inline;
    z-index: 1;
  }

  .mou-img {
    width: 100%;
    height: auto;
    position: absolute;
    margin-left: 50%;
    margin-top: 90%;
    opacity: 100%;
    display: inline;
    z-index: -1;
  }

  .rec-img {
    width: 50%;
    height: auto;
    position: absolute;
    margin-left: 20%;
    margin-top: 20%;
    opacity: 20%;
    display: inline;
    z-index: -1;
  }

  .home-img {
    width: 30%;
    height: auto;
    position: absolute;
    margin-left: -15%;
    margin-top: 25%;
    opacity: 100%;
    display: inline;
    z-index: 1;
  }

  .nat-img {
    width: 50%;
    height: auto;
    position: absolute;
    margin-left: -65%;
    margin-top: 10%;
    opacity: 20%;
    display: inline;
    z-index: 1;
  }
}

/*Animations*/

@keyframes fadeUp {
  0% {
    transform: translatey(4rem);
  }

  100% {
    opacity: 1;

    transform: translateY(0);
  }
}

@keyframes scale {
  0% {
    transform: scale(2);
  }

  100% {
    opacity: 1;

    transform: scale(1);
  }
}

@keyframes scale {
  0% {
    transform: scale(2);
  }

  100% {
    opacity: 1;

    transform: scale(1);
  }
}

@keyframes grow {
  0% {
    width: 0;
  }

  100% {
    opacity: 1;

    width: 100%;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }

  100% {
    opacity: 1;

    transform: rotate(-360deg);
  }
}

@keyframes fadeDown {
  0% {
    transform: translatey(-1rem);
  }

  100% {
    opacity: 1;

    transform: translateY(0);
  }
}

@keyframes up {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;

    transform: translateY(-1rem);
  }
}

@keyframes slide {
  30% {
    background-image: url(image/home/01.jpg);
  }

  /* 60%{

        background-image: url(image/home/02.jpg);

    } */

  50% {
    background-image: url(image/home/04.jpg);
  }

  80% {
    background-image: url(image/home/06.jpg);
  }
}
