:root {
  --black: #311F09;
  --golden: #F7C334;
}

body, html {
  font-family: Montserrat;
  font-size: 20px;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

/* Универсальный контейнер */
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.phone-img {
  width: 16px;
  height: 16px;
  /* margin-bottom: 37.5px; */
}



/* HEADER */


.logo {
  color:  var(--golden);
  display: block;                /* или inline-block, если в строке */
  max-width: 250px;              /* ограничение по ширине, чтобы не растягивать слишком сильно */
  height: auto;                  /* сохраняет пропорции изображения */
  margin: 0 auto 25px auto;      /* выравнивание по центру */
}

header {
  margin-top: 25px;
  position: relative;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--black);
  position: relative;
}

.header-content__last {
  align-items: center;
  display: flex;
  gap: 15px;
  color: var(--black);
  margin-left: auto;
}

.desktop-nav {
  display: flex;
  gap: 25px;
}
.desktop-nav a {
  text-decoration: none;
  color: var(--black);
  display: inline-block;
}
.desktop-nav a:last-of-type {
  margin-right: 0;
}
.mobile-nav {
  display: none;
}
.mobile-nav a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  padding: 18px 0;
  border: none;
  text-align: center;
  margin-bottom: 18px;
  letter-spacing: 1px;
  transition: color 0.2s, transform 0.3s;
  width: 100%;
  position: relative;
}

.mobile-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--golden);
  left: 50%;
  bottom: 5px;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.mobile-nav a:hover::after {
  width: 40%;
}
.mobile-nav a:last-child {
  margin-bottom: 0;
}
.mobile-nav a:hover {
  color: #fff6d6;
  transform: scale(1.05);
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.burger {
  display: none;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 120;
  padding: 0;
  margin-left: 5px;
  position: relative;
}

.burger-lines {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.burger-cross {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  font-weight: bold;
  color: #fff;
}
.burger span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--golden);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}
.burger.active .burger-lines {
  display: none;
}

.burger.active .burger-cross {
  display: block;
}

