/* ====== СБРОС ====== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: #fff;
  background-color: #000;
  overflow-x: hidden;
}

/* Медиа-элементы */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
}

/* ====== ОБЩЕЕ ====== */
h1, h2, h3, h4, h5, h6, .logo-text {
  font-family: 'Exo 2', sans-serif;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

h1 { font-size: clamp(2rem, 6vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 5vw, 2.8rem); }
h3 { font-size: clamp(1.5rem, 4vw, 2.2rem); }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 1.5rem);
}

.section-title {
  text-align: center;
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
  color: #ff6f00;
}

/* ====== ФОРМЫ ====== */
input, textarea, select {
  background-color: #000;
  color: #fff;
  border: 1px solid #555;
  border-radius: 4px;
  padding: 0.75rem;
  width: 100%;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #ff6f00;
  box-shadow: 0 0 0 2px rgba(255, 111, 0, 0.2);
}

input::placeholder, textarea::placeholder {
  color: #888;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* ====== ВСПОМОГАТЕЛЬНОЕ ====== */
.text-center { text-align: center; }
.mb-3 { margin-bottom: clamp(1.5rem, 4vw, 3rem); }

::selection {
  background-color: rgba(255, 111, 0, 0.3);
  color: #fff;
}


/* ====== HEADER ====== */
.header {
  background-color: #000;
  color: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Логотип */
.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 8px;
  transition: 0.3s;
}

.logo-image {
  height: 40px;
  width: auto;
  transition: 0.3s;
}

.logo-text {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  white-space: nowrap;
  transition: 0.3s;
}

/* Ховер-эффекты */
.logo a:hover {
  background: rgba(255, 157, 0, 0.15);
}

.logo a:hover .logo-image {
  transform: scale(1.05);
}

.logo a:hover .logo-text {
  color: #ff9d00;
}


/* ====== НАВИГАЦИЯ ====== */

html {
  scroll-behavior: smooth;
}


.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 5px;
  display: block;
  position: relative;
  transition: color 0.3s;
}

/* Ховер-эффект с полоской */
.nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #ff9d00;
  transition: width 0.3s;
  transform: translateX(-50%);
}

.nav ul li a:hover {
  color: #ff9d00;
}

.nav ul li a:hover::after {
  width: 80%;
}

/* Телефон в шапке */
.header-phone {
  margin-left: 2rem;
}

.header-phone a {
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}

.header-phone a:hover {
  color: #ff9d00;
}

/* ====== HERO ====== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #000; /* запасной фон, если картинка не загрузится */
  color: #fff;
  overflow: hidden; /* чтобы bg-img не вылазила */
}

/* фоновая картинка */
.hero .bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0; /* было -1 */
}

/* затемнение */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6));
  z-index: 1; /* было 0 */
}

.hero .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  padding-right: clamp(1rem, 3vw, 2rem);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-description {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  margin-bottom: 2rem;
  color: #e6e6e6;
  line-height: 1.5;
  max-width: 600px;
}


/* ====== КНОПКИ ====== */
.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  min-width: 160px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform 0.3s;
}

.btn:hover::after {
  transform: translateX(0);
}

.btn span {
  position: relative;
  z-index: 2;
}

.btn-primary {
  background: #ff6f00;
  color: #fff;
}

.btn-primary:hover {
  background: #e65e00;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(230, 94, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  border: 1px solid #ff6f00;
  color: #ff6f00;
}

.btn-secondary:hover {
  background: rgba(255, 111, 0, 0.1);
  color: #ff9d00;
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(255, 111, 0, 0.3);
}

.btn:focus {
  outline: 2px solid #ff9d00;
  outline-offset: 2px;
}



/* ====== Кнопка меню (бургер) ====== */
.menu-toggle {
  display: none;          /* по умолчанию скрыта */
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  z-index: 900;           /* ниже, чем само меню */
  position: relative;
}

