/* @import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Sora:wght@100..800&display=swap"); */
/* ==========================================================================
Modern CSS Reset / Normalize
========================================================================== */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin, padding and reset fonts */
* {
  margin: 0;
  padding: 0;
  font: inherit;
  box-sizing: border-box;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  min-width: 320px;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture,
svg,
video {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Remove default button styles */
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* Remove text decoration from links */
a {
  text-decoration: none;
  color: inherit;
}

/* Table reset */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Fieldset reset */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/* Remove blue highlight on tap for mobile */
input,
textarea,
button,
select,
a {
  -webkit-tap-highlight-color: transparent;
}

/* Remove number input spinners */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* Remove autofill background color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

/* Smooth font rendering */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Remove outline for non-keyboard users */
:focus:not(:focus-visible) {
  outline: none;
}

/* Improve focus visibility for keyboard navigation */
:focus-visible {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

/* Visually hidden utility class */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Блок: hero-banner */
.hero-banner {
  position: relative;
  width: 100%;
  height: 250px;
  /* background: url("/img/contacts.jpg") no-repeat center center; */
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-banner__title {
  font-size: 64px;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 64px;
  font-family: "ST-SimpleSquare", serif;
  color: #ffffff;
  max-width: 992px;
  text-align: center;
}
.hero-banner__subtitle {
  font-family: "Proxima Nova", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #ffffff;
}

/* Блок: Контакты */
.contacts {
  max-width: 1120px;
  margin: 0 auto;
}
.contacts__header {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.contacts__addr {
  margin-top: 90px;
  margin-bottom: 32px;
}

/* Блок: contact-item */
.contact-item__label--addr {
  font-family: "Proxima Nova", serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
}
.contact-item__label {
  display: block;
  font-size: 20px;
  color: #9d9d9c;
  margin-bottom: 5px;
  font-family: "Proxima Nova", serif;
  font-weight: 400;
}
.contact-item__value {
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
  font-family: "ST-SimpleSquare", serif;
}

/* Блок: map-container */
.map-container {
  margin-top: 50px;
  position: relative;
  border: 1px solid #ddd;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 8px;
}
.map-container__iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Блок: popup-banner (баннер "ЗАБРОНИРОВАТЬ" поверх карты) */
.popup-banner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: 280px;
  z-index: 10;
  text-align: center;
}
.popup-banner__title {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 16px;
}
.popup-banner__description {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.4;
  color: #333;
}
.popup-banner__price {
  font-weight: bold;
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  color: #000;
}
.popup-banner__button {
  width: 100%;
  padding: 10px;
  background: #000;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-align: center;
  border-radius: 6px;
  font-size: 14px;
  transition: background 0.2s;
}
.popup-banner__button:hover {
  background: #333;
}

.social-banner {
  margin-top: 60px;
  position: relative;
  width: 100%;
  /* background: url("/img/followUs.png") no-repeat center center; */
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.social-banner__tagline {
  margin-top: 50px;
  font-size: 20px;
  color: #fdc533;
  font-family: "Proxima Nova", serif;
  font-weight: 400;
  line-height: 100%;
}
.social-banner__title {
  font-weight: 400;
  font-family: "ST-SimpleSquare", serif;
  line-height: 60px;
  font-size: 48px;
  text-align: center;
  vertical-align: middle;
  letter-spacing: 0%;
  color: #ffffff;
}
.social-banner__description {
  margin-top: 20px;
  margin-bottom: 50px;
  color: #ffffff;
  opacity: 0.6;
  font-size: 20px;
  font-weight: 400;
}
.social-banner__buttons {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 50px;
}
.social-banner__button {
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: #fdc533;
  background: #fdc533;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.social-banner__button:hover {
  background: #ffc100;
}
.social-banner__button--vk svg {
  width: 20px;
  height: 20px;
}
.social-banner__button--telegram svg {
  width: 20px;
  height: 20px;
}

.footer {
  position: relative;
  width: 100%;
  padding-top: 60px;
  margin-top: 90px;
  position: relative;
  width: 100%;
  /* background: url("/img/footerBg.png") center center no-repeat; */
  background-size: cover;
}
.footer__container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  max-width: 1120px;
  margin: 0 auto;
  justify-content: space-between;
}
.footer__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer__logo__icon {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.footer__logo__text {
  text-align: center;
}
.footer__logo__text--main {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
  text-transform: uppercase;
}
.footer__logo__text--sub {
  font-size: 14px;
  font-weight: 300;
  color: #ccc;
  margin: 5px 0 0;
}
.footer__contacts--block {
  display: flex;
}
.footer__contacts {
  max-width: 357px;
}
.footer__contacts__phone {
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
  font-family: "ST-SimpleSquare", serif;
  margin-bottom: 10px;
  color: #fdc533;
}
.footer__contacts__address {
  font-family: "Proxima Nova", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #ffffff;
  line-height: 24px;
}
.footer__contacts__email {
  margin-top: 16px;
  margin-bottom: 24px;
  font-family: "Proxima Nova", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.8%;
  color: #9d9d9c;
}
.footer__contacts__buttons {
  display: flex;
  margin-bottom: 50px;
  gap: 24px;
  align-items: center;
}
.footer__contacts__buttons__button {
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: #fdc533;
  background: #fdc533;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.footer__contacts__buttons__button:hover {
  background: #ffc100;
}
.footer__contacts__buttons__button--telegram {
  max-width: 217px;
  margin-bottom: 12px;
}
.footer__contacts__buttons__button--telegram svg {
  width: 20px;
  height: 20px;
}
.footer__contacts__buttons__button--vk {
  max-width: 172px;
}
.footer__contacts__buttons__button--vk svg {
  width: 20px;
  height: 20px;
}
.footer__social-links {
  margin-bottom: 12px;
}
.footer__desc {
  font-family: Proxima Nova;
  font-weight: 400;
  font-size: 13px;
  line-height: 100%;
  color: #9d9d9c;
}
.footer__navigation {
  margin-left: 107px;
}
.footer__navigation__title {
  margin-bottom: 20px;
  font-family: "ST-SimpleSquare", serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #fdc533;
}
.footer__navigation__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__navigation__list__item {
  margin-bottom: 5px;
}
.footer__navigation__list__item a {
  font-family: "Proxima Nova", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #9d9d9c;
}
.footer__copyright {
  border-top: 1px solid #c4c4c4;
  padding: 24px;
  font-family: "Proxima Nova", serif;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  color: #ffffff;
  margin-top: 50px;
}

/* Блок: Контакты */
.contkt {
  max-width: 1120px;
  margin: 0 auto;
}
.contkt__title {
  margin-top: 90px;
  margin-bottom: 50px;
  font-weight: 400;
  font-size: 48px;
  font-family: "ST-SimpleSquare", serif;
  line-height: 60px;
}
.contkt__content {
  display: flex;
}
.contkt__content--addr {
  display: flex;
  flex-direction: column;
  margin-right: 32px;
}
.contkt__header {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.contkt__addr {
  margin-bottom: 40px;
}
.contkt .map-container {
  margin-top: 0;
  border-radius: 20px;
}

/* Блок: contkt-item */
.contkt-item__label--addr {
  font-family: "Proxima Nova", serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  margin-bottom: 5px;
}
.contkt-item--middle {
  margin-top: 20px;
}
.contkt-item__label {
  display: block;
  font-size: 20px;
  color: #9d9d9c;
  margin-bottom: 5px;
  font-family: "Proxima Nova", serif;
  font-weight: 400;
}
.contkt-item__value {
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
  font-family: "ST-SimpleSquare", serif;
  margin-bottom: 5px;
  display: block;
}

@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/proximanova/ProximaNova-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/proximanova/ProximaNova-BlackIt.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/proximanova/ProximaNova-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/proximanova/ProximaNova-BoldIt.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/proximanova/ProximaNova-Extrabld.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/proximanova/ProximaNova-ExtrabldIt.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/proximanova/ProximaNova-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/proximanova/ProximaNova-LightIt.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/proximanova/ProximaNova-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/proximanova/ProximaNova-RegularIt.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/proximanova/ProximaNova-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/proximanova/ProximaNova-SemiboldIt.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/proximanova/ProximaNova-ThinIt.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/proximanova/ProximaNovaT-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Stengazeta";
  src: url("../fonts/stengazeta/Stengazeta-Regular_5.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Stengazeta";
  src: url("../fonts/stengazeta/Stengazeta-Regular_5.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Stengazeta";
  src: url("../fonts/stengazeta/Stengazeta-Regular_5.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ST-SimpleSquare";
  src: url("../fonts/ST-SimpleSquare.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
body {
  background: #fff;
  font-family: "Proxima Nova";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
}

.mt60 {
  margin-top: 60px;
}

.header {
  padding: 29px 0;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.banner {
  /* background-image: url("/img/bg.jpg"); */
  position: relative;
  min-height: 600px;
  background-size: cover;
  background-repeat: no-repeat;
}
.banner__logo {
  max-width: 157px;
}
.banner__nav {
  max-width: 420px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.banner__nav-item {
  color: #9d9d9c;
  font-family: "Proxima Nova";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  padding: 8px 12px;
}
.banner__nav-item--active {
  gap: 5px;
}
.banner__actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.banner__action-button--call {
  border: 1px solid rgb(196, 196, 196);
  padding: 10px 16px;
  color: #3c3c3b;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.0509803922);
  border-radius: 8px;
}
.banner__action-button--book {
  border: 1px solid rgb(196, 196, 196);
  padding: 10px 16px;
  color: #fdc533;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.0509803922);
  border-radius: 8px;
  background-color: #3c3c3b;
}


.banner__content {
  padding: 183px 64px 0 64px;
  opacity: 0;
  /* animation: fadeInContent 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 5s forwards; */
  animation: fadeInContent 2s cubic-bezier(0.4, 0, 1, 1) 2s forwards;
  will-change: opacity, transform; 
  backface-visibility: hidden; 
  transform-style: preserve-3d; 
}

@keyframes fadeInContent {
  0% {
    opacity: 0;
    transform: translate3d(0, 150px, 0); /* translate3d для аппаратного ускорения */
  }
  100% {
    opacity: 1;
    transform: translate3d(0, -0, 0);
  }
}





.banner__address {
  display: flex;
  font-family: "Proxima Nova";
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
}
.banner__address span {
  margin-right: 9px;
}
.banner__title {
  font-family: "ST-SimpleSquare";
  font-weight: 400;
  font-size: 64px;
  line-height: 64px;
  color: #ecf0f1;
  margin-top: 20px;
} 

/* .banner__title {
font-family: "ST-SimpleSquare";
font-weight: 400;
font-size: 64px;
line-height: 64px;
color: #ecf0f1;
margin-top: 20px;
opacity: 0;  
animation: fadeInTitle 2s ease-in-out 5s forwards; 
}

@keyframes fadeInTitle {
from {
opacity: 0;
transform: translateY(20px); 
}
to {
opacity: 1;
transform: translateY(0);
}
}

*/



.banner__description {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #ecf0f1;
}
.banner__description--first {
  margin-top: 20px;
}

.container {
  max-width: 1150px;
  padding: 0 15px;
  margin: 0 auto;
}

.booking-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 16px;
  padding: 20px 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .booking-form {
    flex-wrap: wrap;
    padding: 12px;
    gap: 12px;
  }
}
.booking-form__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 120px;
}
.booking-form__field:not(:last-of-type) {
  border-right: 1px solid rgba(60, 60, 59, 0.1019607843);
}
/* .booking-form__field::after {
content: "";
display: block;
width: 1px;
height: 32px;
background: #e0e0e0;
margin: 0 12px;
position: absolute;
right: -12px;
} */
@media (max-width: 768px) {
  .booking-form__field::after {
    display: none;
  }
}
.booking-form__field:last-child::after {
  display: none;
}
.booking-form__field_type_check-in input, .booking-form__field_type_check-out input {
  font-family: "Proxima Nova";
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  color: #3c3c3b;
}
.booking-form__field_type_guests .booking-form__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: none;
  padding: 0;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  outline: none;
}
.booking-form__field_type_guests .booking-form__dropdown-toggle:hover {
  text-decoration: underline;
}
.booking-form__field_type_guests .booking-form__arrow {
  transition: transform 0.2s ease;
}
.booking-form__field_type_guests .booking-form__arrow path {
  fill: #666;
}
.booking-form__label {
  font-family: Proxima Nova;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(60, 60, 59, 0.5019607843);
}
.booking-form__input {
  font-size: 14px;
  color: #333;
  border: none;
  background: transparent;
  outline: none;
  padding: 0;
  cursor: default;
}
.booking-form__submit {
  background: #333;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}
.booking-form__submit:hover {
  background: #222;
}
.booking-form__submit:active {
  background: #111;
}

.why-choose-us {
  margin-top: 90px;
}
.why-choose-us__title {
  font-family: "ST-SimpleSquare";
  font-weight: 400;
  font-size: 48px;
  line-height: 60px;
  text-align: center;
}
.why-choose-us__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-top: 50px;
}
.why-choose-us__item {
  max-width: 352px;
  width: 100%;
  padding: 5px;
  border-radius: 8px;
  transition: transform 0.2s ease;
}
.why-choose-us__item-title {
  font-family: "Proxima Nova";
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  text-align: center;
}
.why-choose-us__item-desc {
  font-family: "Proxima Nova";
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  color: #9d9d9c;
  margin-top: 10px;
}

.rooms {
  margin-top: 120px;
}
.rooms__title {
  position: relative;
  text-align: center;
  width: 100%;
}
.rooms__title svg {
  margin: 0 auto;
}
.rooms__title-fill {
  font-family: "ST-SimpleSquare";
  font-weight: 400;
  font-size: 48px;
  line-height: 100%;
  text-align: center;
  margin-top: -30px;
  display: block;
}
.rooms__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(543px, 1fr));
  margin-bottom: 50px;
  row-gap: 40px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  margin-top: 50px;
}
.rooms__footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.rooms__more-btn {
  font-family: Proxima Nova;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  border: 1px solid var(--secondary-stroke, rgb(223, 229, 229));
  padding: 10px 16px;
  border-radius: 8px;
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 30px;
  margin-top: 0px;
}
.rooms__more-btn:hover {
  background-color: #f5f5f5;
  color: #333;
}
.rooms__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.rooms__icon-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.room-card {
  background: #fff;
  overflow: hidden;
  display: flex;
  width: 100%;
  max-width: 543px;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  gap: 30px;
}
.room-card__image-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 245px;
  height: 270px;
  border-radius: 20px;
  width: 100%;
}
.room-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.room-card__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #ecf0f1;
  color: #3c3c3b;
  font-size: 12px;
  line-height: 18px;
  padding: 7px 10px;
  border-radius: 4px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.room-card__content {
  padding: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 268px;
}
.room-card__title {
  font-family: "Proxima Nova";
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #3c3c3b;
  min-height: 58px;
}
.room-card__specs {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  padding: 0;
  list-style: none;
  margin-top: 10px;
}
.room-card__specs li {
  border: 1px solid var(--secondary-stroke, rgb(223, 229, 229));
  padding: 4px 8px;
  border-radius: 5px;
  font-family: "Proxima Nova";
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  color: #9d9d9c;
}
.room-card__price {
  font-family: Proxima Nova;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  margin-top: 20px;
}
.room-card__price strong {
  font-family: Proxima Nova;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
}
.room-card__rub {
  font-family: Inter;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
}
.room-card__text-price-bottom {
  font-family: "Proxima Nova";
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #9d9d9c;
  margin-top: 5px;
}
.room-card__link {
  font-family: "Proxima Nova";
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0%;
  text-decoration: underline;
  color: #9d9d9c;
  margin-top: 20px;
}
.room-card__link:hover {
  color: #00aaff;
}
.room-card__btn {
  width: 100%;
  padding: 10px 16px;
  background: #3c3c3b;
  color: #fdc533;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 8px;
  margin-top: 20px;
}
.room-card__btn:hover {
  background: #222;
}

.services {
  padding: 40px 20px;
  background-color: #fff;
}
.services__title {
  font-family: ST-SimpleSquare;
  font-weight: 400;
  font-size: 48px;
  line-height: 60px;
  text-align: center;
}
.services__slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
}
.services__slider-nav svg {
  max-width: 24px;
}
.services__slider-wrapper {
  position: relative;
  margin-top: 50px;
}
.services__slider-arrow {
  width: 36px;
  height: 36px;
  border: none;
  background: #eee;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.2s;
}
.services__slider-arrow:hover {
  background: #ddd;
}

.owl-dot {
  display: inline-block;
  margin: 0 5px;
}
.owl-dot span {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  display: block;
  transition: background 0.2s;
}
.owl-dot.active span {
  background: #00aaff;
}

.service-card {
  background: #f3f3f3;
  overflow: hidden;
  transition: transform 0.2s ease;
  padding: 10px;
  overflow: hidden;
  border-radius: 20px;
  min-height: 460px;
}

.services__cards-wrapper {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.service-card--card {
  max-width: 352px;
}

.service-card--car {
  max-width: 544px;
  margin-right: 0 !important;
  width: 100%;
}
.service-cards-car{
  display: flex;
  gap: 32px;
}

.service-card--car .service-card__image-wrapper {
  max-width: 524px;
}
.service-card--car .service-card__divider {
  max-width: 100%;
}
.service-card:hover {
  transform: translateY(-5px);
}

.service-card.service-card--car .service-card__image-wrapper {
  height: 330px;
}

.service-card__image-wrapper {
  position: relative;
  overflow: hidden;
  height: 180px;
  border-radius: 12px;
  max-width: 332px;
  width: 100%;
  margin: 0 auto;
}
.service-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.service-card__image:hover {
  transform: scale(1.05);
}
.service-card__divider {
  position: relative;
  flex: 1;
  height: 1px;
  background-image: repeating-linear-gradient(to right, #9d9d9c 0, #9d9d9c 4px, transparent 4px, transparent 8px);
  max-width: 100%;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 10px;
}
.service-card__divider::before, .service-card__divider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
}
.service-card__divider::before {
  left: -20px;
}
.service-card__divider::after {
  right: -20px;
}
.service-card__content {
  padding: 10px;
}
.service-card__title {
  font-family: Proxima Nova;
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  margin-top: 30px;
  min-height: 48px;
}
.service-card__desc {
  font-family: Proxima Nova;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #9d9d9c;
  margin: 10px auto;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Максимум 1 строка */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 32px;
}
.service-card__tags {
  display: flex;
  gap: 10px;
}
.service-card__tag {
  font-family: Proxima Nova;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  background: #fdc533;
  color: #3c3c3b;
  padding: 3px 9px;
  border-radius: 20px;
}
.service-card__btn {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #3c3c3b;
  text-align: center;
  color: #fdc533;
  font-family: Proxima Nova;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  gap: 6px;
}

.services__slider {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.services__slider-dots {
  text-align: center;
}
.services__slider-dots .owl-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  margin: 0 5px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.services__slider-dots .owl-dots button.active, .services__slider-dots .owl-dots button:hover {
  background: #00aaff;
}

.services__slider-arrow {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.services__slider-arrow:hover {
  opacity: 0.8;
}
.services__slider-arrow svg {
  display: block;
  width: 24px;
  height: 24px;
}

.services__slider-dots .owl-dots {
  display: flex;
  gap: 8px;
}
.services__slider-dots .owl-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s;
}
.services__slider-dots .owl-dots button.active {
  background: #3c3c3b;
}

body .swiper-pagination-bullet {
  background: transparent;
  width: 9px;
  height: 9px;
  border: 1px solid #c4c4c4;
}

body .swiper-pagination-bullet-active {
  background: #3c3c3b;
  width: 12px;
  height: 12px;
}

body .swiper-pagination {
  position: initial;
}

.bronirovanie {
  margin-top: 60px;
}

.restoran__content {
  padding: 98px 48px;
  margin-top: 60px;
  background-color: #f3f3f3;
  border-radius: 20px;
}
.restoran__desc {
  font-family: Proxima Nova;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.3;
  text-align: center;
  color: #3c3c3b;
  margin-bottom: 5px;
}
.restoran__images {
  display: flex;
  gap: 32px;
  max-width: 1120px;
  margin-top: 32px;
}
.restoran__images img {
  max-width: 352px;
  -o-object-fit: cover;
  object-fit: cover;
  height: 460px;
  border-radius: 20px;
}/*# sourceMappingURL=style.css.map */



.page-template-contacts .footer{
  margin-top: 0px;
}


.background-video {
  position: absolute;
  z-index: -2;
  object-fit: cover;
  filter: brightness(0.7);
}

/* === Модальное окно === */
.modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal.is-active {
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px); /* лёгкое размытие фона (опционально) */
}

.modal__content {
  position: relative;
  max-width: 600px;
  width: 90%;
  padding: 2.5rem;
  background: #3c3c3b;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(-20px);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin: 10% auto;
  color: #fdc533;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.modal__content h3 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.5px;
}

/* Стили формы */
#callback-form {
  display: flex;
  flex-direction: column;
}

#callback-form input {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  border: 2px solid #555;
  border-radius: 6px;
  background: #2e2e2d;
  color: #fdc533;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

#callback-form input::placeholder {
  color: #a0a09f;
  opacity: 1;
}

#callback-form input:focus {
  border-color: #fdc533;
  box-shadow: 0 0 0 3px rgba(253, 197, 51, 0.2);
}

#callback-form button[type="submit"] {
  margin-top: 1.25rem;
  padding: 0.9rem;
  font-size: 1.1rem;
  font-weight: 600;
  background: #fdc533;
  color: #1a1a1a;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.15s ease;
}

#callback-form button[type="submit"]:hover {
  background: #e6b22e;
  transform: translateY(-2px);
}

#callback-form button[type="submit"]:active {
  transform: translateY(0);
}