/* Добавляем специальные стили для планшетов и среднего размера экрана */
@media (min-width: 600px) and (max-width: 900px) {
  .burger {
    margin-right: 10px;
    position: relative;
    z-index: 2200;
    right: 0;
    width: 30px;
    height: 30px;
  }
  .burger span {
    width: 25px;
  }
  .header-content__last {
    padding-right: 15px;
    justify-content: flex-end;
  }
  
  /* Измененная анимация крестика для планшетов */
  .burger.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .bg-left {
    /* left: ...;
       bottom: ...;
       width: ...;
       top: ...;
       любые другие стили */
  }
  .bg-right {
    /* right: ...;
       top: ...;
       width: ...;
       bottom: ...;
       любые другие стили */
  }
}
.mobile-nav.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--black);
  box-shadow: 0 8px 32px rgba(49,31,9,0.3);
  padding: 90px 20px 32px 20px;
  z-index: 110;
  align-items: center;
  gap: 0;
  animation: slideDown .3s;
}
@keyframes slideDown {
  0% { transform: translateY(-30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

nav a:hover {
  color: var(--golden);
  transition: all .4s ease;
  transform: scale(1.05);
}

nav a:last-of-type {
  margin-right: 0;
}

nav a {
  text-decoration: none;
  margin-right: 25px;
  color: var(--black);
  display: inline-block;
}

.phone-container {
  display: flex;
  align-items: center;
}

.phone-text {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  max-width: 180px;
  text-align: right;
}

.phone-text-size {
  font-size: 12px;
}

.header-btn {
  text-decoration: none;
  border-radius: 140px;
  background-color: #F7C334;
  /* height: 44px; */
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  align-items: center;
  padding: 16px;
}

.header-btn:hover {
  background-color: #253C47;
  transition: all .4s ease;
  transform: scale(1.05);
}

.language-btn {
  text-decoration: none;
  color: var(--black);
}

.language-btn:hover {
  color: var(--golden);
  transition: color .4s ease;
  transform: scale(1.1);
}

/* BOOKING MODAL CUSTOM DESIGN */
.booking-modal-content {
  background: #FAF6F0;
  border-radius: 18px;
  max-width: 650px;
  margin: 40px auto;
  padding: 36px 36px 30px 36px;
  box-shadow: 0 8px 32px rgba(49,31,9,0.13);
  position: relative;
  font-family: Montserrat, Arial, sans-serif;
}
.booking-modal-title {
  font-size: 44px;
  color: #BFA77A;
  font-weight: 500;
  margin-bottom: 24px;
  text-align: left;
  letter-spacing: 1px;
}
.booking-restaurant-select {
  margin-bottom: 24px;
}
.booking-restaurant-label {
  font-size: 20px;
  color: #BFA77A;
  margin-bottom: 10px;
  display: block;
  font-weight: 500;
}
.booking-restaurant-list {
  display: flex;
  gap: 16px;
}
.booking-restaurant-item {
  background: #fff;
  border: 1.5px solid #E6E2DB;
  border-radius: 12px;
  padding: 18px 22px;
  font-size: 18px;
  color: #311F09;
  font-weight: 500;
  cursor: pointer;
  transition: border 0.2s, box-shadow 0.2s;
}
.booking-restaurant-item.active,
.booking-restaurant-item:hover {
  border: 1.5px solid #BFA77A;
  box-shadow: 0 2px 8px rgba(191,167,122,0.12);
}
.booking-form {
  margin-top: 10px;
}
.booking-fields-row {
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.booking-field {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
}
.booking-field-wide {
  flex: 2 1 100%;
}
.booking-field label {
  font-size: 16px;
  color: #BFA77A;
  margin-bottom: 7px;
  font-weight: 500;
}
.booking-field input,
.booking-field select,
.booking-field textarea {
  font-size: 18px;
  padding: 12px 14px;
  border: 1.5px solid #E6E2DB;
  border-radius: 10px;
  background: #fff;
  color: #311F09;
  outline: none;
  margin-bottom: 0;
  font-family: inherit;
  resize: none;
  transition: border 0.2s;
}
.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  border: 1.5px solid #BFA77A;
}
.booking-field textarea {
  min-height: 48px;
  max-height: 120px;
}
.booking-submit-btn {
  width: 100%;
  background: #BFA77A;
  color: #fff;
  font-size: 22px;
  border: none;
  border-radius: 12px;
  padding: 16px 0;
  font-weight: 600;
  margin-top: 10px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(191,167,122,0.12);
}
.booking-submit-btn:hover {
  background: #F7C334;
  color: #311F09;
  transform: scale(1.03);
}
.booking-response-message {
  margin-top: 8px;
  font-size: 16px;
  min-height: 24px;
}
@media (max-width: 900px) {
  .container {
    max-width: 100%;
    padding: 0 10px;
  }
  .header-content {
    flex-direction: row;
    gap: 2px;
    min-width: 0;
    padding: 10px 0;
    align-items: center;
    justify-content: space-between;
  }
  .main-content-welcome-first {
    align-items: center;
    text-align: center;
    padding: 20px 10px;
  }

  .desktop-nav {
    display: none !important;
  }
  .burger {
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    margin-left: 0;
    margin-right: 0;
    z-index: 2001;
    cursor: pointer;
    transition: background 0.2s;
  }
  
  .burger-cross {
    font-size: 36px;
  }
  .burger span {
    display: block;
    height: 4px;
    width: 28px;
    background: var(--golden);
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.3s;
  }
  .burger:hover span {
    background: #fff6d6;
  }
  .mobile-nav {
    display: none;
  }
  .mobile-nav {
    background: var(--black);
    transition: opacity 0.3s, transform 0.3s;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-30px) scale(0.98);
  }
  .mobile-nav.open {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #253C47;
    z-index: 1900;
    padding: 60px 0 0;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    align-items: center;
    justify-content: flex-start;
  }
  .mobile-nav.closing {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-30px) scale(0.98);
    transition: opacity 0.3s, transform 0.3s;
  }
  .close-mobile-nav {
    position: absolute;
    top: 18px;  
    right: 18px;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    z-index: 2010;
    font-size: 48px;
    /* color: var(--golden); */
    background: none;
    border: none;
    z-index: 2100;
    cursor: pointer;
    line-height: 1;
    font-weight: 700;
    transition: color 0.2s;
  }
  .close-mobile-nav:hover {
    color: #fff6d6;
  }
  .header-content__last {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
  }
  .main-content, .main-full-blocks {
    width: 100%;
    min-width: 0;
    padding: 0 0 30px 0 !important;
    box-sizing: border-box;
    margin: 0;
    overflow-x: hidden;
  }
  .main-full-blocks {
    flex-direction: column;
    gap: 12px;
    padding-top: 16px;
    max-width: 98vw;
    width: 100%;
    margin: 0 auto;
  }
  .main-content-block {
    width: 90%;
    margin: 0 auto 15px auto;
  }
  .footer_container {
      display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 15px;
  align-items: flex-start;
  }
  .footer_bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    padding: 0 8px;
    box-sizing: border-box;
    max-width: 100%;
  }
  .gallery-image {
    height: auto;
    min-width: 0;
    max-height: 220px;
  }
  .gallery-swiper {
    height: 220px;
  }
}

