/* ========================= */
/* :: 1.0 WEB FONTS  */
/* ========================= */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

/* ================================== */
/* :: 2.0 GLOBAL Variable Define CSS  */
/* ================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    /* Google Font */
    --plus-jakarta-sans: 'Plus Jakarta Sans', sans-serif;
    --spectral: 'Spectral', serif;

    /* Color Palette */
    --white: #fff;
    --light: #f2f2f2;
    --black: #000;
    --primary: #808757;
    --primary-light: #fffedb;
    --dark: #0a0a0a;
    --gray: #3d3d3d;
    --gray-2: #373737;
}

/* ========================= */
/* :: 3.0 COMMON CSS */
/* ========================= */
html,
body {
    height: 100%;
    scroll-behavior: smooth;
}
body {
    color: var(--black);
    font-size: 16px;
    font-family: var(--plus-jakarta-sans);
    font-weight: 400;
    line-height: 1.667;
    letter-spacing: -0.2px;
    background-color: var(--white);
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}
section,
.section {
    position: relative;
}
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}
a,
button {
    outline: none;
    box-shadow: none;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
button {
    padding: 0;
    border: none;
    background: unset;
}
ol,
ul {
    margin: 0;
    padding: 0;
}
ol li,
ul li {
    list-style: none;
}
img {
    height: auto;
    max-width: 100%;
    object-fit: cover;
}
input,
input:focus,
input:focus-visible,
input:active,
select,
.form-select,
.form-select:focus,
textarea {
    outline: none;
    box-shadow: none;
}
* + address,
* + dl,
* + fieldset,
* + figure,
* + ol,
* + p,
* + pre,
* + ul {
    margin: 0;
    padding: 0;
}

*::-moz-selection {
    background: var(--black);
    color: var(--white);
    text-shadow: none;
}
::-moz-selection {
    background: var(--black);
    color: var(--white);
    text-shadow: none;
}

::selection {
    background: var(--black);
    color: var(--white);
    text-shadow: none;
}

/* =============================== */
/* :: 4.0 Common CSS */
/* =============================== */

/* ===== Typography CSS Start ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--spectral);
    font-weight: 500;
}
.ff-spectral {
    font-family: var(--spectral);
}

.fs-1 {
    font-size: 40px !important;
    line-height: 1;
}
.fs-2 {
    font-size: 36px !important;
    line-height: 1;
}
.fs-3 {
    font-size: 32px !important;
    line-height: 1;
}
.fs-4 {
    font-size: 28px !important;
    line-height: 1.2;
}
/* ===== Typography CSS End ===== */

/* ===== Color CSS Start ===== */
.text-primary {
    color: var(--primary) !important;
}
.text-primary-light {
    color: var(--primary-light) !important;
}
.text-dark {
    color: var(--dark) !important;
}
.text-grey-2 {
    color: var(--gray-2) !important;
}
.bg-primary {
    background-color: var(--primary) !important;
}
.bg-light {
    background-color: var(--light) !important;
}
/* ===== Color CSS End ===== */

/* ===== Button CSS Start ===== */
.btn {
    min-width: 180px;
    height: 50px;
    padding: 10px 16px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    color: var(--white);
    font-size: 15px;
    line-height: 1.4;
    font-family: var(--spectral);
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease-in-out;
}
.btn--primary {
    background-color: var(--primary);
}
.btn--black {
    color: var(--white);
    background-color: var(--black);
}
.btn--white {
    color: var(--black);
    background-color: var(--white);
}
.btn:hover {
    background-color: var(--light);
}
.btn--white:hover {
    color: var(--white);
    background-color: var(--black);
}

.btn__icon {
    overflow: hidden;
}
.btn__icon svg {
    width: 100%;
}
.btn__icon--arrow {
    width: 14px;
    height: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Button Animation */
.btn:hover .btn__icon--arrow svg,
.btn:hover .btn__icon--arrow img {
    animation: arrowDiagonalTrough 0.3s ease-in-out forwards;
}

@keyframes arrowDiagonalTrough {
    0%,
    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
    40% {
        transform: translate(120%, -120%);
        opacity: 0;
    }
    41% {
        transform: translate(-120%, 120%);
        opacity: 0;
    }
}

/* ===== Button CSS End ===== */

/* ===== CSS for Random Componetns/Classes Start ===== */
.transition-common {
    transition: all 0.3s ease-in-out;
}
.arrowDiagonalAnim:hover .arrowDiagonalAnimIcon svg {
    animation: arrowDiagonalTrough 0.3s ease-in-out forwards;
}
@keyframes arrowDiagonalTrough {
    0%,
    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
    40% {
        transform: translate(120%, -120%);
        opacity: 0;
    }
    41% {
        transform: translate(-120%, 120%);
        opacity: 0;
    }
}
/* ===== CSS for Random Componetns/Classes End ===== */

/* =============================== */
/* :: 5.0 Header Area CSS Start */
/* =============================== */
.header--area {
    padding: 12px 0;
    background-color: rgba(0, 0, 0, 0.25);
}
.header--absolute {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9;
}
.header__wrapper {
    max-width: 1232px;
}
.logo--header {
    max-width: 128px;
}
.mobile-menu-open,
.mobile-menu-close {
    width: 36px;
    height: 36px;
    font-size: 15px;
    color: var(--white);
    background-color: var(--primary);
}
.mobile-menu .offcanvas {
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
}
.nav__item--mobileMenu {
    border-bottom: 1px solid var(--gray);
}
.nav__link--mobileMenu,
.nav__link--header {
    color: var(--white);
    font-size: 14px;
    letter-spacing: 0;
    padding: 14px 0;
}
.nav__item--mobileMenu:hover .nav__link--mobileMenu,
.nav__link--mobileMenu[aria-expanded='true'] {
    color: var(--primary);
}
.has-submenu {
    position: relative;
}
.has-submenu.nav__link--mobileMenu::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 8px;
    background: url('../imgs/icons-objs/chevron-down-white.svg') no-repeat;
    background-size: 12px;
    transition: all 0.3s ease-in-out;
    transform-origin: 50% 30%;
}
.nav__link--mobileMenu:hover.has-submenu::after {
    filter: invert(57%) sepia(19%) saturate(766%) hue-rotate(29deg)
        brightness(87%) contrast(76%);
}
.nav__link--mobileMenu[aria-expanded='true'].has-submenu::after {
    filter: invert(57%) sepia(19%) saturate(766%) hue-rotate(29deg)
        brightness(87%) contrast(76%);
    transform: rotate(-180deg);
}
.submenu--mobile {
    background-color: rgba(255, 254, 219, 0.05);
}
.submenu__link--mobile {
    padding: 10px 24px;
    color: var(--white);
    font-size: 90%;
    border-top: 1px solid var(--gray);
}
.submenu__link--mobile:hover {
    color: var(--primary);
}
.submenu__link__icon {
    width: 28px;
    height: 28px;
    background-color: var(--white);
    color: #28282d;
    overflow: hidden;
}
.submenu__link__icon svg,
.submenu__link__icon img {
    width: 40%;
}

/* Mobile Navigation for Large Devices Start */
.nav--header,
.nav__wrapper--header {
    gap: 36px;
}
.nav__item--header {
    position: relative;
}
.nav__link--header {
    padding: 20px 0;
    gap: 8px;
}
.nav__item--header:hover .nav__link--header {
    color: var(--primary);
}
.header__submenu__icon {
    transform-origin: 50% 45%;
}
.nav__link--header:hover .header__submenu__icon {
    transform: rotate(-180deg);
}
.submenu--header {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    width: max-content;
    background-color: var(--primary);
    box-shadow: 0 0 32px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    margin-top: 16px;
}
.nav__item--header:hover .submenu--header {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    transform: translateX(-50%) scale(1);
}
.submenu__item--header {
    border-bottom: 1px solid var(--white);
}
.submenu__item--header:last-child {
    border: none;
}
.submenu__link--header {
    padding: 18px 24px;
    gap: 28px;
    color: var(--primary-light);
    font-size: 20px;
}
.submenu__link--header .submenu__link__icon {
    width: 32px;
    height: 32px;
}
.btn.btn--header {
    min-width: auto;
}
.header__btn {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: white;
    font-size: 16px;
}
.header__btn:hover {
    color: var(--black);
    background-color: var(--white);
}
/* Mobile Navigation for Large Devices End */

.sticky-header {
    position: relative;
    width: 100%;
    z-index: 99999;
    transition: top 0.3s ease-in-out;
}
.sticky-header.sticky-active {
    position: fixed;
    top: -100px;
    left: 0;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}
.sticky-header.sticky-active.show {
    top: 0; /* Slide down smoothly to 0 */
}
/* =============================== */
/* :: 5.0 Header Area CSS End */
/* =============================== */

/* =============================== */
/* :: 6.0 Hero Section CSS Start */
/* =============================== */
.hero--section {
    padding: 126px 0 56px;
}
.hero--section::before,
.hero--section::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-116deg, #080a09 10%, #1f2221 62%, #000 100%);
    opacity: 0.3;
    z-index: -1;
}
.hero--section::after {
    background: linear-gradient(
        -142deg,
        rgba(8, 10, 9, 0.63) 13%,
        rgba(31, 34, 33, 0.89) 62%,
        rgba(0, 0, 0, 0.34) 100%
    );
    opacity: 1;
}
.hero__wrapper {
    max-width: 912px;
}
.word {
    display: inline-flex !important;
}
.char {
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}
.hero__para {
    font-size: 18px;
}
.hero__buttons {
    gap: 16px;
}
/* =============================== */
/* :: 6.0 Hero Section CSS End */
/* =============================== */

