/* Four type sizes: h1, h2, gold Bebas titles, body. */
:root {
  --fs-body: 20px;
  --fs-title-md: 2rem;
  --fs-h2: 6rem;
  --fs-h1: 8rem;
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 150% !important;
}

h1,
h2,
h3 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-size: 100%;
  font-family: inherit;
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  text-align: inherit;
  line-height: inherit;image.png
  vertical-align: baseline;
}

h1 {
  font-family: "BebasNeueBold" !important;
  line-height: 90% !important;
  font-size: var(--fs-h1);
  text-align: center;
  max-width: 1200px;
  position: relative;
  z-index: 9;
}

h2 {
  font-family: "BebasNeueBold" !important;
  line-height: 90% !important;
  font-size: var(--fs-h2);
  text-align: center;
  max-width: 1000px;
  position: relative;
  z-index: 9;
}

h1,
h2,
.header_block a,
.footer_block_item_title,
.days,
.mobile-nav a,
.about_block_item h2,
.btn,
.menu_block_item_title,
.contact-form .wpforms-field-label,
.contact_block_info_title,
.contact_block_info_text span {
  letter-spacing: 0.05em;
}

body {
  margin: 0px;
  padding: 0px;
  font-size: var(--fs-body);
  background: #000000;
  font-family: "Quicksand-Medium";
  color: #ffffff;
  letter-spacing: 0.3px;
  overflow-x: hidden;
}

html {
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
  scroll-behavior: smooth;

  -webkit-font-smoothing: antialiased; /* для WebKit (Chrome, Safari) */
  -moz-osx-font-smoothing: grayscale; /* для Firefox на macOS */
  font-smooth: always; /* не везде работает, но можно оставить */
}

.section {
  margin-top: 100px;
}

a,
a:visited,
a:hover,
a:active,
a:focus {
  color: inherit;
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.container {
  width: 94%;
  max-width: 2200px;
  margin: 0 auto;
  position: relative; /* Необходимо для корректного позиционирования псевдоэлемента */
  z-index: 10;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.header_block {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 0px; /* Уменьшили нижний padding */
}

.header_block a {
  font-family: "BebasNeueBold" !important;
  color: #e4c503;
  font-size: var(--fs-title-md);
}

.header_block a:hover {
  color: #fff;
}

.logo img {
  width: 100%;
  margin-bottom: -45px; /* Логотип будет выходить за границы на 15px */
}

.footer {
  background: url("../img/footer.jpg") no-repeat center center;
  background-size: cover;
  width: 100%;
  height: auto;
  margin-top: 30px;
  padding: 100px 0px 0px 0px;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: -webkit-gradient(linear, left top, left bottom, from(#000), color-stop(50%, rgba(0, 0, 0, 0.7)), to(#000));
  background: -o-linear-gradient(top, #000 0%, rgba(0, 0, 0, 0.7) 50%, #000 100%);
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.7) 50%, #000 100%);
}

.logo img {
  width: 100%;
}

.footer_block {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-top: 60px;
}

.footer_block--hours {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 80px;
}

.footer_block_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer_block_item .btn {
  margin: 0 !important;
}

.footer_block_item img {
  width: 50px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer_block_item img:hover {
  scale: 0.8;
}

.footer_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
}

.footer_social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  line-height: 0;
}

.footer_social img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}

.footer_block_item_title {
  font-family: "BebasNeueBold" !important;
  color: #e4c503;
  font-size: var(--fs-title-md);
  text-align: center;
}

.footer_block_item_text {
  font-size: var(--fs-body);
  text-align: center;
}

.days {
  font-family: "BebasNeueBold" !important;
  color: #e4c503;
  font-size: 24px;
  text-align: center;
}

.footer_block_item__block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.logofooter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 60px;
}

.logofooter img {
  width: 120px;
}

.line {
  width: 100%;
  height: 1px;
  background: #e4c503;
  margin: 30px 0px;
}

.menu_footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.menu_footer a:hover {
  color: #e4c503;
}

.site_info {
  text-align: center;
  font-size: 16px;
  margin-top: 60px;
  margin-bottom: 30px;
}

.burger_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  margin-top: -10px;
}

.tar {
  text-align: right;
}

/* Стили для бургер-кнопки */
.burger {
  width: 30px;
  height: 25px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  z-index: 102;
}

