@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter18pt-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter24pt-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SmoothStone';
  src: url('./fonts/SmoothStone-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TimesNewRoman';
  src: url('./fonts/TimesNewRomanPS-ItalicMT.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/**
  Нормализация блочной модели
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
 */
:where(
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  ul,
  ol,
  dl
):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
 */
:where(ul[class]) {
  list-style: none;
}

/**
  Упрощаем работу с изображениями
 */
img {
  display: block;
  max-width: 100%;
}

/**
  Наследуем свойства шрифт для полей ввода
 */
input,
textarea,
select,
button {
  font: inherit;
}

html {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  height: 100%;
  /**
    Плавный скролл
   */
  scroll-behavior: smooth;
}

body {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  min-height: 100%;
  /**
    Унифицированный интерлиньяж
   */
  line-height: 1.5;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:root {
  --color-dark: #292929;
  --color-light: #FCD33B;

  --border-radius: 15px;
  --border: 1px solid var(--color-light);

  --font-family-base: 'Inter', sans-serif;
  --font-family-accent: 'TimesNewRoman', sans-serif;
  --input-height: 54px;
  --container-width: 1200px;
  --container-padding-x: 15px;
  --transition-duration: 0.2s;

  --header-height: 90px;
}

body {
  font-family: var(--font-family-base);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-light-gray);
  background-color: var(--color-dark);
}

svg *[fill] { fill: currentColor }
svg *[stroke] { stroke: currentColor }

a,
button,
input,
textarea,
svg * {
  transition-duration: var(--transition-duration);
}

svg * {
  transition-property: fill, stroke;
}

a {
  display: block;
  color: var(--color-light);
  text-decoration: none;
  color: #fff;
}

p {
  margin-block: 0;
}

p:not([class]):not(:last-child) {
  margin-bottom: 24px;
}

.container {
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.container-wide {
  max-width: 1920px;
  margin-inline: auto;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-light);
}

/* INTRO */

.intro-section .container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo{
    color: var(--color-light);
    cursor: pointer;
    transition-duration: var(--transition-duration);
}



/* HEADER */

header{
  margin-top: 25px;
}

header .container{
  display: flex;
  justify-content: center;
}

.header-inner{
  padding-inline: 30px;
  border-block: 1px solid white;
}

.header-links{
  display: flex;
  justify-content: center;
}

.header-links-link{
  padding-inline: 15px;
  padding-block: 25px;
}

.intro-facebook{
  font-family: 'Inter';
  font-weight: 700;
  border-radius: 10px;
  background-color: #475993;
  margin-top: 10px;
  padding: 10px 25px;
}


/* photo slider */



.photo-section{
  margin-top: 50px;
}

.photo-section-slider{
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  height: 455px;
  overflow: hidden;
}


.photo-section-slider-item{
  object-fit: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.photo-section-slider-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-section-slider-item-active{
  opacity: 1;
}

.photo-section-text{
  position: absolute;
  top: -150px;
  left: 15;
}

.photo-section .container{
  position: relative;
}


.photo-section-header{
  font-family: 'SmoothStone';
  letter-spacing: 5px;
  color: #fff;
  font-size: 96px;
  font-weight: 400;
  text-transform: none;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  transition-duration: var(--transition-duration);
}


/* SLIDER */

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.slider-section{
  margin-top: 35px;
}

.food {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.food:before,
.food:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.food:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), var(--color-dark));
}

.food:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), var(--color-dark));
}



.food-slide {
  display: inline-block;
  animation: 25s slide infinite linear;
}

.food-slide img {
  border-radius: 16px;
  height: 330px;
  width: 300px;
  margin: 0 12px;
  display: inline-block;
  max-width: none;
}

/* VIDEO SECTION */

.video-section{
  margin-top: 35px;
  display: flex;;
  justify-content: center;
}

.video-section iframe{
  border-radius: 15px;
}


/* Reviwes */

.reviews-list{
  margin-top: 35px;
  position: relative;
  position: relative;
}

