/* Основные стили для центрирования */
.main-content-wrapper {
    width: 100%;
    overflow-x: hidden;
}

.page-content-container {
    max-width: 100%;
    margin: 0 auto;
}

/*.page-content-wrapper {*/
/*    max-width: 100%;*/
/*    margin: 0 auto;*/
/*    padding: 0 15px;*/
/*    box-sizing: border-box;*/
/*}*/

#full-main-slider .slick-arrow {
    top: 41%
}

/* Исправление для booking module */
.booking-module-container-fluid {
    max-width: 100%;
    margin: 0 auto;
}

.row {
    margin-left: -15px;
    margin-right: -15px;
}



.about-hotel-title,
.stats-number {
     font-family: Gilroy-Bold, sans-serif;
 }
 .stats-number {
     white-space: nowrap;
     margin-right: 20px;
}

/* Стиле в слайдере на главной странице */

 .header-discription {
     padding-right: 75px;
     font-size: clamp(18px, 5vw, 40px);
     font-family: Gilroy-Bold, sans-serif;
     color: #FF6500
 }

#full-main-slider {
    height: clamp(250px, 45vh, 500px);
    max-width: 100%;
    overflow: hidden;
}


.slider-image {
    background-position: 50% 50%;
    background-size: contain;
    background-repeat: no-repeat;
    height: clamp(250px, 40vw, 450px);
}

.slider-border-container {
    position: absolute;
    top: clamp(10px, 4vw, 40px);
    left: clamp(10px, 4vw, 40px);
    right: clamp(10px, 4vw, 40px);
    bottom: clamp(15px, 5vw, 50px);
    border: 1px solid #000;
    border-radius: 20px;
    z-index: -1;
}

@media (max-width: 991px) {
    .slider-image {
        height: 370px;
    }
}

@media (max-width: 767px) {
    .slider-image {
        height: 330px;
    }
    .header-discription {
        /*font-size: clamp(38px, 4.5vw, 40px);*/
        padding: 10px;
    }
}

/* конец стилей в слайдере на главной странице */