.burger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #e4c503;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* Анимация бургера при открытии */
.burger.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(5px, 5px);
  -ms-transform: rotate(45deg) translate(5px, 5px);
  transform: rotate(45deg) translate(5px, 5px);
}

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

.burger.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(7px, -6px);
  -ms-transform: rotate(-45deg) translate(7px, -6px);
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Мобильное меню */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: -o-linear-gradient(315deg, #000 0%, #1a1a1a 100%);
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  z-index: 101;
  -webkit-transition: right 0.3s ease;
  -o-transition: right 0.3s ease;
  transition: right 0.3s ease;
  -webkit-box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-content {
  padding: 80px 30px 30px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 50%;
  background: rgba(228, 197, 3, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.mobile-menu-close::before,
.mobile-menu-close::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: #e4c503;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mobile-menu-close::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mobile-menu-close::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.mobile-menu-close:hover {
  background: rgba(228, 197, 3, 0.2);
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.mobile-menu-close:hover::before,
.mobile-menu-close:hover::after {
  background: #fff;
}

.mobile-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.mobile-nav a {
  font-family: "BebasNeueBold" !important;
  font-size: var(--fs-title-md);
  color: #e4c503;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 10px 0;
  border-bottom: 1px solid rgba(228, 197, 3, 0.2);
}

.mobile-nav a:hover {
  color: #fff;
  -webkit-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  transform: translateX(-10px);
  border-bottom-color: #e4c503;
}

/* Overlay для закрытия меню при клике вне его */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Медиа-запросы для адаптивности */
@media (max-width: 768px) {
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
}

.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: url("../img/hero.jpg") no-repeat center center;
  background-size: cover !important;
  width: 100%;
  height: 100vh;
  position: relative;
}

p {
  margin-bottom: 10px;
}

.hero_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  z-index: 10;
  gap: 10px;
}

.hero::before {
  content: "";
  z-index: 5;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#00000071), color-stop(50%, rgba(0, 0, 0, 0.7)), to(#0000005b));
  background: -o-linear-gradient(top, #00000071 0%, rgba(0, 0, 0, 0.7) 50%, #0000005b 100%);
  background: linear-gradient(180deg, #00000071 0%, rgba(0, 0, 0, 0.7) 50%, #0000005b 100%);
}

.pbottom {
  z-index: 6;
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  right: 0;
  bottom: 0;
}

.ptop {
  z-index: 6;
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  right: 0;
  top: 0;
}

.about_block {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about_block_right {
  grid-template-columns: 1.5fr 1fr;
}

.about_block_item img {
  width: 100%;
}

.about_block_item h2 {
  font-family: "BebasNeueBold" !important;
  color: #e4c503;
  font-size: var(--fs-title-md) !important;
  text-align: left;
}

.about_text {
  margin-top: 15px;
  max-width: 1000px;
}

.btn {
  background: #d4b503;
  padding: 15px 36px 26px 36px;
  text-align: center;
  font-family: "BebasNeueBold" !important;
  font-size: var(--fs-title-md);
  color: #000 !important;
  margin-top: 40px;
  display: inline-block;
  border: none;
  border-radius: 0;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), 50% 100%, 0 calc(100% - 14px));
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), 50% 100%, 0 calc(100% - 14px));
}

.btn:hover {
  background: #fff;
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}

.description {
  max-width: 800px;
  text-align: center;
  font-size: var(--fs-body);
  margin: 0 auto;
}

.hero_block_call {
  font-family: "Radens" !important;
  color: #d4b503;
  font-size: var(--fs-h1);
  line-height: 90% !important;
  position: absolute;
  z-index: 8;
  opacity: 0.5;
  max-width: 800px;
  text-align: center;
}

.photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: url("../img/photo.jpg") no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  position: relative;
}

.photo::before {
  content: "";
  z-index: 5;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#00000071), color-stop(50%, rgba(0, 0, 0, 0.7)), to(#0000005b));
  background: -o-linear-gradient(top, #00000071 0%, rgba(0, 0, 0, 0.7) 50%, #0000005b 100%);
  background: linear-gradient(180deg, #00000071 0%, rgba(0, 0, 0, 0.7) 50%, #0000005b 100%);
}

.title_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  position: relative;
  z-index: 8;
}

.menu_block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  row-gap: 60px;
  max-width: 1000px;
  margin: 100px auto 0px auto;
}

.menu_block_item {
  text-align: center;
}