.reviews-list-item{
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  border-radius: var(--border-radius);
  background-color: #4C4C4C;
  box-shadow: 0 0 60px 0 rgba(255, 255, 255, 0.15);
  padding: 35px;
  width: 550px;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.reviews-list-item-active{
  opacity: 1;
}

.reviews-list-item-btn{
  position: absolute;
  top: 0;
  right: -85px;
  height: 100%;
  background: none;
  border: none;
  cursor: pointer;
  transition-duration: var(--transition-duration);
}

.reviews-list-item-btn-left{
  transform: rotate(180deg);
  position: absolute;
  top: 0;
  left: -85px;
  height: 100%;
  background: none;
  border: none;
  cursor: pointer;
  transition-duration: var(--transition-duration);
}

.reviews-list-item-text{
  margin-top: 15px;
  margin-bottom: 40px;
   font-family: 'Times New Roman', Times, serif;
   line-height: 1.25;
   font-size: 20px;
   font-weight: 400;
   color: #fff;
}

.reviews-list-item-name{
  font-family: 'SmoothStone';
  font-size: 24px;
  text-transform: none;
  color: #fff;
  font-weight: 400;
}

.reviews-list-item-disc{
  margin-top: 10px;
  font-size: 16px;
  font-family: 'Times New Roman', Times, serif;
  font-weight: 700;
  color: #fff;
}

.reviews-list-item-disc span{
  color: #FCD33B;
}

/* Text */

.text-section{
  margin-top: 75px;
}

.text-section-paragraph{
  margin: 0 auto;
  width: 70%;
  font-size: 24px;
  font-family: 'TimesNewRoman';
  line-height: 1.2;
  text-align: center;
  color: white;
  font-weight: 400;
}

.text-section-firm{
  margin-top: 35px;
  font-size: 64px;
  text-align: center;
  font-family: 'SmoothStone';
  font-weight: 400;
  text-transform: none;
}

.text-section-button{
  display: flex;
  justify-content: center;
  font-size: 96px;
  font-weight: bold;
}

.text-section-button-wrapper{
  position: relative;
  margin-top: 75px;
}

.text-section-button-wrapper img{
  position: absolute;
  right: 20%;
  top: -160px;
}

/* FOOTER */

footer{
  margin-top: 50px;
}

footer .container{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-links{
  display: flex;
  justify-content: center;
}

.footer-inner{
  margin-block: 35px;
  padding-inline: 30px;
  border-block: 1px solid white;
}

.footer-links-link{
    padding-inline: 15px;
    padding-block: 25px;
}

.footer-iva{
  border-top-right-radius: var(--border-radius);
  border-top-left-radius: var(--border-radius);
  padding: 15px;
  display: flex;
  justify-content: center;
  width: 100vw;
  background-color: #4C4C4C;
  color: #fff;
  box-shadow: 0 0 60px 0 rgba(255, 255, 255, 0.15);
}

.footer-iva-list{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

/* MODALS */

.menu-modal{
  position: fixed;     
  top: 0;
  left: 0;
  width: 100vw;         
  height: 100vh;       
  background: rgba(0, 0, 0, 0.5); 
  z-index: 1000;               
  justify-content: center;
  align-items: center;
  display: none;
}

#menu{
  cursor: pointer;
}

.menu-modal-active{
  display: flex;
}

.menu-modal-inner{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  background-color: #fff;
  border-radius: 25px;
  padding: 35px;
}

.menu-close{
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #fff;
  position: absolute;
  top: -30px;
  right: -30px;
  transition-duration: var(--transition-duration);
}



.menu-modal-header{
  color: #000;
  font-size: 36px;
  margin-bottom: 15px;
}

.menu-modal-language-list{
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.menu-modal-language-list-item{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 300px;
  height: 55px;
  border-radius: 15px;
  border: 2px solid #000;
}

.menu-modal-language-list-item img{
  width: 32px;
  height: 32px;
}

.menu-modal-language-list-item h4{
  font-size: 24px;
  text-transform: none;
  color: #000;
  font-weight: 400;
}


/* MENU */

.menu-intro{
  margin-top: 35px;
  font-size: 24px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 35px;
  color: #fff;
  font-family: 'Times New Roman', Times, serif;
}

.menu-section-items-list{
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.menu-section-item{
  max-width: 650px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

/* MEDIA */

@media (hover: hover){
  .menu-close:hover{
    transform: rotate(180deg);
  }

  a:hover{
    color: var(--color-light);
    transform: scale(1.05);
  }

  .logo:hover{
  transform: scale(1.05);
  } 

  .reviews-list-item-btn:hover{
    scale: 1.05;
  }

  .reviews-list-item-btn-left:hover{
    scale: 1.05;
  }
}

@media (max-width: 1024px) {
  .photo-section-text{
  display: none;
  }

  .text-section-paragraph {
    width: 100%;
  }

  .text-section-button-wrapper img{
    display: none;
  }

  .text-section-button-wrapper{
    margin-top: 0px;
  }
}

@media (max-width: 767px) {

  .reviews-list-item{
    width: 100%;
  }

  .photo-section-slider{
    height: 225px;
  }

  .photo-section-header{
    font-size: 36px;
  }

  .food-slide img {
    height: 165px;
    width: 150px;
    margin: 0 6px;
  }

  .food:before, .food:after {
    width: 100px;
}

footer .container{
  overflow: hidden;
}

.menu-modal-language-list-item{
  width: 250px;
}

.menu-modal-inner{
  padding: 25px;
}
}