/*==============================
        GLOBAL CSS
================================ */
* {
    scroll-behavior: smooth;
}
:root {
    --bg-theme: #f49d1a;
    --bg-theme-dark: #d88d1d;
    --bg-theme-secondary: #b01e68;
    --bg-theme-secondary-dark: #961153;
    --white-color: #fff;
    --black-color: #000000;
    --slate-color: #48494e;
    --offwhite-color: #f0f0f0;
}
body {
    font-family: "Poppins", sans-serif !important;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
    color: #222;
    background-color: var(--white-color);
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif !important;
    margin-bottom: 0;
    color: var(--black-color);
    font-weight: 600;
    line-height: 1.3;
}
ul {
    list-style: none;
}
p {
    margin-bottom: 0;
}

.bg-theme {
    background-color: var(--bg-theme);
}
.bg-theme-secondary {
    background-color: var(--bg-theme-secondary);
}
.bg-offwhite {
    background-color: var(--offwhite-color);
}
.text-theme {
    color: var(--bg-theme);
}
.text-theme-secondary {
    color: var(--bg-theme-secondary);
}
.btn-theme {
    background-color: var(--bg-theme) !important;
    color: var(--white-color);
}
.btn-theme:hover {
    background-color: var(--bg-theme-dark) !important;
    color: var(--white-color);
}
.btn-theme-secondary {
    background-color: var(--bg-theme-secondary) !important;
    color: var(--white-color);
}
.btn-theme-secondary:hover {
    background-color: var(--bg-theme-secondary-dark) !important;
    color: var(--white-color);
}
.btn-outline-theme {
    --bs-btn-color: var(--bg-theme);
    --bs-btn-border-color: var(--bg-theme);
    --bs-btn-hover-bg: var(--bg-theme);
    --bs-btn-hover-border-color: var(--bg-theme);
    --bs-btn-active-bg: var(--bg-theme);
    --bs-btn-active-border-color: var(--bg-theme);
    --bs-btn-disabled-color: var(--bg-theme);
    --bs-btn-disabled-border-color: var(--bg-theme);
}
.btn-outline-theme:hover {
    color: #fff;
}
*,
::before,
::after {
    scroll-behavior: smooth;
}
a {
    color: var(--bg-theme-secondary);
}
.form-control:focus {
    border: 1px solid var(--bg-theme);
}
.form-control:focus {
    box-shadow: none;
}
.form-select {
    padding: 0.2rem 1.75rem 0.2rem 0.5rem;
    cursor: pointer;
}
.form-select:focus {
    box-shadow: none;
}
.form-select option {
    cursor: pointer;
}
.limit-3L {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}
.limit-2L {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.limit-1L {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}
.splide__arrow svg {
    height: 1em;
    width: 1em;
}
.splide__arrow {
    background: var(--white-color);
    box-shadow: 0 0 14px 1px rgba(0, 0, 0, 0.25);
    z-index: 15;
}
.splide__arrow--prev {
    left: 0;
    /* transform: translate(-50%, 0); */
}
.splide__arrow--next {
    right: 0;
    /* transform: translate(50%, 0); */
}
/* @media (max-width: 576px) {
    .splide__arrow--prev {
        transform: translate(0, 0);
    }
    .splide__arrow--next {
        transform: translate(0, 0);
    }
} */
.scroll-top-top {
    height: 35px;
    width: 35px;
    line-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-theme-secondary);
    position: fixed;
    top: 2rem;
    right: 1.5rem;
    border-radius: 0.5rem;
    opacity: 0;
    transition: 0.8s ease-in-out;
    cursor: pointer;
    z-index: 20;
}
.scroll-top-top:hover {
    background-color: var(--bg-theme-secondary-dark);
}
@keyframes fadeIn {
    0% {
        top: 2rem;
        opacity: 0;
        transform: rotate(180deg);
    }
    100% {
        top: 90%;
        opacity: 1;
        transform: rotate(0);
    }
}
.scroll-top-top.show {
    animation: fadeIn 0.8s ease-in-out 1;
    top: 90%;
    opacity: 1;
}