.menu_block_item:nth-child(-n + 2) {
  border-bottom: 1px solid #e4c503;
  padding-bottom: 40px;
}

.menu_block_item_title {
  font-family: "BebasNeueBold" !important;
  color: #e4c503;
  font-size: var(--fs-title-md);
  font-weight: 400;
  text-align: center;
}

.menu_block_item_text {
  margin-top: 15px;
  text-align: center;
}

.center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 30px;
}

.menubg {
  background: url("../img/menubg.jpg") no-repeat center center;
}

.menu1 {
  background: url("../img/menu1.jpg") no-repeat center center;
  height: 70vh;
}

.menu2 {
  background: url("../img/menubg.jpg") no-repeat center center;
  height: 70vh;
}

.menu3 {
  background: url("../img/menu3.jpg") no-repeat center center;
  height: 70vh;
}

.about2 {
  background: url("../img/about2.jpg") no-repeat center center;
  height: 70vh;
}

.directions {
  background: url("../img/directions.jpg") no-repeat center center;
}

.menufile {
  max-width: 800px;
  margin: 30px auto 0px auto;
}

.menufile img {
  width: 100%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.menufile a {
  display: block;
  text-decoration: none;
}

.menufile img:hover {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Контейнер для сохранения пропорций 16:9 */
.map-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16/7;
  margin-top: 60px;
}

/* Стили для самой карты, чтобы она заполнила контейнер */
.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-filter: grayscale(80%);
  filter: grayscale(80%); /* Черно-белый фильтр */
}

.about {
  background: url("../img/about.jpg") no-repeat center center;
}

.contact {
  background: url("../img/contact.jpg") no-repeat center center;
}
/* Стили для контактной формы */
.contact-form {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-form .wpforms-container {
  background: transparent;
}

.contact-form .wpforms-field {
  width: 100% !important;
  margin-bottom: 20px !important;
}

.contact-form .wpforms-field-row {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  gap: 15px !important;
}

.contact-form .wpforms-field-row .wpforms-field {
  -webkit-box-flex: 1 !important;
  -ms-flex: 1 !important;
  flex: 1 !important;
}

.contact-form .wpforms-field-label {
  color: #e4c503 !important;
  font-family: "BebasNeueBold" !important;
  font-size: var(--fs-body) !important;
  margin-bottom: 8px;
}

.contact-form .wpforms-field input,
.contact-form .wpforms-field textarea,
.contact-form .wpforms-field select {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 2px solid rgba(228, 197, 3, 0.3) !important;
  color: #ffffff !important;
  padding: 12px 15px !important;
  border-radius: 5px !important;
  /* Stays at 16px minimum so iOS does not zoom in on focus */
  font-size: var(--fs-body) !important;
  -webkit-transition: all 0.3s ease !important;
  -o-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
  width: 100% !important;
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
}

.contact-form .wpforms-field input:focus,
.contact-form .wpforms-field textarea:focus,
.contact-form .wpforms-field select:focus {
  border-color: #e4c503 !important;
  -webkit-box-shadow: 0 0 10px rgba(228, 197, 3, 0.3) !important;
  box-shadow: 0 0 10px rgba(228, 197, 3, 0.3) !important;
  outline: none !important;
}

.contact-form .wpforms-field input::-webkit-input-placeholder,
.contact-form .wpforms-field textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

.contact-form .wpforms-field input::-moz-placeholder,
.contact-form .wpforms-field textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

.contact-form .wpforms-field input:-ms-input-placeholder,
.contact-form .wpforms-field textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

.contact-form .wpforms-field input::-ms-input-placeholder,
.contact-form .wpforms-field textarea::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

.contact-form .wpforms-field input::placeholder,
.contact-form .wpforms-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

.contact-form .wpforms-submit-container {
  text-align: left;
  margin-top: 30px;
}

.contact-form .wpforms-submit {
  background: #e4c503 !important;
  color: #000000 !important;
  font-family: "BebasNeueBold" !important;
  font-size: var(--fs-body) !important;
  padding: 15px 40px 26px 40px !important;
  border: none !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  -webkit-transition: all 0.3s ease !important;
  -o-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), 50% 100%, 0 calc(100% - 14px)) !important;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), 50% 100%, 0 calc(100% - 14px)) !important;
}