/* Кнопка закрытия */
.modal__close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: #fdc533;
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Сообщения формы */
.form-message {
  margin-top: 1rem;
  font-size: 0.95rem;
  text-align: center;
  min-height: 1.4em;
  line-height: 1.4;
}

.form-message.success {
  color: #6ee7b7; /* мягкий зелёный, сочетающийся с тёмной темой */
}

.form-message.error {
  color: #f87171; /* мягкий красный */
}



/* === Модальное окно отеля === */
.modal-hotel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-hotel.is-active {
  opacity: 1;
  visibility: visible;
}

.modal-hotel__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.modal-hotel__content {
  position: relative;
  max-width: 1035px;
  width: 100%;
  overflow-y: auto;
  background: #fff;
  border-radius: 32px;
  padding: 48px 24px 24px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin: 20px auto;
}

.modal-hotel__close {
  position: absolute;
  top: 15px;
  right: 32px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #333;
  z-index: 10;
}

/* Изображения */
.modal-hotel__main-image {
  text-align: center;
  margin-bottom: 16px;
}

.modal-hotel__main-image img {
  max-width: 100%;
  border-radius: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  height: 40vh;
  object-fit: cover;
  width: 100%;
}

.modal-hotel__thumbnails {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.modal-hotel__thumbnail {
  max-width: 244px;
  width: 100%;
  height: 136px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s;
}

/* Информация */
.modal-hotel__info h3 {
  font-size: 24px;
  margin: 10px 0;
  color: #333;
  text-align: left;
}


.modal-hotel__specs {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  margin: 15px 0;
}

.modal-hotel__spec {
  border: 1px solid var(--secondary-stroke, rgba(223, 229, 229, 1));
  border-radius: 5px;
  color: #9D9D9C;
  padding: 8px 12px;
  font-size: 20px;
  line-height: 100%;
}

.modal-hotel__amenities {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 15px;
  margin: 15px 0;
  font-size: 14px;
  color: #666;
}

.modal-hotel__amenities span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
}