.form-check-input:checked {
    background-color: var(--bg-theme);
    border-color: var(--bg-theme);
}
.form-check-input:focus {
    border-color: var(--bg-theme);
    box-shadow: none;
}

/*==============================
        HEADER CSS
================================ */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 99;
    background-color: rgba(255, 255, 255, 0.95);
}
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(7px);
    transition: 0.3s ease-in-out;
    z-index: 25;
}

#header.active {
    background-color: var(--white-color);
    box-shadow: 0 5px 13px -7px rgba(0, 0, 0, 0.34);
}
.nav-menu {
    list-style: none;
    display: flex;
}
.nav-menu .nav-item {
    display: inline-block;
    height: 100%;
    width: 100%;
    position: relative;
}
.nav-menu .nav-link {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0.5rem 1.25rem;
    white-space: nowrap;
    color: #000;
    font-size: 0.95rem;
}
.nav-link i {
    margin-left: 0.5rem;
}
.nav-link:hover {
    background: #ededed;
}
.nav-menu .submenu {
    padding: 0.5rem 0;
    position: absolute;
    top: 100%;
    left: 30px;
    background-color: var(--white-color);
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.25);
    display: block;
    visibility: hidden;
    opacity: 0;
    transition: 0.35s ease-in-out;
    transition-delay: 0.1s;
}
.nav-menu .submenu .nav-link {
    padding: 0.75rem 1.25rem;
}
.nav-menu .nav-item.dropdown:hover .submenu {
    visibility: visible;
    left: 0;
    opacity: 1;
}

/* MOBILE MENU */
#offcanvasMobileMenu {
    width: 280px;
}
.mobile-nav .nav-link {
    display: flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    font-size: 0.95rem;
    border-radius: 0.5rem;
}
.submenu {
    display: none;
}

/*==============================
        BANNER CSS
================================ */
.home-banner {
    position: relative;
    max-height: 100vh;
}
#home-slider {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
#home-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: -1;
}
#home-slider .splide__arrow--prev {
    left: 15px;
    transform: translate(0, 0);
}
#home-slider .splide__arrow--next {
    right: 15px;
    transform: translate(0, 0);
}
#home-slider .splide__arrow {
    height: 3em;
    width: 3em;
}
#home-slider .splide__arrow svg {
    height: 1.25em;
    width: 1.25em;
}
#home-slider .splide__list {
    height: 100%;
}
.search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.header {
    padding: 200px 0;
}

.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.header-content h2 {
    font-size: 5rem;
    margin-bottom: 1rem;
    font-family: initial !important;
    -webkit-text-fill-color: #ccc;
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: #fafafa;
}

.splide__slide.home_slider {
    background-color: rgba(0, 0, 0, 0.6);
    background-blend-mode: multiply;
}

@media (max-width: 602px) {
    .header-content h2 {
        font-size: calc(2.325rem + 0.9vw);
    } 
}

#destination-input.active * {
    background-color: #ffead0;
}
.select2-container--default
    .select2-results__option--highlighted[aria-selected] {
    background-color: var(--bg-theme);
    color: white;
    font-size: 0.95rem;
}
.select2-container {
    flex: 1 1 auto;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    outline: 1px solid var(--bg-theme);
    border-radius: 6px;
}

