/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #f7f7f7;
}

.top-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
}

.logo {
    height: 50px;
}

.lang-phone span {
    margin-left: 15px;
    color: #333;
}

.book-now {
    background: #002c78;
    color: #fff;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
}

.bottom-nav {
    background: rgba(255, 255, 255, 0.9);
}

.bottom-nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 10px 0;
}

.bottom-nav li {
    margin: 0 40px;
}

.bottom-nav a {
    text-decoration: none;
    color: #6c6c85;
    font-weight: 500;
}

.bottom-nav a:hover {
    color: #002c78;
}

.hero {
    margin-top: 140px;
    /* высота шапки */
    height: calc(100vh - 140px);
    background: url('img/hero-bg.JPG') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.btn-reserve {
    display: inline-block;
    background: #ffcc00;
    color: #002c78;
    padding: 12px 25px;
    font-weight: bold;
    border-radius: 4px;
    text-decoration: none;
}

.btn-reserve:hover {
    background: #e6b800;
}

body {
  background: #f6f6fa;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
}

.room-types-slider {
  max-width: 1920px;
  margin: 0 auto;
  padding: 50px 0 0 0;
}

.room-types-slider h2 {
  font-size: 2.1rem;
  font-weight: 700;
  color: #233174;
  margin-bottom: 28px;
  padding-left: 32px;
  letter-spacing: 0.01em;
}

.room-types-slider-inner {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px 0 rgba(31, 38, 135, 0.08);
  padding: 45px 0;
  margin: 0 auto;
  position: relative;
  min-height: 520px;
  overflow: hidden;
  width: 100%;
  max-width: 1350px;
}

.slider-arrow {
  background: none;
  border: none;
  font-size: 2.4rem;
  color: #b2b2be;
  cursor: pointer;
  padding: 0 18px;
  transition: color 0.2s;
  user-select: none;
  z-index: 3;
  align-self: center;
  display: flex;
  align-items: center;
  height: 100%;
}

.room-types-slider-inner {
  position: relative; /* чтобы стрелки позиционировались относительно контейнера */
}

.slider-arrow.left {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.slider-arrow.right {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}


.slider-arrow:hover {
  color: #002c78;
}

.slider-track {
  display: flex;
  width: 100vw;
  transition: transform 0.4s cubic-bezier(.61,.34,.38,.85);
  will-change: transform;
}

.slider-slide {
  display: flex;
  flex-shrink: 0;
  width: 100vw;
  min-width: 100vw;
  box-sizing: border-box;
  justify-content: flex-start;
  align-items: stretch;
  gap: 48px;
  padding-right: 48px;
}

/* Новая большая карточка */
.room-card.big {
  background: #fff;
  border-radius: 18px;
  min-width: 350px;
  max-width: 470px;
  margin: 0 48px 0 80px;
  padding: 44px 34px 40px 14px;
  box-shadow: 0 2px 14px 0 rgba(31,38,135,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;     /* фикс: всегда по центру */
  justify-content: center; /* фикс: всегда по центру */
  height: 100%;
  text-align: center;      /* фикс для красоты текста */
}


.room-card.big h3 {
  color: #1a2a7a;
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 32px;
  line-height: 1.18;
  min-height: 62px;
}

.room-info {
  display: flex;
  gap: 18px;
  margin-bottom: 36px;
}

.room-info div {
  background: #f6f6fa;
  border-radius: 8px;
  min-width: 82px;
  text-align: center;
  padding: 16px 0 13px 0;
  font-size: 1.18rem;
  color: #232351;
  font-weight: 500;
}
.room-info span {
  display: block;
  font-size: 1.45rem;
  color: #002c78;
  font-weight: bold;
}

.room-btn {
  border: 1.7px solid #002c78;
  border-radius: 7px;
  padding: 18px 38px;
  color: #002c78;
  background: transparent;
  font-weight: 600;
  font-size: 1.13rem;
  text-decoration: none;
  margin-top: auto;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.03em;
  cursor: pointer;
}
.room-btn:hover {
  background: #002c78;
  color: #fff;
}

.room-photo-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 730px;     /* Было 780px */
  max-width: 650px;     /* Было 950px */
  margin: 0 48px 0 0;   /* Было 28px */
  padding-right: 48px;  /* Добавь это! */
  border-radius: 22px;
  overflow: hidden;
}

.room-photo-main img {
    max-width: 100%;
    max-height: 450px;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 8px 24px 0 rgba(50, 50, 60, 0.13);
    display: block;
    margin-right: 40px;
}

/* Сайдбар */
.room-sidebar {
  width: 340px;
  background: #ececf6;
  border-radius: 0 28px 28px 0;
  padding: 36px 0 24px 0;
  box-shadow: 0 4px 12px rgba(31,38,135,0.07);
  display: flex;
  flex-direction: column;
  margin-left: 0px;
}

.room-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0 0 0 18px;
}
.room-sidebar li {
  padding: 24px 22px 24px 18px;
  font-size: 1.18rem;
  color: #232351;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  border-bottom: 1px solid #dadbea;
  font-weight: 500;
  border-radius: 15px;
  margin-bottom: 8px;
  position: relative;
}
.room-sidebar li:last-child { border-bottom: none; }

.room-sidebar li.active,
.room-sidebar li:hover {
  background: #fff;
  color: #002c78;
  font-weight: 700;
}

.room-sidebar .icon {
  font-size: 1.35em;
  margin-right: 8px;
}
.room-sidebar .count {
  background: #f0f4ff;
  color: #002c78;
  font-size: 1em;
  border-radius: 99px;
  padding: 5px 13px;
  margin-left: auto;
}

.info-section {
  margin: 90px 0 0 0;
  width: 100%;
  background: #f6f6fa;
}

.info-container {
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 4px 30px 0 rgba(31, 38, 135, 0.10);
  padding: 68px 0 0 0;
  margin: 0 auto 0 auto;
  max-width: 1920px;
  width: 92vw;
  min-height: 850px;
}

.info-map {
  flex: 2.7 1 0;
  min-width: 0;
  min-height: 700px;
  height: 800px;
  padding: 0 0 68px 60px;
  box-sizing: border-box;
}

.info-map iframe {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  box-shadow: 0 4px 16px rgba(31,38,135,0.10);
  border: none;
}

.info-right {
  flex: 1.05 1 0;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  padding: 0 0 68px 48px;
  gap: 36px;
}

/* --- О нас --- */
.info-card.about-card {
  position: relative;
  background: #fff;
  border-radius: 0 22px 0 0;
  min-height: 370px;
  height: 100%;
  box-shadow: 0 2px 8px 0 rgba(31,38,135,0.07);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 48px 36px 36px 64px;
  overflow: hidden;
}

.about-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #19297A;
  margin-bottom: auto;
  z-index: 2;
}

