@import url("https://fonts.googleapis.com/css2?family=Nunito&family=Source+Sans+Pro:wght@400;900&display=swap");
/*Global styles*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*variables*/
:root {
  --main-font: "Source Sans Pro", sans-serif;
  --body-font: "Nunito", sans-serif;
  --main-font-color-dark: #252525;
  --secondary-font-color: #ee3866;
  --body-font-color: #515151;
}

html {
  font-family: var(--body-font);
  font-size: 10px;
  color: var(--body-font-color);
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

section {
  padding: 3.9rem 0;
  overflow: hidden;
}

img {
  width: 100%;
  max-width: 100%;
}

a {
  text-decoration: none;
}

p {
  font-size: 1.6rem;
}

.container {
  width: 100%;
  max-width: 122.5rem;
  margin: 0 auto;
  padding: 0 1rem;
}

/*header styles*/
header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}

.logo {
  font-family: var(--main-font);
  font-size: 24px;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.nav {
  position: relative;
  width: 100%;
  height: 7.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fix__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1200;
  background-color: rgba(18, 18, 18, 0.95);
}

.menu-toggle {
  color: #fff;
  font-size: 2.2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  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: var(--main-font-color-dark);
  padding: 4.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  z-index: 1250;
  transform: translateX(-100%);
  transition: transform 0.5s ease-in-out;
}

.nav::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.82);
  z-index: 1000;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.5s ease-in-out;
}

.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, 0.3);
}

.nav-link {
  display: block;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.6rem;
  letter-spacing: 2px;
  margin-right: -2px;
  transition: color 0.5s;
}

.nav-link:hover,
.logo:hover {
  color: var(--secondary-font-color);
  border-color: var(--secondary-font-color);
}
.nav__lang {
  position: absolute;
  top: 1.5rem;
  left: 0;
  display: flex;
  flex-direction: column;
}
.lang:first-child {
  margin-bottom: 0.3rem;
}

.lang {
  font-family: var(--body-font);
  letter-spacing: 0.1rem;
  font-weight: 700;
  border: none;
  border-radius: 0.2rem;
  padding: 0.2rem 0.5rem;
  color: var(--main-font-color-dark);
  background-color: #fff;
  font-size: 1.1rem;
  transition: all 0.3s ease-in-out;
  outline: none;
  cursor: pointer;
}

.lang:hover {
  color: #fff;
  background-color: var(--secondary-font-color);
  transform: scale(1.2);
}

.active-lang {
  color: #fff;
  background-color: var(--secondary-font-color);
  transform: scale(1.2);
}

/*hero section styles*/
.hero {
  width: 100%;
  height: 100vh;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)),
    url("../img/2bg.jpg") center no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  text-align: center;
}

.sub-headline {
  font-size: 8.5rem;
  font-family: var(--secondary-font);
  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: 10.3rem;
}

.headline {
  color: #fff;
  font-size: 3.7rem;
  font-family: var(--main-font);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.5rem;
  margin-right: 0.5rem;
  opacity: 0;
  animation: scale 0.5s forwards;
  /* animation-delay: 0.5s; */
}

.separator {
  display: flex;
  align-items: center;
  justify-content: center;
}

.line {
  width: 100%;
  max-width: 8.4rem;
  height: 0.25rem;
  background-color: #fff;
  position: relative;
  opacity: 0;
  animation: grow 10s 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.8s forwards;
  animation-delay: 1.2s;
}

.line-right::before {
  border-right-color: #fff;
  right: 0;
}

.line-left::before {
  border-left-color: #fff;
  left: 0px;
}

.asterisk {
  font-size: 1.2rem;
  color: var(--secondary-font-color);
  margin: 0 1.6rem;
  opacity: 0;
  animation: spin 2s forwards;
  animation-delay: 0.7s;
}

.single-animation {
  opacity: 0;
  animation: fadeDown 2s forwards;
  animation-delay: 1.5s;
}

.headline-disc h5 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 100;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  letter-spacing: 3px;
  margin-right: -3px;
}

.btn {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-right: -2px;
}

.cta-btn {
  font-size: 1.1rem;
  background-color: #fff;
  padding: 0.9rem 1.8rem;
  color: var(--body-font-color);
  border-radius: 0.4rem;
  margin-top: 0.7rem;
  transition: background-color 0.5s ease-in-out;
}

.cta-:hover,
.cta-btn:active {
  color: #fff;
  background-color: var(--secondary-font-color);
}

/*discover our story*/
.global-headline {
  text-align: center;
  margin-top: 3.9rem;
}

.discover-our-story .global-headline {
  margin-top: 6.9rem;
}

.global-headline .asterisk {
  margin: 2.4rem 0;
}

.headline-dark {
  color: var(--main-font-color-dark);
  letter-spacing: 0.7rem;
  margin-right: -0.7rem;
}
.headline-light {
  color: #fff;
}

