/* normalization */
html {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  display: flex;
  flex-direction: column;
  scroll-behavior: smooth;
}

*,
*::after,
*::before {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-feature-settings: normal;
  font-variation-settings: normal;
  border-color: hsl(var(--border));
}
a {
  text-decoration: none;
  color: #fff;
}

button {
  background-color: #fff;
  color: #000;
  border: none;
  padding: none;
  margin: none;
  cursor: pointer;
}

input {
  background-color: none;
  border: none;
  outline: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td {
  border: none;
  background: none;
  box-shadow: none;
  outline: none;
}
ul,
li {
  list-style: none;
}

@font-face {
  font-family: "Tinos-Regular";
  src: url(../fonts/Tinos-Regular.ttf);
}
@font-face {
  font-family: "Cookie-Regular";
  src: url(../fonts/Cookie-Regular.ttf);
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}

.header {
  position: absolute;
  display: flex;
  margin-top: 50px;
  width: 100%;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.header-line {
  background-color: #fff;
  height: 50px;
  width: 1px;
}
.header__nav ul {
  display: flex;
  gap: 30px;
}
.header__nav ul li {
  color: #fff;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
}
.header__nav ul li a {
    transition: all 0.3s ease;
}
.header__nav ul li a:hover {
    color: #ff7400;
}
.header__phone a svg rect {
    transition: all 0.3s ease;
}
.header__phone a:hover svg rect {
  fill: #ff7400;
}
.header__phone a:hover {
  color: #ff7400;
}
.header__contact p {
  color: #fff;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  max-width: 150px;
}
.header__phone {
  margin-bottom: 5px;
}
.header__phone a {
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}
.logo a svg rect {
    transition: stroke 0.3s ease;
}
.logo a:hover svg rect {
  stroke: #ffffff;
}
.header__order a {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  background-color: #ff7400;
  padding: 15px;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.header__order a:hover {
    background-color: #fff;
    color: #ff7400;
}
.hero {
  background-image: url(../images/hero-image.svg);
  background-size: cover;
  background-position: center;
  height: 800px;
  width: 100%;
  z-index: 1;
}
.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.hero__welcome {
  text-align: center;
  margin-top: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.hero__welcome a {
  background-color: #ff7400;
  padding: 13px 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.hero__welcome a:hover {
    background-color: #fff;
    color: #ff7400;
}
.hero__welcome h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
  margin-top: 10px;
}
.hero__welcome h4 hr {
  width: 60px;
  height: 2px;
}
.hero__inner h1 {
  font-family: "Tinos-Regular", "Open Sans", sans-serif;
  font-size: 50px;
  color: #d67e35;
  text-align: center;
  font-weight: 400;
}
.hero__inner span {
  font-family: "Tinos-Regular", "Open Sans", sans-serif;
  font-size: 80px;
  font-weight: 400;
}
.photo {
  background-image: url(../images/RESERVATION.svg);
  background-size: cover;
  background-position: center;
  height: 732px;
  width: 100%;
}
.benefits {
  display: flex;
  justify-content: center;
  width: 100%;
  z-index: 10;
  position: relative;
  margin-top: -100px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
  gap: 30px;
}
.benefits__inner {
  display: flex;
  justify-content: center;
}
.benefits-block {
  box-shadow: 10px 10px 40px 20px rgba(0, 0, 0, 0.1);
  max-width: 349px;
  width: 100%;
  height: 328px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  padding: 15px;
  z-index: 10;
  position: relative;
  background-color: #fff;
  transition: all 0.3s ease;
}
.benefits-block:hover {
    transform: translateY(-5px);
}
.benefits-block h4 {
  font-family: "Tinos-Regular", "Open Sans", sans-serif;
  font-size: 26px;
  margin: 15px 0;
  text-align: center;
}
.benefits-block p {
  text-align: center;
  font-family: "Tinos-Regular";
  font-size: 26px;
  color: #656363;
}
.benefits-block span {
  color: #bc9060;
  font-family: "Tinos-Regular", "Open Sans", sans-serif;
}
.promo {
  background-image: url(../images/bg.svg);
  background-size: cover;
  background-position: center;
  height: 357px;
  display: flex;
  justify-content: center;
}
.promo__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 140px;
  margin-top: 60px;
}
.promo-description {
  display: flex;
  flex-direction: column;
}
.promo-description h2 {
  font-size: 52px;
  font-family: "Tinos-Regular", "Open Sans", sans-serif;
  color: #d67e34;
  max-width: 601px;
  font-weight: 400;
  margin-bottom: 20px;
}
.promo-description h3 {
  color: #fff;
  font-size: 24px;
}
.promo-anchor a {
  background-color: #ff7400;
  padding: 15px 21px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.promo-anchor a:hover {
    background-color: #fff;
    color: #ff7400;
}
.history {
  margin: 150px 0 100px;
}
.history__inner {
  display: flex;
  justify-content: space-between;
}
.history-description {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.history-description p {
  text-align: center;
  max-width: 444px;
}
.history-description h2 {
  font-family: "Tinos-Regular", "Open Sans", sans-serif;
  font-size: 54px;
  font-weight: 400;
  margin-bottom: 20px;
}
.history-description span {
  font-family: "Tinos-Regular", "Open Sans", sans-serif;
  color: #d67e34;
  font-weight: 400;
}
.history-amount {
  display: flex;
  justify-content: space-between;
  max-width: 300px;
  width: 100%;
  margin-top: 50px;
}
.history-amount__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.history-amount__item h3 {
  color: #bc9060;
  font-size: 40px;
  font-weight: 400;
}
.history-amount__item h4 {
  font-weight: 400;
  font-size: 20px;
}
.history-gallery img {
    transition: all 0.3s ease;
}
.history-gallery img:hover {
    transform: translateY(-5px);
}
.dishes-menu__block {
  display: flex;
  align-items: center;
  gap: 20px;
}
.dishes-menu__block p span {
    color: #000;
}
.dishes-menu {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 4px;
}
.dishes__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}
.dishes h2 {
  font-family: "Tinos-Regular", "Open Sans", sans-serif;
  width: 100%;
  text-align: center;
  font-size: 54px;
  font-weight: 400;
  margin-top: 70px;
  margin-bottom: 70px;
}
.dishes span {
  font-family: "Tinos-Regular", "Open Sans", sans-serif;
  color: #d67e34;
}
.menu {
  background-image: url(../images/bg-our-menu.svg);
  background-size: cover;
  background-position: center;
  height: 1036px;
  display: flex;
  align-items: center;
  margin-top: 150px;
}
.menu-block {
  background-color: #fff;
  height: 510px;
  max-width: 350px;
  width: 100%;
  position: relative;
  box-shadow: 10px 10px 40px 20px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}
.menu-block:hover {
    transform: translateY(-5px);
}
.menu-block .menu__reccomended {
  max-width: 124px;
  width: 100%;
  height: 36px;
  background-color: #d67e34;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.menu-photo img {
  border-radius: 50%;
}
.menu-price {
  border: 5px solid #fff;
  border-radius: 50%;
  background-color: #d67e34;
  max-width: 100px;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Cookie-Regular", "Open Sans", sans-serif;
  font-size: 30px;
  position: absolute;
  top: 225px;
  right: 55px;
}
.menu-block__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
.menu-block__inner h3 {
  font-family: "Tinos-Regular", "Open Sans", sans-serif;
  font-size: 26px;
  font-weight: 400;
  margin: 25px 0 15px;
}
.menu-block__inner p {
  max-width: 200px;
  text-align: center;
  margin-bottom: 10px;
  font-size: 16px;
}
.menu-block__inner button {
  background-color: #d67e34;
  padding: 14px 72px;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}
.menu-block__inner button:hover {
    background-color: #ff7400;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 150px;
}
.menu-block__inner-2 {
  margin-top: 87px;
}
.menu h2 {
  font-family: "Tinos-Regular", "Open Sans", sans-serif;
  color: #fff;
  font-size: 54px;
  font-weight: 400;
  text-align: center;
  margin: 0 0 150px;
}
.testimonial {
  background-color: #e5e5e5;
  height: 550px;
}
.slider {
  height: 550px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.slide, 
.slide img {
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}
.slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 100%;
}
.slide p {
  max-width: 900px;
  text-align: center;
  font-size: 20px;
  font-style: italic;
}
.dots {
  display: flex;
  flex-direction: row;
  gap: 5px;
  margin-top: 20px;
  align-items: center;
  justify-content: center;
}
.dots span {
  background-color: #c4c4c4;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  cursor: pointer;
}
.dots span.active {
  border: solid #ff7400 2px;
  background-color: #e5e5e5;
  width: 11px;
  height: 11px;
}
.gallery h2 {
  font-family: "Tinos-Regular", "Open Sans", sans-serif;
  font-size: 54px;
  text-align: center;
  font-weight: 400;
  margin: 50px 0;
}
.gallery span {
  font-family: "Tinos-Regular", "Open Sans", sans-serif;
  font-weight: 400;
  color: #d67e34;
}
.gallery-images {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.gallery-row {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.cookes h2 {
  font-family: "Tinos-Regular", "Open Sans", sans-serif;
  font-size: 54px;
  text-align: center;
  font-weight: 400;
  margin: 100px 0;
}
.cookes span {
  font-family: "Tinos-Regular", "Open Sans", sans-serif;
  font-weight: 400;
  color: #d67e34;
}
.cookes__inner {
  display: flex;
  justify-content: center;
  margin-bottom: 100px;
  gap: 20px;
}
.slide img {
  margin: 20px 0 10px;
  border-radius: 50%;
  max-width: 100px;
  width: 100%;
  height: 100px;
  object-fit: cover;
}
.slide h4 {
  font-size: 20px;
  font-weight: 500;
}
.slide h5 {
  font-size: 20px;
  font-weight: 400;
}
.gallery-row img {
  max-width: 100%;
  width: 100%;
  flex: 1 1 calc(33.333% - 10px);
  object-fit: cover;
  transition: transform 0.3s ease;
}
@media (max-width: 1080px) {
  .gallery-row {
    flex-wrap: wrap;
  }
  .cookes__inner {
    flex-wrap: wrap;
  }
  .history-gallery img {
    max-width: 100%;
    width: 100%;
  }
  .dishes__inner {
    flex-direction: column;
  }
  .menu-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .menu-block-2 {
    display: none;
  }
  .benefits-block p {
    font-size: 18px;
  }
  .promo__inner {
    margin-left: 50px;
  }
  .header {
    padding: 10px 0;
  }
}
@media (max-width: 768px) {
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    transition: transform 0.3s ease;
    cursor: pointer;
    width: 35px;
    height: 30px;
    z-index: 1001;
  }
  .burger span {
    width: 28px;
    height: 3px;
    background-color: #ff7400;
    transition: all 0.4s ease;
  }
  .header {
    padding: 20px 0;
    margin-top: 0;
  }
  .header-line {
    display: none;
  }
  .header__nav {
    position: absolute;
    top: 70px;
    left: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ff9a00, #ff7400, #ff3c00);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transform: translateY(-150%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1000;
  }
  .header__nav.open {
    transform: translateY(0);
    opacity: 1;
  }
  .header__nav ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
  }
  .header__contact,
  .header__order {
    display: none;
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  .benefits-grid {
    display: flex;
    flex-direction: column;
  }
  .benefits-block {
    max-width: 500px;
    padding: 10px;
  }
  .benefits-block h4 {
    font-size: 26px;
    font-weight: 400;
    white-space: nowrap;
  }
  .benefits-block p {
    font-size: 22px;
  }
  .history__inner {
    flex-direction: column;
  }
  .promo__inner {
    flex-direction: column;
    gap: 40px;
    align-items: center;
    margin: 0;
    padding: 60px 20px 20px 20px;
  }
  .promo-description {
    align-items: center;
  }
  .promo-description h2 {
    font-size: 30px;
    text-align: center;
  }
  .promo-description h3 {
    font-size: 24px;
    text-align: center;
  }
  .benefits__inner {
    padding: 10px;
  }
  .history-description h2 {
    text-align: center;
    justify-content: center;
    font-size: 40px;
  }
  .history-amount {
    flex-direction: column;
  }
  .dishes-photo img {
    max-width: 100%;
    width: 100%;
  }
  .hero__welcome h1 {
    font-size: 30px;
  }
  .hero__welcome span {
    font-size: 40px;
  }
  .hero__welcome h4 {
    font-size: 15px;
  }
  .slide p {
    font-size: 20px;
    max-width: 290px;
  }
  .gallery h2 {
    font-size: 40px;
  }
  .gallery {
    padding: 15px;
  }
  .cookes h2 {
    font-size: 40px;
  }
  .cookes__inner img {
    max-width: 100%;
    width: 100%;
  }
  .cookes {
    padding: 15px;
  }
  .benefits-grid {
    gap: 15px;
  }
  .history-description p {
    max-width: 290px;
  }
  .history {
    margin-top: 100px;
  }
  .dishes-menu,
  .history {
    padding: 15px;
  }
  .hero__welcome {
    margin-top: 250px;
  }
  .history-description {
    margin-bottom: 40px;
  }
  .dishes-menu__block p span {
    display: none;
  }
  .logo a svg {
    max-width: 45px;
    width: 100%;
    height: 31px;
  }
}