.daterangepicker .calendar-table td {
    font-size: 14px;
    padding: 7px 10px;
    color: #393939 px;
    border-radius: 50%;
}
.daterangepicker td.start-date {
    color: #fff;
    border-radius: 50px 0 0 50px;
}
.daterangepicker td.in-range,
.daterangepicker td.off.in-range {
    background-color: #e7e7e7;
}
.daterangepicker td.in-range {
    border-radius: 0;
}
.daterangepicker td.end-date {
    border-radius: 0 50px 50px 0;
}
.daterangepicker td.end-date:hover,
.daterangepicker td.off.end-date:hover {
    background-color: var(--bg-theme);
}
.daterangepicker td.active,
.daterangepicker td.active:hover {
    background-color: var(--bg-theme);
    border-color: transparent;
    color: #fff;
}
.applyBtn,
.applyBtn:hover {
    background: var(--bg-theme);
    border: 1px solid var(--bg-theme-dark);
}
.applyBtn:disabled {
    opacity: 0.5;
    background: var(--bg-theme);
}

.adult_adjust_btn,
.child_adjust_btn,
.room_adjust_btn {
    width: 30px;
    min-width: 30px;
    min-height: 30px;
    height: 30px;
    line-height: 30px;
    display: inline-block;
    padding: 0;
    border-radius: 50%;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield;
}

/*==============================
        OFFERS CSS
================================ */
.section-header {
    margin-bottom: 2rem;
}

.section-header .section-subtitle {
    color: var(--slate-color);
}
.splide__list {
    height: auto;
}
.single-offer {
    height: 100%;
    display: flex;
    background-color: var(--offwhite-color);
}
.offer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.offer-content .offer-title {
    margin-bottom: 0.5rem;
    color: var(--slate-color);
}
.offer-content .offer-subtitle {
    font-size: 13px;
}
.offer-heading {
    flex: 0 0 100px;
    min-height: 148px;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-theme);
    color: var(--white-color);
    padding: 0.75rem;
}
.offer-heading .upto {
    margin-bottom: 0.25rem;
}
.offer-heading .discount {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.offer-content {
    padding: 1rem;
}
.offer-title {
    height: 2.6rem;
}
.offer-subtitle {
    line-height: 1.3;
    margin-bottom: 0.25rem;
}
@media (max-width: 768px) {
    .single-offer {
        flex-wrap: wrap;
    }
    .offer-heading {
        flex: 0 0 100%;
        min-height: auto;
    }
    .offer-heading .discount {
        flex-direction: row;
    }
    .offer-heading .upto {
        margin-bottom: 0;
    }
}

/*==============================
        OUR HOTELS CSS
================================ */
.single-hotel {
    position: relative;
    border-radius: 0.75rem;
    cursor: pointer;
    overflow: hidden;
}
.single-hotel img {
    border-radius: 0.75rem;
}
.single-hotel .hotel-overlay {
    position: absolute;
    border-radius: 0.75rem;
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0;
    right: 0;
    padding: 1.2rem 1rem;
    z-index: 2;
    background-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.6) 25%,
        transparent 45%
    );
}
.single-hotel .hotel-overlay-title {
    color: var(--white-color);
    margin-bottom: 0.25rem;
}
.single-hotel .hotel-price {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(0, -50%);
    white-space: nowrap;
    z-index: 2;
}
.single-hotel .splide__arrow--prev {
    left: 1em;
    transform: initial;
}
.single-hotel .splide__arrow--next {
    right: 1em;
    transform: initial;
}
@media (max-width: 768px) {
    .single-hotel .hotel-overlay {
        padding: 1.2rem 0.5rem;
    }
    .single-hotel .hotel-overlay-title {
        font-size: 1.1rem;
    }
}

/*==============================
        OUR ROOMS CSS
================================ */
.single-room {
    background-color: var(--offwhite-color);
    border-radius: 0.75rem;
    text-decoration: none;
}
.single-room img {
    border-radius: 0.75rem 0.75rem 0 0;
}
.room-overlay {
    padding: 0.75rem;
}