@media (max-width: 600px) {
  body, html {
    font-size: 15px;
  }
  .container {
    padding: 0 6px;
  }
  .header-content {
    padding: 10px 0;
    min-width: 0;
  }
  .header-content__last {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
  }
  
  .phone-container {
    display: none;
  }
  
  /* Блоки с золотыми заголовками */
  .main-full-blocks {
    grid-template-columns: 1fr;
    margin: 20px 0;
  }
  .main-block {
    padding: 20px;
    min-height: auto;
    margin-bottom: 15px;
  }
  .main-block-title {
    font-size: 20px;
  }
  .main-block-text {
    font-size: 14px;
    margin-top: 10px;
  }
  .main-background-image img, .bg-right, .bg-left {
    display: none !important;
  }
  
  .main-content, .main-full-blocks {
    padding: 0 0 10px 0 !important;
    width: 100%;
    min-width: 0;
  }
  .main-content-block {
    padding: 10px 4px;
    font-size: 15px;
    width: 100%;
    min-width: 0;
  }
  /* .footer_container, .footer_bottom {
    padding: 0 2px;
    width: 100vw;
    min-width: 0;
  } */
  .gallery-image {
    height: auto;
    min-width: 0;
    max-height: 180px;
  }
  .gallery-swiper {
    height: 180px;
  }
  .burger {
    width: 32px;
    height: 32px;
  }
  .mobile-nav.open {
    padding: 60px 10px 10px 10px;
    font-size: 18px;
  }
  
  .booking-modal-content {
    padding: 18px 4vw 18px 4vw;
    max-width: 98vw;
  }
  .booking-fields-row {
    flex-direction: column;
    gap: 8px;
  }
  .booking-modal-title {
    font-size: 30px;
  }
}

@media (max-width: 400px) {
  .gallery-image {
    max-height: 140px;
  }
  .gallery-swiper {
    height: 140px;
  }
}

/* === MAIN === */

.main-content {
  position: relative;
  overflow: hidden;
  padding: 60px 0px 100px 0px;
}

@media (max-width: 768px) {
  .main-content {
    padding: 50px 0;
  }
}

@media (max-width: 480px) {
  .main-content {
    padding: 30px 0;
  }
}

/* Фоновые изображения */
.main-background-image {
  position: absolute;
  z-index: 1;
  opacity: 0.05;
  pointer-events: none;
  overflow: hidden;
  width: 100%;
  height: auto;
}

.bg-left,
.bg-right {
  position: absolute;
  z-index: 1;
  opacity: 0.25;
  pointer-events: none;
}

.bg-left {
  left: -20px;
  bottom: 332px;
  width: 250px;
}

.bg-right {
  right: 1px;
  bottom: 490px;
  width: 280px;
  transform: translateY(48%);
}

/* Контент поверх */
.main-content-welcome-first,
.main-full-blocks {
  position: relative;
  z-index: 2;
}

/* Картинки в блоках */
.main-block-img {
  width: 87px;
  margin-bottom: 15px;
}

/* Блоки с фразами */
.main-full-blocks {
  padding-top: 30px;
  display: flex;
  width: 100%;
  max-width: 1110px;
  margin: 0 auto;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .main-full-blocks {
    gap: 15px;
    padding-top: 20px;
  }
}

.main-content-block {
  padding-top: 20px;
  width: 350px;
  text-align: center;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
}

