/*
Theme Name:         DFD Восток 6
Description:        Восток 6 - Highly Functional Multifaceted WP Theme
*/

/* Room Types Grid Template */

.mphb-room-type-gallery-wrapper .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
  padding: 16px;
}

.place-one{
  padding:20px 0;
  font-size:20px;
  font-weight:500px;
}



.mphb-calendar {
  display: none;
}

.footer__menu li a {
  color:#fff;
}

.main-menu .main-menu__list>li a,
.main-menu .main-menu__list>li.dropdown>a,
.main-menu .main-menu__list>li>ul>li>a,
.main-menu .main-menu__list>li>ul>li>ul>li>a {
  font-size: 16px !important;
  font-weight: 500 !important;
  /* color: var(--hotelux-gray) !important; */
  line-height: 16px !important;
  font-family: var(--hotelux-font-two) !important;
  text-transform: lowercase !important;
}

.room-types-grid-wrapper {
  padding: 40px 0;
}

.room-category-section {
  margin-bottom: 60px;
}

.category-header {
  text-align: center;
  margin-bottom: 40px;
}

section.page-header{
  margin:0;
}

section.page-header .section-title__title{
  color:#fff;
}

.category-title {
  font-size: 2rem;
  color: #333;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.category-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #007bff;
}

.category-description {
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.grid-item {
  break-inside: avoid;
}

.room-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.room-image {
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
}

.room-image a {
  display: block;
}

.room-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.room-card:hover .room-image img {
  transform: scale(1.05);
}

.room-price {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 123, 255, 0.9);
  color: #fff;
  padding: 8px 15px;
  border-radius: 30px;
  font-weight: bold;
  backdrop-filter: blur(5px);
}

.price-value {
  font-size: 1.2rem;
}

.price-period {
  font-size: 0.8rem;
  font-weight: normal;
}

.room-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.room-title {
  margin: 0 0 15px 0;
  font-size: 1.3rem;
}

.room-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.room-title a:hover {
  color: #007bff;
}