.contact-form .wpforms-submit:hover {
  background: #d4b503 !important;
  -webkit-transform: translateY(-2px) !important;
  -ms-transform: translateY(-2px) !important;
  transform: translateY(-2px) !important;
  -webkit-box-shadow: 0 5px 15px rgba(228, 197, 3, 0.3) !important;
  box-shadow: 0 5px 15px rgba(228, 197, 3, 0.3) !important;
}

.contact-form .wpforms-error {
  color: #ff6b6b !important;
  font-size: var(--fs-body) !important;
  margin-top: 5px !important;
}

/* Стили для hero секции контактов */
.contact {
  background: url("../img/contact.jpg") no-repeat center center;
}

.contact_block_info_title {
  font-family: "BebasNeueBold" !important;
  color: #e4c503;
  font-size: var(--fs-title-md);
}

.contact_block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 60px auto 0px auto;
}

.contact_block_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}

.contact_block_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 15px;
  margin-top: 30px;
}

.contact_block_btns .btn {
  margin-top: 0;
  padding: 15px 36px 12px 36px;
  -webkit-clip-path: none;
  clip-path: none;
}

.contact_block_info_text span {
  font-family: "BebasNeueBold" !important;
  color: #e4c503;
  font-size: var(--fs-body);
  display: inline-block;
  margin-top: 10px;
}

#wpforms-20 {
  margin-top: 0px !important;
}

.wpforms-container input[type="date"],
.wpforms-container input[type="datetime"],
.wpforms-container input[type="datetime-local"],
.wpforms-container input[type="email"],
.wpforms-container input[type="month"],
.wpforms-container input[type="number"],
.wpforms-container input[type="password"],
.wpforms-container input[type="range"],
.wpforms-container input[type="search"],
.wpforms-container input[type="tel"],
.wpforms-container input[type="text"],
.wpforms-container input[type="time"],
.wpforms-container input[type="url"],
.wpforms-container input[type="week"],
.wpforms-container select,
.wpforms-container textarea,
.wp-core-ui div.wpforms-container input[type="date"],
.wp-core-ui div.wpforms-container input[type="datetime"],
.wp-core-ui div.wpforms-container input[type="datetime-local"],
.wp-core-ui div.wpforms-container input[type="email"],
.wp-core-ui div.wpforms-container input[type="month"],
.wp-core-ui div.wpforms-container input[type="number"],
.wp-core-ui div.wpforms-container input[type="password"],
.wp-core-ui div.wpforms-container input[type="range"],
.wp-core-ui div.wpforms-container input[type="search"],
.wp-core-ui div.wpforms-container input[type="tel"],
.wp-core-ui div.wpforms-container input[type="text"],
.wp-core-ui div.wpforms-container input[type="time"],
.wp-core-ui div.wpforms-container input[type="url"],
.wp-core-ui div.wpforms-container input[type="week"],
.wp-core-ui div.wpforms-container select,
.wp-core-ui div.wpforms-container textarea {
  width: 100% !important;
  max-width: 100% !important;
}

.wpforms-container .wpforms-field,
.wp-core-ui div.wpforms-container .wpforms-field {
  padding: 0px 0 !important;
  position: relative;
}

div.wpforms-container-full input[type="submit"],
div.wpforms-container-full button[type="submit"],
div.wpforms-container-full .wpforms-page-button,
.wp-core-ui div.wpforms-container-full input[type="submit"],
.wp-core-ui div.wpforms-container-full button[type="submit"],
.wp-core-ui div.wpforms-container-full .wpforms-page-button {
  height: auto !important;
  padding: 15px 30px 26px 30px !important;
  border-radius: 0 !important;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), 50% 100%, 0 calc(100% - 14px)) !important;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), 50% 100%, 0 calc(100% - 14px)) !important;
}

.top {
  width: 100%;
  padding: 6px 30px;
  text-align: center;
  font-size: var(--fs-body);
  background: #000;
  color: #e4c503;
}

.btns {
  display: none;
}

@media (max-width: 1200px) {
  :root {
    --fs-body: 18px;
    --fs-title-md: 1.75rem;
    --fs-h2: 4.5rem;
    --fs-h1: 5.5rem;
  }

  .m {
    display: none;
  }

  .header_block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 0px;
  }

  .btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    position: relative;
    z-index: 10;
  }

  .btn {
    font-size: 1.4rem;
  }

  .btns .btn {
    margin-top: 0;
    padding: 12px 32px 20px;
  }
}