.modal-hotel__btn-price {
  display: block;
  width: 100%;
  padding: 12px;
  background: #333;
  color: #FDC533;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 24px;
  transition: background 0.2s;
  text-align: center;
  
}

.modal-hotel__btn-price:hover {
  background: #222;
}


/* Модальные окна */
.service-modal__content {
  border-radius: 16px;
  border: none;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  max-width: 600px;
}

.service-modal__header {
  padding: 1.5rem 2rem 1rem;
  border-bottom: 1px solid #eee;
  position: relative;
}

.service-modal__title {
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0;
}

.service-modal__close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  z-index: 10;
}

.service-modal__body {
  padding: 0 2rem 1.5rem;
}

.service-modal__image-wrapper {
  margin-bottom: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
}

.service-modal__image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-modal__content-wrapper {
  margin-bottom: 1.5rem;
}

.service-modal__description {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-modal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.service-modal__tag {
  background: #f0f0f0;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  color: #666;
}

.service-modal__footer {
  padding: 1rem 2rem 2rem;
  border-top: 1px solid #eee;
}

.service-modal__cta {
  background: linear-gradient(135deg, #FDC533 0%, #FFB347 100%);
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #000;
}

.service-modal__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(253, 197, 51, 0.4);
  color: #000;
  text-decoration: none;
}

/* Адаптация кнопки карточки для модалки */
.service-card__open-modal {
  display: inline-flex !important;
}

@media screen {
  @media (max-width: 768px) {
    
    .modal-hotel__thumbnail {
      max-width: 140px;
      height: 80px;
    }
    
    .modal-hotel__content {
      padding-left: 15px;
      padding-right: 15px;
    }
    .modal-hotel__main-image img {
      height: 220px;
    }
    .modal-hotel__spec {
      font-size: 13px;
    }
  }
}

.modal-hotel.is-active .service-card__desc{
  line-clamp: initial!important;
  -webkit-line-clamp: initial!important;
  -webkit-box-orient: initial!important;
}

.hotel-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 20px;
}

.hotel-gallery-item {
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  position: relative;
}

.hotel-gallery-item:hover {
  z-index: 10;
}

.hotel-gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
  height: 410px;
}

.hotel-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hotel-gallery-item:hover img {
  transform: scale(1.1);
}

#galleryModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 99999;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

#galleryModal.active {
  display: flex;
}

#galleryModal img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

#galleryModal button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
  z-index: 100;
}

#galleryModal button:hover {
  background: #f5f5f5;
  transform: translateY(-50%) scale(1.1);
}

#galleryModal button.prev { left: 30px; }
#galleryModal button.next { right: 30px; }

@media (max-width: 900px) {
  .hotel-gallery {
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
    margin-top: 50px;
  }
  
  .hotel-gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
    height: 300px;
  }
}

@media (max-width: 600px) {
  
  .hotel-gallery-item:first-child {
    height: 250px;
  }
}