.room-features {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.feature {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #666;
  font-size: 0.85rem;
}

.icon-users:before {
  content: "\f007";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.icon-child:before {
  content: "\f1ae";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.room-excerpt {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.room-buttons {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.btn {
  flex: 1;
  display: inline-block;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-details {
  background: #f8f9fa;
  color: #333;
  border: 1px solid #dee2e6;
}

.btn-details:hover {
  background: #e9ecef;
  color: #007bff;
}

.btn-book {
  background: #007bff;
  color: #fff;
}

.btn-book:hover {
  background: #0056b3;
  color: #fff;
}

.services-two__icon img {
  width: 70px;
}

/* Responsive */
@media (max-width: 992px) {
  .rooms-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .rooms-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }

  
  .category-title {
    font-size: 1.5rem;
  }

  .room-image img {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .room-buttons {
    flex-direction: column;
  }
}

.room-description table {
  width: 100%;
}

/* ---------- Convert OL to GRID ---------- */
.container ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem 1.2rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem 0;
}

.container ol li {
  background: #f7fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-size: 0.95rem !important;
  color: #2d3748 !important;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
}

.container ol li::before {
  content: "•";
  color: #2b6cb0;
  font-weight: 700;
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

.container ol li:hover {
  background: #edf2f7;
  border-color: #bee3f8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(43, 108, 176, 0.08);
}

/* ---------- Benefits Paragraph ---------- */
/* .container p:nth-of-type(2) {
  background: #f7fafc;
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  margin: 1.2rem 0;
  border-left: 4px solid #2b6cb0;
  font-size: 16px !important;
  color: #2d3748 !important;
  line-height: 1.7;
} */

/* ---------- Contact Paragraph ---------- */
.container p:last-of-type {
  /* background: #2d3748; */
  /* color: #ffffff !important; */
  border-radius: 12px;
  /* padding: 1.2rem 1.8rem; */
  margin-top: 1.2rem;
  font-size: 16px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.container p:last-of-type a {
  color: #90cdf4;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
}

.container p:last-of-type a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* ---------- Paragraphs ---------- */
.container p {
  margin-bottom: 1.5rem;
  font-size: 15px !important;
  /* color: #2d3748 !important; */
  line-height: 1.8;
}

.container p:last-of-type {
  margin-bottom: 0;
}

/* ---------- Headings ---------- */
.container h3 {
  font-size: 18px !important;
  /* color: #1a365d; */
  font-weight: 700;
  margin: 2rem 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid #e2e8f0;
  letter-spacing: -0.01em;
}

.container h3:first-of-type {
  margin-top: 1.5rem;
}

/* ---------- First Paragraph (Lead) ---------- */
.container p:first-of-type {
  font-size: 16px !important;
  /* color: #1a365d !important; */
  font-weight: 500;
  /* padding: 1.2rem 1.5rem; */
  /* background: #f7fafc; */
  border-radius: 12px;
  /* border-left: 4px solid #2b6cb0; */
  margin-bottom: 2rem;
}

.site-footer-two__bottom-inner p:first-of-type{
  margin:0;
}

/* ---------- Highlight key info ---------- */
.container p strong {
  color: #1a365d;
}

.event-two__img img {
  height: auto;
}

.room-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.room-type-grid img {
  width: 100%;
}

.room-type-grid .description {
  padding: 5px 15px;
  text-align: justify;
}

/* #vk_groups,
#vk_groups iframe {
  width: 100% !important;
  border-radius: 15px;
  height: auto;
} */

/************ main slider ****************/

.booking-one {
  margin-top: -200px !important;
}

.booking-one__wrap .col-md-3{
  display:flex;
}

.booking-one .col-md-3 .img {
  width: 40px;
  height: 40px;
  margin: auto 0;
  /* display: inline-block; */
}



.booking-one .col-md-3 .img img{
  margin-top:-25px;
}

.booking-one .col-md-3 .cont {
  /* display: inline-block; */
  padding: 15px;
  color: #fff;
}

.booking-one__wrap {
  background: linear-gradient(91deg,
      rgba(25, 22, 40, 0.9) 100%,
      rgba(25, 22, 40, -0.47) 100%) !important;
}

u

/* --- Content Card --- */
.main-slider__content {
  position: relative;
  z-index: 2;
  padding: 48px 52px 38px 52px;
  max-width: 780px;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 28px;
  box-shadow:
    0 25px 70px rgba(30, 70, 70, 0.12),
    0 10px 30px rgba(30, 70, 70, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.6);
  width:90vw;
  margin:auto;
}

/* ============================================
   TYPOGRAPHY - EXACT MATCH
   ============================================ */

/* --- Sanatorium Badge (top left) --- */
.main-slider__badge {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  margin: 0 0 2px 0;
}

/* --- Main Title --- */
.main-slider__title {
  font-family: 'Georgia', 'Playfair Display', 'Times New Roman', serif;
  font-size: 58px;
  font-weight: 700;
  color: #ffff;
  margin: 0 0 0 0;
  line-height: 1.05;
  letter-spacing: -0.5px;
}

.main-slider__title .highlight {
  color: #ffff;
}

/* --- Subtitle --- */
.main-slider__sub-title {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: #ffff;
  margin: 4px 0 16px 0;
  letter-spacing: 0.8px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(43, 122, 122, 0.08);
}

/* --- Description Text --- */
.main-slider__text {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: #fff;
  margin: 0 0 26px 0;
  max-width: 560px;
}

/* ============================================
   FEATURES GRID (4 Pillars)
   ============================================ */

.main-slider__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.main-slider__features li {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #fff;
  background: rgba(43, 122, 122, 0.06);
  padding: 12px 8px;
  border-radius: 30px;
  text-align: center;
  border: 1px solid rgba(43, 122, 122, 0.08);
  transition: all 0.3s ease;
  line-height: 1.3;
}

.main-slider__features li:hover {
  background: rgba(43, 122, 122, 0.12);
  border-color: rgba(43, 122, 122, 0.2);
  transform: translateY(-2px);
}

/* ============================================
   FEATURES GRID (4 Pillars)
   ============================================ */

.main-slider__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.main-slider__features li {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #1a4a4a;
  background: rgba(43, 122, 122, 0.06);
  padding: 12px 8px;
  border-radius: 30px;
  text-align: center;
  border: 1px solid rgba(43, 122, 122, 0.08);
  transition: all 0.3s ease;
  line-height: 1.3;
}

.main-slider__features li:hover {
  background: rgba(43, 122, 122, 0.12);
  border-color: rgba(43, 122, 122, 0.2);
  transform: translateY(-2px);
}

/* ============================================
   BOOKING BUTTON
   ============================================ */

.main-slider__btn-box {
  margin: 0 0 24px 0;
}

.thm-btn {
  display: inline-block;
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ffffff;
  /* background: linear-gradient(135deg, #2b7a7a 0%, #1d5a5a 100%); */
  padding: 16px 48px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 30px rgba(43, 122, 122, 0.30);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.thm-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.6s ease;
}

.thm-btn:hover::before {
  left: 100%;
}

.thm-btn:hover {
  /* background: linear-gradient(135deg, #226666 0%, #154a4a 100%); */
  transform: translateY(-3px);
  /* box-shadow: 0 12px 40px rgba(43, 122, 122, 0.40); */
  color: #ffffff;
}

.thm-btn:active {
  transform: translateY(0px);
}

/* ============================================
   ADVANTAGES BADGES (Bottom)
   ============================================ */

.main-slider__advantages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  list-style: none;
  padding: 20px 0 0 0;
  margin: 0;
  border-top: 1px solid rgba(43, 122, 122, 0.08);
}

.main-slider__advantages li {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  text-align: left;
}

.main-slider__advantages li .advantage-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #1a4a4a;
  display: block;
  margin-bottom: 2px;
}

.main-slider__advantages li .advantage-desc {
  font-size: 11px;
  font-weight: 300;
  color: #4a6a6a;
  display: block;
  line-height: 1.4;
}

/* ============================================
   VIDEO PLAY BUTTON
   ============================================ */

.main-slider__video-link {
  position: absolute;
  right: 30px;
  top: 30px;
}

.main-slider__video-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #2b7a7a 0%, #1d5a5a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  position: relative;
  box-shadow: 0 6px 30px rgba(43, 122, 122, 0.30);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
}

.main-slider__video-icon:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 40px rgba(43, 122, 122, 0.40);
}

.main-slider__video-icon .fa-play {
  margin-left: 3px;
}

/* --- Ripple Animation --- */
.ripple {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(43, 122, 122, 0.2);
  animation: ripple-effect 2.4s infinite ease-out;
  top: 0;
  left: 0;
  pointer-events: none;
}

.ripple:last-child {
  animation-delay: 0.8s;
}

@keyframes ripple-effect {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

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