/* Фильтр */
.hotel-filter {
    text-align: left;
}
.filter-buttons {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.filter-btn {
    background-color: #F6EEE9;
    border-radius: 15px;
    padding: 8px 16px;
    cursor: pointer;
    border: none;
    font-weight: 600;
    color: #333;
    transition: background-color 0.3s ease, color 0.3s ease;
    user-select: none;
}
.filter-btn:hover {
    background-color: #E8DED8;
}
.filter-btn.active {
    background-color: #FF6500;
    color: #fff;
}

.country-section {
    margin-bottom: 40px;
}

/* Сетка карточек */
.hotels-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Карточка отеля */
.hotel-card {
    background: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 20px;
    overflow: hidden;
    flex: 1 1 calc(25% - 15px);
    min-width: 250px;
    display: flex;
    flex-direction: column;
    min-height: 430px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-card > a:hover,
.hotel-card > a:focus {
    text-decoration: none;
    color: inherit;
}

.filter-btn:focus,
.filter-btn.active {
    outline: none;      /
}

/* Изображение в карточке */
.hotel-card-image {
    height: 180px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-color: #f5f5f5;
    border-radius: 20px;
    flex-shrink: 0;
}

/* Тело карточки */
.hotel-card-body {
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Цена */
.hotel-card-price {
    font-size: 14px;
    margin-bottom: 8px;
    font-family: Gilroy-Medium,sans-serif;
}
.price-amount {
    color: #FF6500;
    font-weight: 600;
    margin-right: 5px;
}
.price-period {
    color: #666;
}

/* Название */
.hotel-card-title {
    font-size: 19px;
    margin-bottom: 12px;
    color: #000000;
    font-family: Gilroy-Bold, sans-serif;
}

/* Адрес */
.hotel-card-address {
    display: flex;
    align-items: flex-start;
    font-size: 13px;
    color: #000000;
    font-family: Gilroy-Regular, sans-serif;
    gap: 5px;
    margin-bottom: 8px;
}

.hotel-card-address svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Кнопка Забронировать */
.hotel-card-button,
.hotel-book {
    width: 100%;
    padding: 8px 0;
    background-color: #FF6500;
    color: #FFFFFF;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease, border 0.3s ease, color 0.3s ease;
    font-family: Gilroy-Bold, sans-serif;
    margin-top: auto;
    outline: none;
}

.hotel-card-button {
     border-radius: 15px;
}

.hotel-book {
     border-radius: 10px;
}

.hotel-card-button:hover,
.answer-more-btn:hover,
.hotel-card-button:focus {
    background-color: #F6EEE9;
    color: #FF6500;
    outline: none;
}
/* для кнопки "Посмотреть все отели" */
.view-all-btn {
    padding: 12px 24px;
    font-size: 16px;
    min-width: 220px;
    white-space: nowrap;
}


 /* Стили для карточек акций */
.offer-element {
    background: #fff;
    /*border-radius: 30px;*/
    /*overflow: hidden;*/
    height: 100%;
    position: relative;
}

.rkz-block-shadow {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.rkz-block-shadow-hover {
    transition: all 0.3s ease;
}

.rkz-block-shadow-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.card-part {
    position: relative;
    background: #F6EEE9;
    overflow: hidden;
    border: 1px solid #F6EEE9;
    box-sizing: border-box;
}

.card-top {
    width: 100%;
    height: 400px;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    padding: 20px 20px 5px 20px;
    display: flex;
    flex-direction: column;
}

.card-bottom {
        border-bottom-right-radius: 15px;
        border-bottom-left-radius: 15px;
        padding: 20px;
        width: calc(100% - 42px);
    }

.card-bottom-wrapper {
    position: relative;
}

.card-wrap {
    position: absolute;
    width: 15px;
    height: 15px;
    left: 0;
    top: 0;
    background: #F6EEE9;
}

.card-corner-white {
    position: absolute;
    width: 15px;
    height: 15px;
    border-top-left-radius: 15px;
    background: #fff;
    left: 0;
    top: 0;
}

.icon-wraper {
    z-index: 10;
    display: flex;
    align-items: end;
}

.text-danger,
.text-success {
   color: #FF6500 !important;
}

.vector-icon {
    width: 40px;
    height: 40px;
    background: #FF6500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.vector-icon svg {
    width: 20px;
    height: 20px;
}

.vector-icon-link {
    align-items: center;
    display: flex;
    padding-top: 10px;
    padding-left: 10px;
    text-decoration: none;
}

.offer-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    margin-bottom: 15px;
}

.offer-shorttext {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.offer-shorttext .offer-title {
    font-family: Gilroy-Bold, sans-serif;
    font-size: 20px !important;
    margin-bottom: 10px;
    color: #FF6500;
}

.offer-shorttext .offer-description p {
    font-family: Gilroy-Medium, sans-serif;
    font-size: 16px !important;
    line-height: 1.5;
    color: #000000;
}

/* Блок новостей */
.center .slick-slide {
    transition: all 0.4s ease;
    /*transform: scale(0.9);*/
    opacity: 1;
    filter: none;
    margin-left: 30px;
    margin-right: 30px;
}

.center .slick-list {
  overflow: visible;
}

.news-prev-btn, .news-next-btn {
  position: relative;
  z-index: 2;
}

.news-slider-container,
.hotels-slider-container {
    position: relative;
    overflow: hidden;
}

.hotels-slider-container  {
    border-radius: 20px;
}

.news-slide {
    display: none;
    width: 100%;
}

.news-slide.active {
    display: block;
}

.news-slide-content {
    background: white;
    border: 1px solid #000;
    border-radius: 20px;
    overflow: hidden;
    min-height: 208px;
    display: flex;
    flex-direction: row;
}

.news-slide-content .row {
    display: flex;
    flex: 1 1 auto;
    margin: 0;
}

.news-slide-content .col-md-6 {
    display: flex;
    flex-direction: column;
}

.news-image {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    /*background-size: cover;*/
    /*background-position: center;*/
    /*border-radius: 20px 0 0 20px;*/
}

.news-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    min-height: 250px;
}

.news-title {
    font-family: 'Gilroy-Bold', sans-serif;
    font-size: 20px;
    color: #000000;
    margin-bottom: 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.news-description {
    font-family: 'Gilroy-Medium', sans-serif;
    font-size: 16px;
    color: #202020;
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-detail-btn {
    display: inline-flex;
    align-items: center;
    background-color: #FF6500;
    border-radius: 10px;
    padding: 16px;
    font-family: 'Gilroy-Bold', sans-serif;
    font-size: 16px;
    color: white !important;
    text-decoration: none !important;
    transition: background-color 0.3s, color 0.3s;
    border: 1px solid transparent;
    box-sizing: border-box;
    height: 40px;
}

.news-detail-btn:hover {
    background-color: white;
    color: #FF6500 !important;
    border-color: #FF6500;
}

.news-detail-btn:hover svg path {
    stroke: #FF6500;
}

.news-detail-btn svg {
    margin-left: 8px;
}

.news-date {
    font-family: 'Gilroy', sans-serif;
    font-size: 14px;
    color: #202020;
}

.news-navigation {
    display: flex;
    gap: 10px;
}

.news-navigation button {
    background: #F6EEE9;
    cursor: pointer;
    width: 48px;
    height: 48px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    outline: none;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

@media (max-width: 575px) {
    .news-title {
        font-size: 18px;
    }
    .news-description {
        font-size: 13px;
    }
    .news-detail-btn {
        font-size: 14px;
    }
    .news-date {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .news-text-content {
        padding: 15px;
    }
    .news-title {
        font-size: 17px;
    }
    .news-description {
        font-size: 12px;
    }
}

@media (max-width: 375px) {
    .news-title {
        font-size: 16px;
    }
    .news-detail-btn {
        font-size: 13px;
    }
    .news-date {
        font-size: 12px;
    }
}

/* Адаптация */
@media (max-width: 1199px) {
    .hotel-card {
        flex: 1 1 calc(33.333% - 13.33px);
    }
}

@media (max-width: 479px) {
    .hotel-card {
        flex: 1 1 100%;
        height: auto;
    }
}
  /* Вопросы */
 .faq-container {
    border-radius: 20px;
    overflow: hidden;
}

.faq-item {
    margin-bottom: 10px;
    border-radius: 20px;
    overflow: hidden;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    background-color: #FF6500;
    color: white;
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: Gilroy-Bold, sans-serif;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #e65c00;
}

.faq-item.active .faq-question {
    background-color: #F6EEE9;
    color: #000000;
}

.faq-item.active .faq-question svg path {
    fill: #FF6500;
}

.faq-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    font-family: Gilroy-Regular, sans-serif;
    background-color: #F6EEE9;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 20px;
}

.faq-answer p {
    margin: 0;
    color: #000000;
    line-height: 1.5;
}


@media (max-width: 767px) {

    .page-content-wrapper .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hotel-card {
        flex: 1 1 calc(50% - 10px);
    }

    .d-flex.justify-content-between.align-items-center.w-100 {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 20px;
    }

    .d-flex.justify-content-end.align-items-center.gap-3 {
        width: 100%;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 20px;
    }

    .hotel-filter {
        margin-top: 20px;
    }

    .hotel-book {
        background-color: #FF6500;
        color: #FFFFFF;
        border-radius: 20px;
        padding: 6px 12px;
        font-size: 16px;
        /*display: inline-flex;*/
        /*align-items: center;*/
        cursor: pointer;
        border: none;
        text-decoration: none;
    }

    .hotel-book:hover {
        background-color: #FFFFFF;
        color: #FF6500;
    }

    .view-all-btn {
        padding: 10px 16px;
        font-size: 14px;
        min-width: auto;
        width: 100%;
        margin-bottom: 20px;
    }
    .offer-container {
        padding: 0 10px;
    }

    .offer-title {
        font-size: 16px;
    }

    .offer-description {
        font-size: 13px;
    }

    .faq-question {
        font-size: 14px;
        padding: 12px 16px;
    }

    .faq-item.active .faq-answer {
        padding: 16px;
    }
    .news-image {
        height: 200px;
        border-radius: 20px 20px 0 0;
    }
    .news-text-content {
        padding: 20px;
    }
    .news-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .news-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .news-footer {
        padding-top: 15px;
    }
    .view-all-btn {
        padding: 10px 16px;
        font-size: 14px;
        min-width: auto;
        width: 100%;
    }

    .d-flex.justify-content-between.align-items-center.w-100 {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .d-flex.justify-content-end.align-items-center.gap-3 {
        width: 100%;
        flex-wrap: wrap;
        gap: 10px;
    }

    .stats-number {
        margin-right: 0;
        width: 100%;
    }
}

@media (max-width: 1000px) {
    .rating-list {
        display: none !important;
    }
    .pb-2 {
        display: none !important;
    }
}

@media (max-width: 767.98px) {
    .review-data {
        order: -1;
        text-align: center;
        margin-bottom: 15px;
        width: 100%;
    }

    .row.d-flex.align-i {
        flex-direction: column;
        align-items: center;
    }

    .col-md-9 {
        width: 100%;
    }
}