.about-icon {
  position: absolute;
  right: 44px;
  bottom: 38px;
  z-index: 1;
  width: 110px;
  height: 100px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.about-arrow {
  position: absolute;
  left: 62px;
  bottom: 36px;
  font-size: 2.1rem;
  color: #19297A;
  z-index: 2;
}

/* --- Главные фишки --- */
.info-card {
  background: #fff;
  border-radius: 0 22px 0 0;
  min-height: 370px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px 0 rgba(31,38,135,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card-blue {
  background: #19297A;
  border-radius: 0 0 22px 0;
  min-height: 280px;
  color: #fff;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.info-card-bottom {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 74px 44px 74px 58px;
}

.info-title-white {
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.info-icon {
  margin: 0 18px 0 0;
  display: flex;
  align-items: center;
}

.info-arrow-white {
  font-size: 2.5rem;
  color: #fff;
  margin-left: 18px;
}

.main-footer {
  background: #f6f6fa;
  padding: 45px 0 16px 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
}

.footer-container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo-row {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.footer-logo {
  height: 80px;
  max-width: 350px;
}

.footer-social-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.08em;
  color: #222e6f;
  font-weight: 500;
}

.footer-links a {
  color: #222e6f;
  text-decoration: none;
  transition: color 0.18s;
}

.footer-links a:hover {
  color: #253c84;
  text-decoration: underline;
}

.footer-links span {
  color: #b1b1c2;
}

.footer-phone {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.13em;
  color: #19297A;
  gap: 7px;
}

.footer-phone-icon {
  font-size: 1.2em;
  color: #ed5299;
  vertical-align: -2px;
}

.footer-socials {
  display: flex;
  gap: 32px;
  margin-top: 6px;
}

.footer-socials a img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.7px solid #253c84;
  padding: 6px;
  background: #fff;
  transition: border-color 0.18s, background 0.18s;
  box-sizing: border-box;
}

.footer-socials a img:hover {
  background: #253c84;
  border-color: #253c84;
  filter: invert(1);
}

.footer-copy-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 26px;
  color: #999ab1;
  font-size: 0.99em;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-policy a {
  color: #999ab1;
  text-decoration: none;
  transition: color 0.17s;
  font-size: 1em;
}

.footer-policy a:hover {
  color: #253c84;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .container {
    padding: 9px 10vw;
  }
  .room-types-slider-inner {
    padding: 30px 0;
    min-height: 320px;
  }
  .room-types-slider h2 {
    font-size: 1.5rem;
    padding-left: 8vw;
  }
  .slider-slide {
    gap: 16px;
  }
  .info-container {
    flex-direction: column;
    padding: 32px 0 0 0;
    min-height: 400px;
  }
  .info-map, .info-right {
    padding: 0 8vw;
    min-width: 0;
    height: 300px;
  }
}

@media (max-width: 600px) {
  html, body {
    max-width: 100vw;
    overflow-x: hidden;
  }
  .container {
    flex-direction: column;
    align-items: flex-start;
    padding: 7px 3vw !important;
    width: 100vw;
    box-sizing: border-box;
  }
  .logo {
    height: 32px;
    margin-bottom: 8px;
  }
  .lang-phone {
    font-size: 15px;
    gap: 6px;
  }
  .bottom-nav ul {
    flex-direction: column;
    gap: 5px;
    padding: 7px 0;
  }
  .bottom-nav li {
    margin: 6px 0;
  }
  .hero {
    margin-top: 82px;
    min-height: 180px;
    padding: 15px 2vw;
    height: auto;
  }
  .hero-content h1 {
    font-size: 1.45rem;
    margin-bottom: 12px;
  }
  .hero-content p {
    font-size: 1rem;
    margin-bottom: 14px;
  }
  .btn-reserve {
    font-size: 1rem;
    padding: 9px 14px;
  }
  .room-types-slider {
    padding: 18px 0 0 0;
  }
  .room-types-slider h2 {
    font-size: 1rem;
    padding-left: 4vw;
  }
  .room-types-slider-inner {
    flex-direction: column;
    padding: 8px 0;
    min-height: unset;
    margin: 0 1vw;
    width: 100vw;
    border-radius: 15px;
  }
  .slider-arrow {
    font-size: 1.5rem;
    padding: 0 5px;
  }
  .slider-track {
    flex-direction: column;
    width: 100vw;
    min-width: 100vw;
    gap: 16px;
  }
  .slider-slide {
    flex-direction: column;
    gap: 7px;
    width: 100vw;
    min-width: 100vw;
    align-items: center;
    box-sizing: border-box;
    padding: 0;
  }
  .room-card.big {
    min-width: 0;
    max-width: 98vw;
    width: 98vw;
    margin: 0;
    padding: 10px 2vw 12px 2vw;
    align-items: center;
    font-size: 1rem;
    border-radius: 10px;
  }
  .room-card.big h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    min-height: 0;
    text-align: center;
  }
  .room-info {
    gap: 5px;
    margin-bottom: 12px;
    flex-wrap: wrap;
  }
  .room-info div {
    min-width: 55px;
    font-size: 0.95rem;
    padding: 6px 0 5px 0;
  }
  .room-photo-main {
    min-width: 0;
    max-width: 98vw;
    width: 98vw;
    height: 88px;
    margin: 0;
    border-radius: 10px;
  }
  .room-photo-main img {
    height: 80px;
    border-radius: 8px;
  }
  .info-section {
    margin: 22px 0 0 0;
  }
  .info-container {
    flex-direction: column;
    max-width: 99vw;
    width: 100vw;
    min-height: unset;
    padding: 0 0 5px 0;
    border-radius: 16px;
  }
  .info-map, .info-right {
    width: 100vw;
    min-width: 0;
    padding: 8px 2vw;
    min-height: 70px;
    height: 130px;
    box-sizing: border-box;
  }
  .info-map iframe {
    min-height: 60px;
    height: 80px;
    border-radius: 8px;
  }
  .info-card,
  .info-card-blue,
  .info-card.about-card {
    min-height: 55px;
    padding: 7px 6px;
    border-radius: 10px !important;
  }
  .about-title, .info-title-white {
    font-size: 1rem;
    text-align: left;
  }
  .about-icon img {
    width: 40px !important;
    height: 36px !important;
  }
  .info-arrow-white, .about-arrow {
    font-size: 1.05rem;
    left: 8px;
    bottom: 10px;
  }
  .info-card-bottom {
    padding: 6px 4px 6px 6px;
    flex-direction: row;
    align-items: center;
    gap: 5px;
  }
  .main-footer {
    padding: 8px 0 4px 0;
    font-size: 13px;
  }
  .footer-container {
    padding: 0 2vw;
  }
  .footer-logo {
    height: 32px;
    max-width: 70vw;
  }
  .footer-copy-row {
    flex-direction: column;
    font-size: 0.92em;
    gap: 3px;
    text-align: center;
    margin-top: 7px;
  }
  .footer-social-center {
    gap: 6px;
    margin-bottom: 7px;
  }
  .footer-links {
    flex-direction: column;
    gap: 1px;
    text-align: center;
  }
  .footer-socials {
    gap: 6px;
  }
}