@media (max-width: 768px) {
  .main-content-block {
    width: calc(50% - 10px);
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .main-content-block {
    width: 100%;
    margin-bottom: 15px;
  }
}

/* Заголовки */
.welcome-btn {
  color: var(--golden);
  font-size: 57px;
  padding-left: 30px;
}

@media (max-width: 768px) {
  .welcome-btn {
    font-size: 40px;
    padding-left: 0;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .welcome-btn {
    font-size: 32px;
  }
}

.welcome-subtitle {
  color: var(--golden);
  padding-bottom: 50px;
  font-size: 80px;
}

@media (max-width: 768px) {
  .welcome-subtitle {
    font-size: 50px;
    padding-bottom: 30px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .welcome-subtitle {
    font-size: 36px;
    padding-bottom: 20px;
  }
}

/* Кнопка */
.main-content-btn {
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  background-color: var(--golden);
  border-radius: 140px;
  width: 300px;
  text-align: center;
  padding: 15px 0px;
  transition: all 0.4s ease;
}

@media (max-width: 480px) {
  .main-content-btn {
    width: 90%;
    max-width: 300px;
  }
}

.btn {
  display: block;          /* сделать ссылку блочным элементом */
  width: 100%;             /* растянуть на всю ширину родителя */
  color: #FFF;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: normal;
  text-decoration: none;
}

.main-content-btn:hover {
  background-color: #253C47;
  transform: scale(1.05);
}

/* Чтобы не было проблем с пустым классом */
.main-content-welcome-first {
  display: flex;
  flex-direction: column;
  align-items: center;
}


/* HISTORY */

.history {
  padding-bottom: 70px;
}

@media (max-width: 768px) {
  .history {
    padding-bottom: 40px;
  }
}

.history_info {
  padding-top: 15px;
  width: 590px;
  text-align: center;
}

@media (max-width: 600px) {
  .history_info {
    width: 100%;
    padding: 15px 10px;
  }
}


.history_title {
  font-size: 54px;
  font-weight: 400;
  padding-top: 100px;
  padding-bottom: 20px;
}

@media (max-width: 768px) {
  .history_title {
    font-size: 36px;
    padding-top: 50px;
  }
}

.highlight {
  color: var(--golden)
}
/* .history_images{

  position: relative;
} */

.history_holder {
  gap: 35px;
  display: flex;
  /* margin-left: 380px; */
    justify-content: center;
}

@media (max-width: 1200px) {
  .history_holder {
    margin-left: 0;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .history_holder {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

.history_image {
  margin-right: 10px;
  /* padding   */
  width: 550px;
  height: 510px;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  transition: box-shadow 0.3s, transform 0.3s;
}

@media (max-width: 768px) {
  .history_image {
    width: 100%;
    height: auto;
    /* padding-top: 20px; */
    max-width: 450px;
  }
}

.imgages-1 {
  position: absolute;
  z-index: 0;
  top: 54px;
  left: 211px;
  width: 250px;
  height: 250px;
}

@media (max-width: 768px) {
  .imgages-1 {
    width: 150px;
    height: 150px;
    top: 30px;
    left: 50px;
  }
}

@media (max-width: 480px) {
  .imgages-1 {
    width: 100px;
    height: 100px;
    top: 20px;
    left: 20px;
  }
}

.imgages-2 {
  position: absolute;
  z-index: 999;
  top: -92px;
  left: 383px;
  width: 250px;
  height: 250px;
}

@media (max-width: 768px) {
  .imgages-2 {
    width: 150px;
    height: 150px;
    top: -60px;
    left: 200px;
  }
}

@media (max-width: 480px) {
  .imgages-2 {
    width: 100px;
    height: 100px;
    top: -40px;
    left: 120px;
  }
}

.imgages-3 {
  position: absolute;
  z-index: 999;
  top: 246px;
  left: 481px;
  width: 250px;
  height: 250px;
}

/*  order */

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}

.modal.show {
  display: block;
}

.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.modal-content h2 {
  color: var(--black);
  margin-bottom: 20px;
  text-align: center;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: var(--black);
  font-weight: 500;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--golden);
}

#bookingForm button {
  width: 100%;
  padding: 12px;
  background-color: var(--golden);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
}

#bookingForm button:hover {
  background-color: #253C47;
}

.close {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: var(--black);
}

.close:hover {
  color: var(--golden);
}

#bookingForm {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#bookingForm label {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#bookingForm input,
#bookingForm select {
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

#bookingForm button:hover {
  background-color: #253C47;
}

.order_block {
  background-color: #253C47;
  padding-bottom: 50px;
  width: 100%;
  overflow-x: hidden;
}

.block_holder {
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.left {
  /* width: 61%;
  margin-left: 380px; */
  margin-bottom: 30px;
}

.left-title {
  color: var(--golden);
  font-size: 52px;
  font-weight: 400;
  margin-bottom: 20px;
}

.left-text {
  font-weight: 700;
  font-size: 24px;
  color: #fff;
}

.right-btn {
  text-decoration: none;
  border-radius: 140px;
  background-color: #F7C334;
  color: #fff;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  align-items: center;
  padding: 16px;
  display: inline-block;
  margin-top: 20px;
}

.right-btn:hover {
  background-color: #727477;
  transition: all .4s ease;
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .block_holder {
    align-items: center;    
    padding: 30px 15px;
    width: 100%;
  }
  .left {
    width: 100%;
    margin-left: 0;
    padding: 0 15px;
    box-sizing: border-box;
  }
  .left-title {
    font-size: 42px;
    text-align: center;
  }
  .left-text {
    font-size: 20px;
    text-align: center;
  }
  .right-btn {
    margin: 20px auto 0;
    display: block;
    text-align: center;
    max-width: 250px;
  }
}

@media (max-width: 600px) {
  .left-title {
    font-size: 32px;
  }
  .left-text {
    font-size: 18px;
  }
  .right-btn {
    font-size: 18px;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .left-title {
    font-size: 28px;
  }
  .left-text {
    font-size: 16px;
  }
  .block_holder {
    padding: 20px 10px;
  }
}





/* dishes */

/* .dishes_title{
  padding-top: 30px;
  text-align: center;
  font-size: 54px;
}

.dishes_title span {
  color: var(--golden);
}

/* Начало блока dishes */
.dishes_block {
  display: flex;
  justify-content: space-between;
}

.dishes_btn {
  text-decoration: none;
  border-radius: 140px;
  background-color: #F7C334;
  color: #FFF;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  align-items: center;
  padding: 16px;
}

.dishes_button:hover {
  transition: all .4s ease;
  transform: scale(1.05);
}

.container {
  max-width: 1204px;
  margin: 0 auto;
  padding: 0 15px;
}

.dishes {
  padding: 60px 0;
  background: #fff;
  width: 100%;
  overflow-x: hidden;
}

.dishes_title {
  font-size: 52px;
  text-align: center;
  margin-bottom: 40px;
  color: #d4aa32;
  font-weight: bold;
}

.dishes_wrapper {
  display: flex;
  flex-direction: row;
  gap: 40px;
  justify-content: center;
}

.dishes_cards {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dishes_gallery {
  flex: 1;
  min-width: 0;
}

.dishes_gallery img:first-child {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.dishes_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.dishes_grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.dishes_cards {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dishes_card {
  display: flex;
  gap: 15px;
  background: #17313d;
  border-radius: 12px;
  padding: 15px;
  position: relative;
  color: white;
}

.dishes_card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

/* Responsive styles for dishes section */
@media (max-width: 900px) {
  .dishes {
    padding: 40px 0;
  }
  
  .dishes_title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .dishes_wrapper {
    flex-direction: column;
    gap: 30px;
  }
  
  .dishes_cards {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .dishes {
    padding: 30px 0;
  }
  
  .dishes_title {
    font-size: 26px;
    margin-bottom: 25px;
  }
  
  .dishes_wrapper {
    flex-direction: column;
    gap: 25px;
  }
  
  .dishes_gallery img:first-child {
    margin-bottom: 15px;
  }
  
  .dishes_grid {
    gap: 10px;
  }
}

@media (max-width: 600px) {
  .dishes {
    padding: 25px 0;
  }
  
  .dishes_title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .dishes_grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .dishes_card {
    padding: 12px;
  }
  
  .dishes_card img {
    width: 60px;
    height: 60px;
  }
  
  .dishes_card-content h4 {
    font-size: 15px;
  }
  
  .dishes_card-content p {
    font-size: 13px;
  }
}

.dishes_card-number {
  position: absolute;
  top: -10px;
  left: -10px;
  background: #0f2430;
  color: white;
  padding: 6px 10px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 14px;
}

.dishes_card-content h4 {
  margin: 0 0 6px;
  color: #ffd24c;
  font-size: 16px;
}

.dishes_card-content p {
  font-size: 14px;
  line-height: 1.4;
}

.dishes_button {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.dishes_btn {
  background-color: #F7C334;
  padding: 10px 25px;
  border-radius: 140px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 22px;
}

.dishes_btn:hover {
  background-color: #253C47;
  border-radius: 140px;
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .dishes_button {
    margin-top: 15px;
  }
  
  .dishes_btn {
    padding: 8px 20px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .dishes_card-number {
    font-size: 13px;
    padding: 5px 9px;
  }
}

@media (max-width: 600px) {
  .dishes_card-number {
    font-size: 12px;
    padding: 4px 8px;
    top: -8px;
    left: -8px;
  }
  
  .dishes_button {
    margin-top: 10px;
  }
  
  .dishes_btn {
    padding: 8px 15px;
    font-size: 14px;
  }
}

 /* reviews  */

.reviews {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #253C47;
  width: 100%;
  overflow-x: hidden;
}


.reviews_tittle {

  text-align: center;
  font-size: 54px;
  color: #fff;
}

.reviews_tittle span {
  color: var(--golden);
}

.reviews_container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin: 0 auto;
}

.reviews_container > div {
  width: 100%;
  max-width: 600px; /* или 700px */
  height: 450px;    /* уменьшенная высота */
  overflow: hidden;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 0;
}

.reviews_tittle {
  text-align: center;
  margin-bottom: 24px;
}

.reviews-iframe-wrapper {
  width: 100%;
  max-width: 600px;
  height: 450px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}


/* GALLERY */

.gallery_tittle{
  text-align: center;
  font-size: 54px;
  color: var(--golden);
  padding-top: 20px;
  padding-bottom: 20px;
}

@media (max-width: 768px) {
  .gallery_tittle {
    font-size: 36px;
  }
}

.gallery-section {
  padding: 20px 0; /* уменьшили вертикальные отступы */
  background-color: #f9f9f9;
  text-align: center;
}

.gallery-swiper {
  position: relative;
}
.gallery-swiper .swiper-button-prev,
.gallery-swiper .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.3);
  color: var(--golden);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: background 0.2s;
  opacity: 1;
}
.gallery-swiper .swiper-button-prev {
  left: 10px;
}
.gallery-swiper .swiper-button-next {
  right: 10px;
}
@media (max-width: 600px) {
  .gallery-swiper .swiper-button-prev,
  .gallery-swiper .swiper-button-next {
    width: 32px;
    height: 32px;
    font-size: 20px;
  }
  .gallery-swiper .swiper-button-prev {
    left: 2px;
    right: auto;
  }
  .gallery-swiper .swiper-button-next {
    right: 2px;
    left: auto;
  }
}

.gallery-swiper .slide-content {
  width: 100%;
  height: auto;
}

.gallery-swiper .slide-content img {
  width: 100%;
  height: auto;
  object-fit: contain; /* показываем целиком без обрезки */
  border-radius: 12px;
}

.gallery-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.02);
}

.image-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.image-modal img {
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 90vh;
  object-fit: unset;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 40px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.gallery-swiper .slide-content img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;     /* изображение заполняет контейнер без искажений */
  border-radius: 12px;
}

.footer {
  background-color: #253C47;
  color: white;
  padding: 40px 0 20px;
}

.footer_container{
   display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 15px;
  align-items: flex-start;
}

.footer_left {
  max-width: 300px;
}

.work_time {
  /* margin-top: 15px; */
}

.work_time strong {
  display: block;
  /* margin-bottom: 5px; */
}

.footer_column{
  max-width: 200px;
}

.footer_column strong {
  display: block;
  margin-bottom: 10px;

}

.footer_column ul {
  list-style: none;
  padding: 0;
}

.footer_column ul li {
  margin-bottom: 8px;
}

.footer_column ul li a {
  color: #FFF;
  text-decoration: none;

}

.footer_column ul li a:hover {
  color: var(--golden);
  text-decoration: underline;
}

.social_media{
  text-align: center;
  margin: 20px 0;
}

.instagram_icon{
  
  color: #fff;
  text-decoration: none;

}

.instagram_img {
  width: 46px;
  height: 46px;
}

.footer_bottom{
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid #444;
  font-size: 14px;
}

.policy_links a {

    color: #FFF;
    text-decoration: none;
    margin-left: 15px;

}

.policy_links a:hover
 {
  color: var(--golden);
  text-decoration: underline;
}

#yandex-reviews {
  width: 100%;
  height: 400px;
  margin: 20px 0;
}

.reviews_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.reviews-form {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.reviews-form h3 {
  color: #253C47;
  margin-bottom: 20px;
  font-size: 24px;
}

.review-field {
  margin-bottom: 15px;
}

.review-field label {
  display: block;
  margin-bottom: 5px;
  color: #253C47;
  font-weight: 500;
}

.review-field input,
.review-field textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
}

.review-field textarea {
  min-height: 100px;
  resize: vertical;
}

.rating {
  display: flex;
  gap: 5px;
}

.star {
  font-size: 24px;
  color: #ddd;
  cursor: pointer;
  transition: color 0.2s;
}

.star.active,
.star:hover {
  color: #F7C334;
}

.review-submit {
  background: #F7C334;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.review-submit:hover {
  background: #253C47;
}

.reviews-list {
  display: grid;
  gap: 20px;
}

.review-item {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.review-name {
  font-weight: 600;
  color: #253C47;
}

.review-date {
  color: #666;
  font-size: 14px;
}

.review-rating {
  color: #F7C334;
  margin-bottom: 10px;
}

.review-text {
  color: #333;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .gallery-image {
    max-height: 220px;
  }
  .gallery-swiper {
    height: 220px;
  }
}

@media (max-width: 600px) {
  .gallery-image {
    max-height: 180px;
  }
  .gallery-swiper {
    height: 180px;
  }
}

@media (max-width: 400px) {
  .gallery-image {
    max-height: 140px;
  }
  .gallery-swiper {
    height: 140px;
  }
}

/* === GALLERY SECTION === */
.gallery-section {
  padding: 50px 0;
  background-color: #fff;
}

.gallery_tittle {
  text-align: center;
  font-size: 36px;
  color: var(--golden);
  margin-bottom: 40px;
  font-weight: bold;
}

.gallery-swiper {
  width: 100%;
  height: 400px; /* You can adjust this height */
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.gallery-swiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Navigation buttons */
.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
  color: rgb(74, 74, 160);
  opacity: 1;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-swiper .swiper-button-next {
  right: 10px;
}

.gallery-swiper .swiper-button-prev {
  left: 10px;
}

/* Pagination bullets */
.gallery-swiper .swiper-pagination-bullet-active {
  background: var(--golden);
}

/* === GALLERY SWIPER BUTTONS (classic style) === */
.gallery-swiper .swiper-button-prev,
.gallery-swiper .swiper-button-next {
  background: none;
  color: var(--golden) !important;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 36px;
  box-shadow: none;
  opacity: 1;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-swiper .swiper-button-prev::after,
.gallery-swiper .swiper-button-next::after {
  color: var(--golden);
  font-size: 36px;
}

/* === GALLERY IMAGE BIGGER === */
.gallery-swiper {
  height: 320px;
}
.gallery-image {
  max-height: 320px;
  min-height: 220px;
  object-fit: cover;
}
@media (max-width: 900px) {
  .gallery-swiper {
    height: 260px;
  }
  .gallery-image {
    max-height: 260px;
    min-height: 180px;
  }
}
@media (max-width: 600px) {
  .gallery-swiper {
    height: 200px;
  }
  .gallery-image {
    max-height: 200px;
    min-height: 140px;
  }
}

@media (min-width: 600px) and (max-width: 900px) {
  .bg-left {
    bottom: 10px;
    /* left: ...;
       bottom: ...;
       top: ...;
       width: ...;
       любые другие стили */
  }
  .bg-right {
  right: 24px;
  top: 240px;
    /* right: ...;
       top: ...;
       width: ...;
       bottom: ...;
       любые другие стили */
  }
}


@media (min-width: 900px) and (max-width: 1200px) {
  .bg-left {
    /* left: ...;
       bottom: ...;
       top: ...;
       width: ...;
       любые другие стили */
  }
  .bg-right {
  right: 10px;
    /* right: ...;
       top: ...;
       width: ...;
       bottom: ...;
       любые другие стили */
  }
}

@media (min-width: 1500px) and (max-width: 2560px) {
  .bg-left {
    /* left: ...;
       bottom: ...;
       top: ...;
       width: ...;
       любые другие стили */
  }
  /* .bg-right {
    display: none;
  } */
}


/* .footer_call {
  
} */