/*==============================
        HOTEL SEARCH CSS
================================ */
.hotel-list .single-hotel {
    display: flex;
    border: 1px solid var(--slate-color);
    padding: 0.75rem;
    border-radius: 0.75rem;
    /* box-shadow: 0 0 12px 0 rgba(0,0,0,0.25); */
}
.hotel-list .single-hotel img {
    max-width: 280px;
}
.single-hotel .single-hotel-content {
    margin-left: 1rem;
    flex: 1;
}
@media (max-width: 768px) {
    .hotel-list .single-hotel {
        flex-direction: column;
        align-items: center;
    }
    .single-hotel .single-hotel-content {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    .hotel-list .single-hotel img {
        max-width: 100%;
    }
}

/*==============================
        SINGLE HOTEL CSS
================================ */
#hotel-details .gallery-container {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(33.33%, 50%) auto auto;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    gap: 0.75rem;
}
@media (max-width: 992px) {
    #hotel-details .gallery-container {
        gap: 0.5rem;
    }
}
#hotel-details .gallery-item {
    border-radius: 0.75rem;
}
#hotel-details .gallery-item img {
    border-radius: 0.75rem;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hotel-content .title {
    font-size: 1.5rem;
    font-weight: 300;
}
.hotel-content .facility {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.hotel-content .facility li {
    display: flex;
    width: 48%;
    color: var(--bs-secondary-color);
    font-weight: 500;
    align-items: center;
}
.hotel-content .facility li small {
    white-space: nowrap;
    font-size: 0.95rem;
}
.hotel-content .facility li i {
    color: var(--bg-theme-secondary);
    font-size: 1.25rem;
    margin-right: 1rem;
}
.policy-item {
    display: flex;
    align-items: self-start;
    gap: 0.5rem;
    padding: 0.3rem 0;
}
@media (max-width: 576px) {
    .policy-item {
        flex-direction: column;
    }
}
.policy-title {
    min-width: 35%;
    display: flex;
    align-items: center;
}
.policy-title::after {
    content: ":";
    margin-left: auto;
}
.policy-title i {
    margin-right: 0.5rem;
}
.policy ul {
    list-style-type: disc;
}
.policy .payment img {
    width: 15% !important;
}
@media (max-width: 768px) {
    /* #hotel-details .gallery-container {
        display: flex;
    } */
    #hotel-details .gallery-item img {
        border-radius: 0.35rem;
    }
}

.reservation-card {
    position: sticky;
    top: 100px;
    z-index: 20;
}
.reservation-calculations .calc-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

/* LIGHT GALLERY */
.lg-thumb.lg-group {
    margin: 0 auto;
}
/* SWIPER */
.swiper-wrapper {
    height: auto;
}
.swiper-pagination-fraction {
    display: inline-block;
    background: var(--slate-color);
    color: var(--white-color);
    font-size: 12px;
    border-radius: 5px;
    width: auto;
    padding: 0.2rem 1rem;
    left: auto;
    right: 5px;
}

/*==============================
        GALLERY CSS
================================ */
#gallery-image-container,
.album-items {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
#gallery-image-container .gallery-image {
    width: calc(33.333% - 0.7rem);
}
.album-items .gallery-image {
    width: calc(25% - 0.75rem);
}
@media (max-width: 768px) {
    #gallery-image-container,
    .album-items {
        gap: 0.5rem;
    }
    #gallery-image-container .gallery-image,
    .album-items .gallery-image {
        width: calc(50% - 0.25rem);
    }
}
#gallery-image-container img,
.album-items img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*==============================
        CONTACT CSS
================================ */
.single-contact-info {
    padding: 1.25rem;
    background-color: var(--white-color);
    border-radius: 0.5rem;
    text-align: center;
}
@media (max-width: 768px) {
    .single-contact-info {
        padding: 0.75rem;
    }
}
.single-contact-info i {
    font-size: 2.2rem;
    color: var(--bg-theme-secondary);
    margin-bottom: 1rem;
    display: inline-block;
}
.single-contact-info .contact-heading {
    margin-bottom: 0.2rem;
}
.map-area iframe {
    width: 100%;
    height: 100%;
}