/* Медиа-запросы для мобильных устройств */
@media (max-width: 600px) {
  :root {
    --fs-body: 16px;
    --fs-title-md: 2.2rem;
    --fs-h2: 3rem;
    --fs-h1: 3.5rem;
  }

  .contact_block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 60px auto 0px auto;
  }

  .footer_block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
  }

  .footer_block--hours {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
  }

  .menu_footer {
    display: none;
  }

  .hero {
    height: 90vh;
    margin-bottom: 40px;
    justify-content: center;
  }

  .hero > .hero_block {
    padding: 0 24px;
    z-index: 10;
  }

  .hero > .hero_block_call {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
    pointer-events: none;
  }

  .hero > .btns {
    position: absolute;
    left: 50%;
    bottom: 12%;
    transform: translateX(-50%);
    margin-top: 0;
    gap: 10px;
    z-index: 10;
  }

  .hero > .btns .btn {
    padding: 10px 28px 16px;
    white-space: nowrap;
  }

  .hero_block {
    padding: 0 30px;
  }

  .about_block {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .about_block_item h2 {
    text-align: center;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .about_text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .section {
    margin-top: 60px;
  }

  .menu_block {
    margin: 40px auto 0px auto;
    grid-template-columns: 1fr;
  }

  .menu_block_item:not(:last-child) {
    border-bottom: 1px solid #e4c503;
    padding-bottom: 40px;
  }

  .photo {
    margin: 40px 0px;
    width: 100%;
    height: 80vh;
  }

  .title_block {
    padding: 0px 30px;
  }

  .menu1,
  .menu2,
  .menu3 {
    height: 50vh;
    margin: 40px 0px;
  }

  .footer {
    background-size: cover !important;
  }
}

@media screen and (min-width: 1600px) {
}

/* Newsletter */
.newsletter {
  position: relative;
  min-height: 780px;
  padding: 150px 20px 170px;
  background-color: #1a1510;
  background-image: var(--newsletter-bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 8, 0.62);
  z-index: 1;
}

.newsletter__inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
}

.newsletter__edge {
  position: absolute;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 3;
  pointer-events: none;
  display: block;
}

.newsletter__edge--top {
  top: -1px;
}

.newsletter__edge--bottom {
  bottom: -1px;
}

.newsletter__title {
  font-family: "BebasNeueBold", sans-serif !important;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: 1.05 !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 auto 16px;
  max-width: 920px;
  text-align: center;
}

.newsletter__subtitle {
  font-family: "Quicksand-Medium", sans-serif;
  color: #fff;
  font-size: var(--fs-body, 20px);
  line-height: 1.45 !important;
  margin: 0 auto 36px;
  max-width: 640px;
  opacity: 0.95;
}

.newsletter__form {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
  position: relative;
}

.newsletter__row {
  display: flex;
  align-items: stretch;
  gap: 12px;
  width: 100%;
}

.newsletter__input {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  height: 64px;
  padding: 0 22px;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #111;
  font-family: "Quicksand-Medium", sans-serif;
  font-size: 16px;
  line-height: 1.2 !important;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.newsletter__input::placeholder {
  color: #6b6b6b;
}

.newsletter__input:focus {
  outline: 2px solid #e4c503;
  outline-offset: 2px;
}

.newsletter__submit {
  flex: 0 0 auto;
  margin: 0;
  min-width: 168px;
  height: 64px;
  padding: 0 32px;
  border: 0;
  border-radius: 0;
  background: #e4c503;
  color: #151515;
  font-family: "BebasNeueBold", sans-serif !important;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.newsletter__submit:hover {
  background: #f0d25a;
  transform: translateY(-2px);
}

.newsletter__submit[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.newsletter__hp {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.newsletter__msg {
  margin: 18px 0 0;
  color: #fff;
  font-size: 16px;
  min-height: 22px;
  text-align: center;
}

.newsletter__msg--error {
  color: #ff9a9a;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

@media (max-width: 767px) {
  .newsletter {
    min-height: 380px;
    padding: 100px 16px 115px;
  }

  .newsletter__row {
    flex-direction: column;
    gap: 14px;
  }

  .newsletter__input,
  .newsletter__submit {
    width: 100%;
    height: 58px;
    min-width: 0;
  }

  .newsletter__subtitle {
    margin-bottom: 28px;
    font-size: 17px;
  }
}