/* ====== Мобильное меню ====== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;           /* спрятано за экраном */
  width: 80%;
  max-width: 320px;
  height: 100%;
  background: #111;
  padding: 1.5rem;
  transition: right 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 2px solid #ff9d00;
  box-shadow: -2px 0 10px rgba(0,0,0,0.6);
  visibility: hidden;     /* невидимое */
  pointer-events: none;   /* некликабельное */
}

.mobile-menu.open {
  right: 0;
  visibility: visible;
  pointer-events: auto;
}

/* ====== Кнопка закрытия (крестик) ====== */
.mobile-menu .menu-close {
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 1rem;
  color: #fff;
  transition: color 0.2s;
  z-index: 1100;          /* выше внутри меню */
}
.mobile-menu .menu-close:hover {
  color: #ff9d00;
}

/* ====== Ссылки ====== */
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu ul li {
  margin: 1rem 0;
}
.mobile-menu ul li a {
  text-decoration: none;
  font-size: 1.2rem;
  color: #fff;
  font-weight: 500;
  transition: color 0.2s;
}
.mobile-menu ul li a:hover {
  color: #ff9d00;
}

/* ====== Телефон ====== */
.mobile-menu .mobile-phone {
  margin-top: 2rem;
  text-align: center;
}
.mobile-menu .mobile-phone a {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ff9d00;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* ====== Адаптив ====== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;   /* показываем бургер */
  }
  .nav {
    display: none;    /* прячем обычное меню */
  }
}






/* ====== ROOMS SECTION ====== */
.rooms-section {
    padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 3vw, 2rem);
    background: #000;
    color: #fff;
    text-align: center;
}

.rooms-section h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 2rem;
    color: #ff6f00;
}

/* Контейнер карточек */
.room-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

/* Карточка */
.room-card {
    background: rgba(20, 20, 20, 0.95);
    border-radius: 16px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
    transform: translateY(-5px) scale(1.03);
}

.room-card h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 0.5rem;
    color: #ff6f00;
}

/* Кнопка */
.room-card .btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: #ff6600;
    color: #fff;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card .btn:hover {
    box-shadow: 0 0 20px #ff6600;
    transform: scale(1.05);
}

/* Оборудование */
.room-equipment {
    margin: 15px 0;
}
.room-equipment strong {
    display: block;
    margin-bottom: 5px;
    color: #ff6f00;
}
.room-equipment ul {
    list-style: none;
    padding: 0;
}
.room-equipment li {
    margin: 4px 0;
    padding-left: 18px;
    position: relative;
}
.room-equipment li::before {
    content: "–";
    position: absolute;
    left: 0;
    color: #ff6f00;
}

/* Индивидуальное свечение */
.room-card:nth-child(1) { box-shadow: 0 0 15px rgba(0,150,255,.6); }
.room-card:nth-child(2) { box-shadow: 0 0 15px rgba(0,255,100,.6); }
.room-card:nth-child(3) { box-shadow: 0 0 15px rgba(255,0,150,.6); }

.room-card:nth-child(1):hover { box-shadow: 0 0 25px rgba(0,150,255,.9); }
.room-card:nth-child(2):hover { box-shadow: 0 0 25px rgba(0,255,100,.9); }
.room-card:nth-child(3):hover { box-shadow: 0 0 25px rgba(255,0,150,.9); }

/* Слайдер */
.room-slider {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 250px;
    margin-bottom: 1rem;
}
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.slide.active {
    opacity: 1;
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,.5);
    color: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}
.slider-arrow:hover { background: rgba(0,0,0,.7); }
.slider-arrow.prev { left: 10px; }
.slider-arrow.next { right: 10px; }

/* Подсказка */
.slider-hint {
    font-size: 0.9rem;
    font-style: italic;
    font-weight: bold;
    color: #ff6600;
    margin: 0.5rem 0;
}