.global-headline .sub-headline {
  letter-spacing: -1px;
  line-height: 0.42;
}

.restaurant-info {
  text-align: center;
}

.container .restaurant-info__btn {
  text-align: center;
  margin-bottom: 5rem;
}
.restaurant-info__btn:hover,
.restaurant-info__btn:active {
  color: #fff;
  background-color: var(--secondary-font-color);
}

.restaurant-description {
  margin-bottom: 3rem;
}

.restaurant-description p {
  text-align: justify;
  /* text-indent: 1.5rem; */
  line-height: 1.5;
  /* margin-bottom: 1rem */
}

.discover-our-story--links a {
  display: block;
  margin-bottom: 1.5rem;
}

.body-btn {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-font-color);
  position: relative;
  transition: color 0.5s ease-in-out;
}

.body-btn::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background-color: var(--secondary-font-color);
  transition: background-color 0.5s ease-in-out;
}

.body-btn:hover,
.body-btn:focus {
  color: var(--main-font-color-dark);
}

.body-btn:hover::before,
.body-btn:focus ::before {
  background-color: var(--main-font-color-dark);
}

.restaurant-info-img img {
  max-width: 450px;
  height: 300px;
}

/* new info block */
.info_wrapper {
  /* min-height: 100vh; */
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 20px 0px;
}

.info_name {
  font-size: 1.5rem;
  font-weight: bolder;
  letter-spacing: 0.1rem;
  margin: 25px 0 0;
}

.info_text {
  margin-top: 35px;
  margin-bottom: 10px;
  text-indent: 15px;
}

.info {
  display: grid;
  grid-template-columns: auto;
  row-gap: 0;
}

.info_item {
  text-align: center;
  border: none;
  padding: 0;
  margin: 0;
}

.info_item:nth-child(odd) {
  border-right: 0;
  margin-top: 5px;
}
.info_item:nth-child(even) {
  font-weight: bold;
  border-bottom: 1px solid black;
}

.info_wrapper .info_btn {
  width: 100%;
  text-align: center !important;
  font-size: 1.5rem;
  padding: 10px;
  margin: 10px;
}

/*recipes styles*/
.recipes {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)),
    url("../img/1bg.jpg") center no-repeat;
  background-size: cover;
}

.between {
  min-height: 65vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.recipes-text {
  font-family: var(--main-font);
  color: #fff;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 700;
  text-align: justify;
  margin: 2rem 1rem;
  text-indent: 1.5rem;
}

/*our menu styles*/
.image-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1.5rem;
}

.image-group--item {
  position: relative;
}

.image-group--item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0.3rem;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}

.image-group--item p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  font-family: var(--main-font);
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  font-weight: 700;
}

.menu .restaurant-description {
  margin-bottom: 0;
}

.deal-links {
  display: flex;
  flex-direction: column;
  margin-right: 1rem;
}

.deal-links a {
  display: block;
  border: 1px solid var(--secondary-font-color);
  font-size: 1.4rem;
  margin: 1rem;
}

/*perfect blend styles*/
.perfect-blend {
  background: linear-gradient(rgba(83, 60, 60, 0.5), rgba(0, 0, 0, 0.5)),
    url("../img/5bg.jpg") center no-repeat;
  background-size: cover;
}

.report__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.report__wrapper a {
  font-size: 1.6rem;
}

.report__year {
  font-family: var(--main-font);
  font-size: 2.5rem;
  color: #fff;
  font-weight: 900;
}

/*cusotmer protection section*/
.customer__protection-text {
  font-family: var(--body-font);
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-indent: 15px;
}

