@font-face {
  font-family: "Mafra Display";
  src: url(./assets/fonts/Mafra\ Display\ W04\ Black.otf) format("opentype");
}
@font-face {
  font-family: "Eleganza";
  src: url(./assets/fonts/eleganza-plain.otf) format("opentype");
}
@font-face {
  font-family: "Great Vibes";
  src: url(./assets/fonts/GreatVibes-Regular.ttf);
}
@import url("https://fonts.googleapis.com/css2?family=Raleway&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
:root {
  /* --primary-color: #ffb168; */
  --primary-color: #fda450;
}
.lang-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px;
  border-radius: 50px;
  background-color: #fda450;
  border: 1.5px solid black;
  text-decoration: none;
  font-family: "Raleway";
  color: white;
  z-index: 10;
}
nav {
  background-color: var(--primary-color);
  display: flex;
  width: 100%;
  justify-content: space-around;
  align-items: center;
  font-family: "Eleganza";
  padding: 14px 0;
}
.logo-div {
  width: 20%;
  max-width: 250px;
}
.logo-img {
  width: 100%;
}
.navlink {
  text-align: center;
  color: white;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
}
.navlink::before {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 3px;
  background-color: rgb(98, 81, 81);
  content: "";
  transform: scaleY(0);
  transform-origin: top center;
  transition: 0.3s;
}
.navlink:hover {
  letter-spacing: 0.5px;
}
.navlink:hover::before {
  transform: scaleY(1);
}
.nav-container {
  position: relative;
}

.lower-border {
  position: absolute;
  width: 100%;
  z-index: 1;
}
.banner-div {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: grey;
}
.banner {
  background-image: url(assets/images/2017-08-02.jpg);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: cover;
}
.banner-overlay {
  background-color: rgba(89, 89, 89, 0.302);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: cover;
  box-shadow: inset 4px 2px 200px 0px black;
}
.banner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.banner-headline {
  position: relative;
  color: white;
  font-family: "Great Vibes", cursive;
  font-size: 5vw;
  background-color: #fda450bc;
  border: 3px solid #fda450;
  padding: 15px;
  border-bottom-right-radius: 60px;
  border-top-left-radius: 60px;
  text-align: center;
  transform: translateY(-50%);
}
.banner-cta-div {
  width: 75%;
  display: flex;
  justify-content: space-around;
  transform: translateY(-50%);
}
.banner-cta {
  font-family: "Raleway";
  text-decoration: none;
  font-size: 1.5vw;
  background-color: #fda450d2;
  color: white;
  padding: 20px 10px;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  transition: 0.3s;
}
.banner-cta:hover {
  color: #fda450;
  background-color: white;
}
.section {
  overflow-x: hidden;
  position: relative;
  padding: 50px 50px;
  display: flex;
  flex-direction: column;
}
.line {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  width: 100vw;
}
#about {
  background-color: #fda450;
}
#about h2 {
  color: white;
  background-color: #fda450;
}
.section-heading {
  font-size: 2vw;
  font-family: "Eleganza";
  z-index: 2;
  max-width: max-content;
  padding: 0 20px;
}
.section-content-container {
  margin-top: 50px;
  display: flex;
  justify-content: space-around;
}
.section-content {
  display: block;
  max-width: 55%;
  font-size: 1.4vw;
  font-family: "Raleway";
}
.section-image {
  width: 300px;
  background-color: black;
}
#menu {
  align-items: center;
  position: relative;
}
.menu-bg {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  background-image: url(assets/images/2023-01-13.jpg);
  background-position: 1;
  background-size: cover;
  filter: blur(3px);
  -webkit-filter: blur(3px);
}
#menu h2 {
  color: #fda450;
  padding: 0 10px;
  text-align: center;
}
#menu-header {
  display: flex;
  align-items: center;
  /* transform: translateX(-50%); */
}
#menu-header img {
  width: calc(100vw / 2 - 2vw);
}
.menu-download-button {
  text-decoration: none;
  padding: 10px 15px;
  background-color: transparent;
  color: #fda450;
  font-family: "Raleway";
  font-size: 1.4vw;
  font-weight: bold;
  border: 2px solid #fda450;
  margin-top: 60px;
  transition: 0.3s;
}
.menu-download-button:hover {
  background-color: #fda450;
  color: white;
  border-radius: 9px;
  letter-spacing: 0.2px;
}
#gallery {
  padding-right: 100px;
  background-color: #fda450;
  align-items: flex-end;
}
#gallery h2 {
  background-color: #fda450;
  color: #fff;
}
.gallery-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(8, 5vw);
  grid-gap: 10px;
}
.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery__item--1 {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 3;
}
.gallery__item--2 {
  grid-column-start: 3;
  grid-column-end: 5;
  grid-row-start: 1;
  grid-row-end: 3;

  /** Alternative Syntax **/
  /* grid-column: 3 / span 2;  */
  /* grid-row: 1 / span 2; */
}