/* Адаптивность */
@media (max-width: 768px) {
    .room-card { padding: 1rem; }
    .room-slider { height: 200px; }
    .slider-arrow { width: 25px; height: 25px; }
}
@media (max-width: 480px) {
    .room-slider { height: 180px; }
    .room-card .btn { width: 100%; }
}



/* ================= ADVANTAGES SECTION ================= */
.advantages {
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 3vw, 2rem);
  margin: clamp(2rem, 5vw, 4rem) 0;
  color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden; /* чтобы фон не вылазил */
}

/* затемнение поверх bg-img */
.advantages::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 0;
}

/* сам фон (картинка в html) */
.advantages .bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* контент поверх */
.advantages .container {
  position: relative;
  z-index: 1;
}

/* Заголовки */
.advantages h2,
.offers h2 {
  text-align: center;
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  color: #ff6f00;
}

/* Сетка */
.advantages-grid,
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  max-width: 1200px;
  margin: 0 auto;
}

/* Карточки */
.advantage,
.offer {
  background: #111;
  border-radius: 12px;
  border: 1px solid rgba(255,111,0,0.2);
  padding: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  transition: transform .3s ease;
}
.advantage:hover,
.offer:hover { transform: translateY(-5px); }

/* Advantage item */
.advantage-icon {
  font-size: 2.5rem;
  color: #ff6f00;
  margin-bottom: 1rem;
  padding: 15px;
  border-radius: 50%;
  background: rgba(255,111,0,0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px; height: 70px;
}
.advantage h3 { color: #fff; font-weight: 600; margin-bottom: .5rem; }
.advantage p { color: #b3b3b3; line-height: 1.5; }


/* ================= OFFERS SECTION ================= */
.offers { padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 3vw, 2rem); background:#000; }
.offer { background:#0d0d0d; box-shadow:0 5px 15px rgba(0,0,0,0.4); display:flex; flex-direction:column; }
.offer h3 { color:#ff6f00; margin-bottom:1rem; }
.offer p, .offer ul { font-size: .95rem; line-height:1.5; margin-bottom:1rem; flex-grow:1; }
.offer ul { list-style:none; padding:0; text-align:left; }
.offer ul li { margin:.5rem 0; padding-left:20px; position:relative; }
.offer ul li::before { content:"•"; color:#ff6f00; position:absolute; left:0; }

/* Special Offer for couples */
.offer.special-offer {
  grid-column: 1/-1;
  background: linear-gradient(135deg,#1a1a1a,#2a1a2a,#1a1a2a);
  border:2px solid rgba(255,111,0,.3);
  padding:2rem;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.offer.special-offer::before {
  content:""; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,#ff6f00,#ff9d00,#ff6f00);
  animation: shimmer 3s infinite;
}
@keyframes shimmer { from{background-position:-200% 0} to{background-position:200% 0} }
.offer.special-offer h3 { color:#ff9d00; font-size:1.8rem; text-shadow:0 0 10px rgba(255,157,0,.3); }
.offer.special-offer .highlight { color:#ff9d00; font-weight:700; }

/* Responsive */
@media (max-width:768px){
  .advantages-grid,.offers-grid{grid-template-columns:1fr; max-width:500px;}
  .offer.special-offer{padding:1.5rem;}
}
@media (max-width:480px){
  .advantage-icon{width:60px;height:60px;font-size:2rem;}
  .offer ul li{padding-left:15px;}
}


/* ================= CONTACTS ================= */
.contacts {
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 3vw, 2rem);
  background: #000;
  color: #fff;
}
.contacts h2 {
  text-align: center;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
  color: #ff6f00;
}
.contacts-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .contacts-content { grid-template-columns: 1fr 1fr; }
}

/* Contact info */
.contact-info h3,
.contact-form h3 {
  font-size: clamp(1.3rem, 3vw, 1.5rem);
  color: #ff6f00;
  margin-bottom: 1.5rem;
}
.contact-item { margin-bottom: 1.5rem; }
.contact-item h4 {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fff;
}
.contact-item p,
.contact-item a {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: #b6b6b6;
  text-decoration: none;
  transition: color .3s;
  display: block;
}
.contact-item a:hover { color: #ff6f00; }

/* Social links */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.social-links a {
  display: inline-flex;
  width: clamp(45px, 8vw, 50px);
  height: clamp(45px, 8vw, 50px);
  background: #ff6f00;
  color: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  transition: transform .3s, background .3s;
  text-decoration: none;
}
.social-links a:hover {
  background: #e65e00;
  transform: translateY(-3px);
}

/* Contact form */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #444;
  border-radius: 8px;
  background: #111;
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color .3s, box-shadow .3s;
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #aaa; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #ff6f00;
  box-shadow: 0 0 0 2px rgba(255,111,0,.2);
}
.contact-form button {
  background: #ff6f00;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: transform .3s, background .3s, box-shadow .3s;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.contact-form button::after {
  content:"";
  position:absolute;
  inset:0;
  background: rgba(255,255,255,.1);
  transform: translateX(-100%);
  transition: transform .3s;
}
.contact-form button:hover {
  background:#e65e00;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(230,94,0,.4);
}
.contact-form button:hover::after { transform: translateX(0); }

/* Map */
.map-container {
  width: 100%;
  max-width: 800px;
  height: clamp(300px, 40vw, 400px);
  border-radius: 12px;
  overflow: hidden;
  margin: 2rem auto 0;
  background: #1a1a1a;
  position: relative;
}
.map-container iframe { width:100%; height:100%; border:0; display:block; }
.map-container::before {
  content:"Загрузка карты...";
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  color:#b6b6b6;
  pointer-events:none;
}

/* Focus states */
.contact-form button:focus,
.social-links a:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid #ff6f00;
  outline-offset: 2px;
}

/* ================= FOOTER ================= */
.footer {
  background:#000;
  color:#fff;
  text-align:center;
  padding: clamp(1.5rem, 4vw, 2rem) 0;
  border-top: 1px solid #222;
}
.footer-content {
  max-width:1200px;
  margin:0 auto;
  padding:0 clamp(1rem, 3vw, 2rem);
}
.footer p {
  margin:.5rem 0;
  font-size: clamp(.9rem, 2vw, 1rem);
  color:#b6b6b6;
}
.footer-links {
  display:flex;
  justify-content:center;
  gap: clamp(1rem, 3vw, 2rem);
  margin:1rem 0;
  flex-wrap:wrap;
}
.footer-links a {
  color:#fff;
  text-decoration:none;
  font-size: clamp(.9rem, 2vw, 1rem);
  transition:color .3s;
}
.footer-links a:hover { color:#ff6f00; }
.back-to-top {
  display:inline-block;
  margin-top:1rem;
  padding:.5rem 1rem;
  background:#ff6f00;
  color:#fff;
  border-radius:4px;
  font-size:.9rem;
  text-decoration:none;
  transition: transform .3s, background .3s;
}
.back-to-top:hover {
  background:#e65e00;
  transform:translateY(-2px);
}


        /* ====== БАЗОВЫЕ СТИЛИ ====== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #1a1a1a;
    color: #fff;
}

/* Герой-блок */
.hero {
    padding: 4rem 2rem;
    background: #222;
}

/* Контейнер */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ====== АДАПТИВ ====== */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav, .header-phone {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
    .hero h1 {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
    }
    .hero-description {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .btn {
        width: 100%;
        max-width: 280px;
    }
    .hero h1 {
        font-size: clamp(1.6rem, 7vw, 1.8rem);
    }
}

/* ================== Ошибки форм ================== */
.error {
  border-color: #ff4757;
}

.error-message {
  color: #ff4757;
  margin-top: 5px;
  font-size: 14px;
}

