.fixed{
    height: 60px;
    backdrop-filter: blur(17px);}
    
    
    .room_vt {display: none;}
    
    
    .logo img {
    height: 130px !important;
    margin-top: 0px;
    margin-left: 0px;
    margin-right: 0px;
}


.pulse-img {
  display: block;
  border-radius: 50%;
  animation: pulseOnlyShadow 2.4s ease-out infinite;
}

@keyframes pulseOnlyShadow {
  0% {
    box-shadow: 0 0 0 0 rgba(176, 124, 45, 0.45);
  }

  70% {
    box-shadow: 0 0 0 22px rgba(176, 124, 45, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(176, 124, 45, 0);
  }
}
.pulse-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ff7a00;
  position: relative;
}

.pulse-dot::before,
.pulse-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.35);
  animation: pulseRing 2s ease-out infinite;
}

.pulse-dot::after {
  animation-delay: 1s;
}

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(3.2);
    opacity: 0;
  }
}

.glow-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #ff7a00;
  animation: softGlow 2.8s ease-in-out infinite;
}

@keyframes softGlow {
  0% {
    box-shadow: 0 0 0 rgba(255, 122, 0, 0.25);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 45px rgba(255, 122, 0, 0.45);
    transform: scale(1.04);
  }

  100% {
    box-shadow: 0 0 0 rgba(255, 122, 0, 0.25);
    transform: scale(1);
  }
}




    body {
      margin: 0;
      font-family: Inter, Arial, sans-serif;
      background: #111;
      color: #fff;
      overflow-x: hidden;
    }

    .page-hero {
      min-height: 100vh;
      background:
        linear-gradient(90deg, rgba(0,0,0,.35), rgba(0,0,0,.05)),
        url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80");
      background-size: cover;
      background-position: center;
    }

    .topbar {
      height: 74px;
      background: rgba(15, 18, 20, 0.88);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(255,255,255,.08);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 28px 0 0;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
    }

    .burger-btn {
      width: 48px;
      height: 74px;
      border: 0;
      background: transparent;
      color: #fff;
      font-size: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: .25s ease;
    }

    .burger-btn:hover {
      background: rgba(255,255,255,.08);
      color: #d9b46a;
    }

    .logo-text {
      text-align: right;
      letter-spacing: 12px;
      font-weight: 300;
      font-size: 18px;
      line-height: 1;
    }

    .logo-text small {
      display: block;
      letter-spacing: 3px;
      font-size: 9px;
      margin-top: 8px;
      font-weight: 700;
    }

    .luxury-menu {
      position: fixed;
      top: 74px;
      left: 0;
      width: 425px;
      max-width: calc(100vw - 20px);
      z-index: 999;
      transform: translateX(-100%);
      opacity: 0;
      pointer-events: none;
      transition: .35s ease;
      box-shadow: 28px 0 60px rgba(0,0,0,.35);
    }

    .luxury-menu.active {
      transform: translateX(0);
      opacity: 1;
      pointer-events: auto;
    }

    .menu-row {
      display: grid;
      grid-template-columns: 48px 1fr 38px;
      min-height: 50px;
      text-decoration: none;
      color: #f7f2e8;
      border-bottom: 1px solid rgba(214, 177, 94, .18);
      background: rgba(16, 18, 18, .78);
      backdrop-filter: blur(16px);
      transition: .25s ease;
    }

    .menu-row:hover {
      color: #fff;
      background: rgba(22, 23, 22, .92);
    }

    .menu-row:hover .menu-label {
      background: linear-gradient(90deg, rgba(217,180,106,.16), rgba(255,255,255,.03));
    }

    .menu-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      background:
        linear-gradient(180deg, rgba(195,151,112,.78), rgba(93,65,49,.72));
      color: #fff;
      font-size: 22px;
      border-right: 1px solid rgba(255,255,255,.18);
    }

    .menu-label {
      display: flex;
      align-items: center;
      padding: 0 18px;
      font-size: 15px;
      font-weight: 500;
      letter-spacing: .1px;
      transition: .25s ease;
    }

    .menu-arrow {
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,.8);
      font-size: 20px;
    }

    .submenu {
      background: rgba(7, 8, 8, .82);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(214,177,94,.16);
    }

    .submenu a {
      display: block;
      padding: 13px 18px 13px 68px;
      color: rgba(255,255,255,.74);
      text-decoration: none;
      font-size: 14px;
      border-bottom: 1px solid rgba(255,255,255,.05);
      transition: .25s ease;
    }

    .submenu a:hover {
      color: #d9b46a;
      background: rgba(217,180,106,.08);
    }

    .menu-row[aria-expanded="true"] .menu-arrow i {
      transform: rotate(90deg);
    }

    .menu-arrow i {
      transition: .25s ease;
    }

    .hero-content {
      padding-top: 170px;
      padding-left: 72px;
      max-width: 620px;
    }

    .hero-content h1 {
      font-size: 56px;
      font-weight: 300;
      letter-spacing: 7px;
      text-transform: uppercase;
    }

    .hero-content p {
      color: rgba(255,255,255,.72);
      font-size: 18px;
      margin-top: 18px;
    }

    @media (max-width: 576px) {
      .logo-text {
        font-size: 13px;
        letter-spacing: 6px;
      }

      .logo-text small {
        font-size: 7px;
        letter-spacing: 2px;
      }

      .luxury-menu {
        width: 100%;
        max-width: 100%;
      }

      .hero-content {
        padding-left: 24px;
        padding-right: 24px;
      }

      .hero-content h1 {
        font-size: 36px;
        letter-spacing: 4px;
      }
    }
    
  .animatge {
  animation: luxuryPoiIn 0.65s cubic-bezier(.22, 1, .36, 1) both !important;
}

@keyframes luxuryPoiIn {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(0.92);
    filter: blur(5px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

#list_images_im {background:#000 !important;}
.modal-content{background:444 !important;}
/* Основной фон (оверлей) — скрыт по умолчанию */
.simple-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Темный полупрозрачный фон */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000; /* Очень высокий z-index, чтобы быть поверх всего */
  
  /* Эффект плавного появления */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Класс, который добавляется JavaScript'ом для показа окна */
.simple-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* Контентное окно */
.simple-modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  max-width: 90%; /* Адаптивность для мобильных */
  max-height: 90%; /* Адаптивность по высоте */
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
  
  /* Плавное "выезжание" окна */
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

/* Когда окно открыто, оно возвращается на место */
.simple-modal-overlay.open .simple-modal-content {
  transform: translateY(0);
}

/* Кнопка закрытия (крестик) */
.simple-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: #333;
  line-height: 1;
  padding: 0;
  z-index: 10;
}

.simple-modal-close:hover {
  color: #ff0000;
}

/* Контейнер и само изображение */
.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px; /* Отступ от крестика/заголовка */
}


.modal-image {
  max-width: 100%;
  max-height: 75vh; /* Ограничиваем высоту, чтобы окно не улетало за пределы экрана */
  width: auto;
  height: auto;
  object-fit: contain; /* Картинка будет масштабироваться без искажения пропорций */
  border-radius: 6px;
  display: block;
}