.gallery__item--3 {
  grid-column-start: 5;
  grid-column-end: 9;
  grid-row-start: 1;
  grid-row-end: 6;

  /** Alternative Syntax **/
  /* grid-column: 5 / span 4;
  grid-row: 1 / span 5; */
}

.gallery__item--4 {
  grid-column-start: 1;
  grid-column-end: 5;
  grid-row-start: 3;
  grid-row-end: 6;

  /** Alternative Syntax **/
  /* grid-column: 1 / span 4;  */
  /* grid-row: 3 / span 3; */
}

.gallery__item--5 {
  grid-column-start: 1;
  grid-column-end: 5;
  grid-row-start: 6;
  grid-row-end: 9;

  /** Alternative Syntax **/
  /* grid-column: 1 / span 4; */
  /* grid-row: 6 / span 3; */
}

.gallery__item--6 {
  grid-column-start: 5;
  grid-column-end: 9;
  grid-row-start: 6;
  grid-row-end: 9;

  /** Alternative Syntax **/
  /* grid-column: 5 / span 4; */
  /* grid-row: 6 / span 3; */
}
#reviews h2 {
  color: #fda450;
  background-color: white;
}
#testimonial_area {
  font-family: "Raleway";
  padding: 8% 0 0;
  width: 80%;
  align-self: center;
}
.box-area {
  padding: 30px;
  position: relative;
  display: block;
  background: #fff;
  color: #000;
  box-shadow: #fda4509f 0px 5px 15px;
  margin: 40px 0;
}
.box-area h5 {
  font-family: "Mafra Display";
  font-size: 16px;
  font-weight: 700;
  color: #fda450;
  margin-top: 30px;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.box-area span {
  color: #262626;
  display: block;
  font-size: 13px;
  margin: 0 0 10px;
  font-weight: 400;
}
.box-area .content {
  color: #262626;
}
.box-area .img-area {
  background-color: white;
  width: 50px;
  height: 50px;
  position: absolute;
  top: -25px;
  left: 0;
  bottom: 0;
  margin: 0 auto;
  right: 0;
  z-index: 1;
  /* border-top: 5px solid #fda450; */
  border-radius: 50%;
  /* box-shadow: 0 5px 4px rgba(0, 0, 0, 0.5); */
}
.box-area .img-area img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}
#testimonial_area .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
}
#testimonial_area .owl-prev,
#testimonial_area .owl-next {
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #fda450;
  border-radius: 50%;
  text-align: center;
  background: #fff;
  position: absolute;
}
#testimonial_area .owl-prev {
  left: -60px;
  top: -30px;
}
#testimonial_area .owl-next {
  right: -60px;
  top: -30px;
}
@media only screen and (max-width: 991px) {
  .owl-nav {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .box-area {
    text-align: center;
  }
  .owl-nav {
    display: none;
  }
}