/* ===================================== */
/* :: 7.0 SectionBlock (Enjoy) CSS Start */
/* ===================================== */
.sectionBlock__outer__container {
    max-width: 1920px;
}
.sectionBlock__wrapper {
    max-width: 1600px;
}
.sectionBlock__inner__wrapper {
    max-width: 1360px;
}
.sectionBlock__content {
    padding: 48px 0;
}
.sectionBlock__thumb__img {
    width: 100%;
}
.sectionBlock__bg__obj {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
/* =================================== */
/* :: 7.0 SectionBlock (Enjoy) CSS End */
/* =================================== */

/* =============================== */
/* :: 8.0 Welcome Section CSS Start */
/* =============================== */
.welcome--section {
    padding: 48px 0;
}
.welcome__wrapper {
    max-width: 1236px;
}
.welcome__cards__row {
    --bs-gutter-x: 10px;
    --bs-gutter-y: 10px;
}
.card {
    padding: 0;
    border: none;
    border-radius: 0;
}
.card--welcome {
    height: 100%;
    padding: 5px 5px 10px;
    background-color: var(--light);
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.card--welcome:hover {
    background-color: var(--primary);
}
.card__thumb--welcome {
    width: 100%;
    height: 285px;
}
.card__content--welcome {
    padding: 16px 16px 0;
}
.card__content__head {
    margin-bottom: 18px;
}
.card__title {
    color: #304049;
    font-size: 22px;
    line-height: 1.66;
}
.card--welcome:hover .card__title--welcome {
    color: var(--primary-light);
}
.card__circle__btn {
    width: 36px;
    height: 36px;
    color: #28282d;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: var(--white);
}
.card--welcome:hover .card__circle__btn {
    border-color: transparent;
}
.card__circle__btn .icon {
    width: 37%;
    aspect-ratio: 1 / 1;
}
.card__circle__btn svg {
    width: 100%;
}
.card__para--welcome {
    font-size: 14px;
    color: var(--gray-2);
}
.card--welcome:hover .card__para--welcome {
    color: var(--white);
}
.card__icon--welcome {
    width: 44px;
    height: 44px;
    background-color: var(--white);
}
.card__icon--welcome svg {
    max-width: 22px;
}
/* =============================== */
/* :: 8.0 Welcome Section CSS End */
/* =============================== */

/* =============================== */
/* :: 9.0 Stay Section CSS Start */
/* =============================== */
.stay--section {
    background-color: #e8e1d7;
}
.stay__wrapper {
    max-width: 1920px;
}
.stay__inner {
    max-width: 1236px;
}
.stay__content {
    padding: 48px 0;
}
.logo-icon__img {
    max-width: 40px;
    width: 100%;
}
.stay--section .section__buttons {
    gap: 16px;
}
/* =============================== */
/* :: 9.0 Stay Section CSS End */
/* =============================== */

/* =============================== */
/* :: 10.0 Testimonial Section CSS Start */
/* =============================== */
.testimonial--section {
    padding: 48px 0;
}
.testimonial--section .swiper-wrapper {
    align-items: stretch;
}
.testimonial--section .swiper-slide {
    height: auto;
    display: flex;
}
.card--testimonial {
    height: 100%;
    padding: 24px 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #f2f2f2;
}
.card--testimonial:hover {
    border-color: transparent;
    background-color: var(--primary);
}
.card__top--testimonial {
    padding-bottom: 18px;
}
.quote-icon {
    max-width: 36px;
    color: var(--primary);
}
.quote-icon svg,
.quote-icon img {
    width: 100%;
}
.card--testimonial:hover .quote-icon,
.card--testimonial:hover .card__para--testimonial,
.card--testimonial:hover .ratings {
    color: var(--white);
}
.card__bottom--testimonial {
    padding-top: 18px;
    border-top: 1px solid var(--black);
}
.card--testimonial:hover .card__bottom--testimonial {
    border-color: var(--white);
}
.guest-name {
    font-size: 18px;
    margin-bottom: 2px;
}
.card--testimonial:hover .guest-name {
    color: var(--primary-light);
}
.card--testimonial .ratings {
    color: var(--primary);
    gap: 2px;
}
.swiper-button-next,
.swiper-button-prev {
    position: static;
    margin-top: 0;
}
.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}
.slider-slide-btn {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    color: var(--dark);
    background-color: #e4e4e4;
    transition: all 0.3s ease-in-out;
}
.slider-slide-btn:hover {
    color: var(--white);
    background-color: var(--primary);
}
.slider-slide-btn svg,
.slider-slide-btn img {
    width: 50%;
    height: 50%;
}
/* =============================== */
/* :: 10.0 Testimonial Section CSS End */
/* =============================== */

/* ======================================== */
/* :: 11. Gallery CSS Start */
/* ======================================== */
.gallery--section {
    padding: 48px 0;
}
.gallery__wrapper {
    max-width: 1920px;
}
.section__head--gallery {
    max-width: 1224px;
}
.gallery__wrapper .swiper-slide {
    width: max-content;
    height: 368px;
    transition: all 0.3s ease-in-out;
}
.card--gallery {
    width: 100%;
    height: 100%;
}
.card__thumb__img--gallery {
    transition: all .4s ease-in-out;
}
.card--gallery:hover .card__thumb__img--gallery {
    transform: scale(1.05);
}
.lg-backdrop {
    opacity: 0.98 !important;
}
/* ====================================== */
/* :: 11. Gallery CSS End */
/* ====================================== */

/* =============================== */
/* :: 12.0 Footer Area CSS Start */
/* =============================== */
.footer--area {
    background-color: #e8e1d7;
}
.footer__wrapper {
    max-width: 1240px;
}
.section__head--footer,
.footer__content {
    padding: 48px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.footer__content__row {
    --bs-gutter-y: 32px;
}
.section__title--footer {
    font-size: 40px;
    line-height: 1.112;
}
.logo--footer {
    max-width: 180px;
    margin-bottom: 30px;
}
.footer__contact {
    max-width: 408px;
    width: 100%;
}
.footer__mail__wrap {
    width: 100%;
}
.footer__form__item {
    padding: 16px;
    background-color: var(--white);
}
.footer__form__label {
    width: 24px;
    height: 21px;
    line-height: 1;
    margin-top: 2px;
}
.footer__form__label svg,
.footer__form__label img {
    width: 100%;
}
.footer__form__input {
    width: 100%;
    height: 100%;
    color: var(--black);
    font-size: 15px;
    font-weight: 600;
    border: none;
}
.footer__form__input::placeholder {
    color: var(--black);
    font-size: 15px;
    font-weight: 600;
}
.btn.footer__submit__btn {
    min-width: auto;
    height: auto;
    padding: 10px 15px;
    font-size: 17px;
}
.footer__submit__btn:hover {
    color: var(--white);
    background-color: var(--black);
}
.footer__widget__title {
    font-size: 18px;
}
.contact--footer {
    gap: 16px;
}
.contact__item--footer {
    gap: 8px;
    align-items: first baseline;
}
.contact__item--footer .icon {
    width: 32px;
    height: 32px;
}
.contact__item--footer .icon svg {
    width: 50%;
}
.contact__link--footer,
.contact__text {
    font-size: 14px;
    color: var(--black);
}
.contact__link--footer:hover {
    color: var(--primary);
}
.nav__wrapper--footer {
    gap: 8px;
}
.nav__link--footer {
    color: var(--black);
    font-size: 14px;
}
.nav__link--footer:hover {
    color: var(--primary);
}
.copyright {
    padding: 16px 0;
}
    font-size: 14px;
.copyright__text {
}
/* =============================== */
/* :: 12.0 Footer Area CSS End */
/* =============================== */

.nav--header ul li:last-child { display: none; }
.nav--header ul li ul li:last-child { display: block; }