.order_btn {
  display: block;
  font-family: Arial;
}
.accordion,
.order_btn {
  font-size: 1.8rem;
  background-color: #fff;
  color: var(--body-font-color);
  cursor: pointer;
  padding: 1rem;
  margin: 0.1rem;
  width: 100%;
  text-align: left;
  /* border: none; */
  border: 1px solid var(--secondary-font-color);
  border-radius: 0.4rem;
  outline: none;
  transition: all 0.5s ease-in-out;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.customer__protection.active,
.customer__protection .accordion:hover,
.order_btn:hover {
  background-color: var(--secondary-font-color);
  color: #fff;
}

/* Style the accordion panel. Note: hidden by default */
.customer__protection-panel {
  padding: 10px 18px;
  background-color: white;
  display: none;
  width: 100%;
  overflow: hidden;
}

.customer__protection-panel p {
  font-size: 16px;
  margin-bottom: 10px;
}
.customer__protection-panel a {
  text-decoration: none;
  font-size: 20px;
  color: var(--secondary-font-color);
  border-bottom: 2px solid var(--secondary-font-color);
  transition: all 0.3s ease-in-out;
}

.customer__protection-panel a:hover {
  color: var(--main-font-color-dark);
  border-bottom: 2px solid var(--main-font-color-dark);
}

.block .container {
  border: 1px solid #000;
}

/*footer styles*/
footer {
  padding: 7.9rem 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 1.5s infinite;
}

.contact-wrapper {
  display: grid;
  grid-auto-columns: 100%;
  grid-template-columns: 100%;
  grid-auto-rows: calc(25% - 15.75px);
  grid-gap: 1.5rem 1.5rem;
  justify-content: center;
}

.contact-item {
  border: 1px solid var(--secondary-font-color);
  padding: 5rem 2rem;
  border-radius: 0.5rem;
  background-color: #fff;
}

.contact-item--icon {
  height: 6.4rem;
  width: 6.4rem;
  margin: 0 auto;
}

.contact-info--title {
  color: var(--main-font-color-dark);
  font-size: 1.6rem;
  text-transform: uppercase;
  margin: 2rem 0 0.5rem;
  opacity: 0.8;
}

.contact-info--link,
.contact-info--text {
  color: var(--main-font-color-dark);
  font-size: 1.8rem;
  font-weight: 900;
  transition: all 0.3s ease-in-out;
  opacity: 0.9;
}

.contact-info--link:hover {
  opacity: 1;
  text-decoration: underline;
}

.map {
  margin: 5rem 0 2rem;
  border-radius: 0.5rem;
  width: 100%;
}
.map iframe {
  width: 100%;
  height: 40vh;
  border-radius: 0.5rem;
}

/*media quries*/
@media screen and (min-width: 451px) {
  .main-headline {
    font-size: 5rem;
  }

  .recipes-text {
    font-size: 1.8rem;
  }

  .image-group--item p {
    width: auto;
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 700px) {
  .nav {
    padding: 0 2rem;
  }

  .main-headline {
    font-size: 7rem;
  }

  .image-group--item {
    overflow: hidden;
  }

  .image-group--item img {
    transition: all 1s ease-in-out;
  }
  .image-group--item:hover img,
  .image-group--item:hover .image-group--item::before {
    transform: scale(1.5);
  }

  .image-group--item p {
    font-size: 1.7rem;
  }
}
@media only screen and (min-width: 768px) {
  .info {
    grid-template-columns: auto auto;
    row-gap: 1px;
  }

  .info_item {
    border: 1px solid black;
    padding: 5px;
    margin: 0;
  }
  .info_item:nth-child(odd) {
    border-right: 0;
    margin-top: 0;
  }
}
@media screen and (min-width: 900px) {
  section {
    padding: 8rem;
  }

  .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;
  }

  .nav-item {
    margin: 0 2rem;
    border: none;
  }

  .nav-item:last-child {
    margin-right: 0;
  }

  .nav-link {
    font-size: 1.3rem;
  }

  .active {
    position: relative;
  }

  .active::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    left: 0;
    bottom: -3px;
  }

  .nav__lang {
    display: none;
    flex-direction: column;
    position: static;
  }

  .sub-headline {
    font-size: 10rem;
  }

  .first-letter {
    font-size: 12.5rem;
  }

  .main-headline {
    font-size: 9rem;
    letter-spacing: 0.8rem;
  }

  .headline-disc h5 {
    margin-top: 1rem;
  }

  .line {
    max-width: 11.4rem;
  }

  .restaurant-info > div {
    flex: 1;
  }

  .recipes-text--2 {
    margin-bottom: 3.9rem;
  }

  .contact-wrapper {
    grid-auto-columns: calc(50% - 10.5px);
    grid-template-columns: calc(50% - 10.5px) calc(50% - 10.5px);
    grid-auto-rows: calc(50% - 10.5px);
  }

  .contact-item {
    padding: 3rem 2rem;
  }

  .map {
    margin: 5rem 0 2rem;
    padding: 0 1rem;
  }

  .culinary {
    margin-bottom: 10rem;
  }
}

@media screen and (min-width: 1199px) {
  .contact-wrapper {
    grid-template-columns: repeat(4, calc(25% - 15.75px));
    grid-auto-rows: 100%;
  }

  .padding-right {
    padding-right: 7rem;
  }

  .restaurant-info {
    display: flex;
    align-items: center;
  }

  #about .info_wrapper {
    padding: 0px 20px 50px;
  }

  #about .info_wrapper .info_text {
    margin-top: -75px;
  }
  #about .info_wrapper .info {
    grid-template-columns: auto auto;
    row-gap: 1px;
  }
}

/*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 grow {
  0% {
    width: 0;
  }
  100% {
    opacity: 1;
    width: 100%;
  }
}

@keyframes fadeDown {
  0% {
    transform: translateY(-1rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    opacity: 1;
    transform: rotate(-360deg);
  }
}

@keyframes up {
  0% {
    opacity: 0;
    transform: translateY(1rem);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-1.5rem);
  }
}