/*==============================
        FOOTER CSS
================================ */
#footer {
    padding: 5rem 0;
    background: #360f26;
}

.footer-title {
    color: var(--white-color);
    margin-bottom: 2rem;
}

.footer-base {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-base a img {
    height: 100px;
    background: #fafafa;
    border-radius: 8px;
}

.footer-base ul {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-base ul li a {
    text-decoration: none;
    list-style-type: none;
    font-size: 20px;
    color: #fff;
}

.footer-quick-links ul {
    padding: 0;
}

.footer-quick-links ul li a {
    font-size: 15px;
    font-weight: 300;
    color: #f49d1a;
}

.footer-quick-links ul li a:hover {
    color: #fff;
}

.contact-item h6 {
    color: var(--white-color);
}
#footer > * {
    font-size: 15px;
    color: var(--offwhite-color);
}
.contact-item .social {
    display: flex;
    gap: 1.25rem;
}
.contact-item .social i {
    font-size: 1.25rem;
    color: var(--white-color);
}

.subscribe-newsletter form {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.subscribe-newsletter form input[type="text"] {
    padding: 12px 12px;
    border: 0;
    width: 100%;
    text-align: center;
}

.subscribe-newsletter form input[type="text"]:focus {
    outline: none;
    display: flex;
}

.subscribe-newsletter form button {
    padding: 12px 12px;
    border: 0;
    width: 100%;
    background: #F49D1A;
    font-weight: 600;
}

.footer-bottom center {
   line-height: 30px;
}

.footer-bottom center img {
    height: 20px;
}

/* Skeleton Loader Styles */

.preloader {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    z-index: 999;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hide-preloader {
    display: none;
}
.stop-scroll-on-load {
    overflow: hidden;
}
.loader {
    height: 10px;
    width: 130px;
    --c: no-repeat linear-gradient(#f49d1a 0 0);
    background: var(--c), var(--c), #d7b8fc;
    background-size: 60% 100%;
    animation: l16 3s infinite;
}
@keyframes l16 {
    0% {
        background-position: -150% 0, -150% 0;
    }
    66% {
        background-position: 250% 0, -150% 0;
    }
    100% {
        background-position: 250% 0, 250% 0;
    }
}

.skeleton {
    display: inline-block;
    width: 100%;
    height: 200px;
    background-color: #f0f0f0;
    background-image: linear-gradient(
        90deg,
        #f0f0f0 25%,
        #e0e0e0 50%,
        #f0f0f0 75%
    );
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

.skeleton img {
    height: 50px;
    width: 50px;
}

@keyframes loading {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.skeleton-text {
    height: 20px;
    width: 60%;
    background-color: #f0f0f0;
    margin-top: 10px;
    background-image: linear-gradient(
        90deg,
        #f0f0f0 25%,
        #e0e0e0 50%,
        #f0f0f0 75%
    );
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

.truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* preloader */

.loading-state {
    color: #000;
    width: 4px;
    aspect-ratio: 1;
    border-radius: 50%;
    box-shadow: 19px 0 0 7px, 38px 0 0 3px, 57px 0 0 0;
    transform: translateX(-38px);
    animation: l21 0.5s infinite alternate linear;
}

@keyframes l21 {
    50% {
        box-shadow: 19px 0 0 3px, 38px 0 0 7px, 57px 0 0 3px;
    }
    100% {
        box-shadow: 19px 0 0 0, 38px 0 0 3px, 57px 0 0 7px;
    }
}

/* Toast Alert */
#toast {
    visibility: hidden;
    min-width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 16px;
    position: fixed;
    z-index: 999;
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    top: 50px;
    font-size: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

#toast.show {
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

#toast.hide {
    transform: translateX(-50%) translateY(-50%);
    opacity: 0;
}

#toast_icon {
    font-size: 20px;
    padding: 10px;
    height: 30px;
    width: 30px;
    border: 1px solid;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadein {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeout {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}
