/* fontawasome-link */
@import url('https://pro.fontawesome.com/releases/v6.0.0-beta3/css/all.css');

/* fontawasome-link */


:root {
    --primary-color: #d8741b;
    --deep-black: #000000;
    --secondry-color: #606161;
    --color-black: #1f2a2a;
    --color-white: #ffffff;
    --theme-color: #d8bc8c;
    --white-bg: #fcfaf6;
    --dark-bg: #202828;
    --light-black: #6f7b7b;
    --navy-blue: #232055;
    --light-white: #faf9f7;
    --light-yellow: #e4bf5c;
    --primary-font: "Roboto", sans-serif;
    --secondry-font: 'Optima', sans-serif;
}

@font-face {
    font-family: 'Optima';
    src: url('../web-fonts/Optima.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}


html {
    font-size: 62.5%;
}

body {
    background: url(../images/body-bg.png);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: var(--primary-font);
}

a {
    text-decoration: none !important;
}

ul {
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

h1,
h2,
h3,
h4,
h5,
a {
    font-family: var(--secondry-font);
}

.img-coverr {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ptb {
    padding: 6rem 0;
}

.sec-pt {
    padding-top: 6rem;
}

.sec-pb {
    padding-bottom: 6rem;
}

.sec-title {
    font-size: 3.5rem;
    color: var(--color-black);
    line-height: 1.6;
    letter-spacing: 0.05rem;
    margin-bottom: .8rem;
}


p {
    font-size: 1.6rem;
    line-height: 1.7;
    letter-spacing: 0.02rem;
}

.f-bold-500 {
    font-weight: 500 !important;
}

.f-bold-600 {
    font-weight: 600 !important;
}

.f-bold-700 {
    font-weight: 700 !important;
}

.f-bold-800 {
    font-weight: 800 !important;
}

.f-s-13 {
    font-size: 13px !important;
}

.f-s-14 {
    font-size: 14px !important;
}

.f-s-15 {
    font-size: 15px !important;
}

.f-s-16 {
    font-size: 16px !important;
}

.f-s-17 {
    font-size: 17px !important;
}


/* header-start */

.main.header-sec {
    position: relative;
    width: 100%;
    z-index: 1030;
    background-color: var(--color-white);
    transition: position 0.3s ease, top 0.3s ease, box-shadow 0.3s ease;
}

.main.header-sec.hdr-fix {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.4s ease forwards;
}

.main.header-sec.hdr-fix .top-bar {
    display: none !important;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.main.header-sec .container-fluid {
    padding: 0 6rem !important;
    max-width: 100%;
}

.main.header-sec .top-bar {
    background-color: var(--navy-blue);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main.header-sec .top-link {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.main.header-sec .top-link:hover {
    color: var(--primary-color);
}

.main.header-sec .search-icon {
    font-size: 1.4rem;
}

.main.header-sec .main-navbar {
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.main.header-sec .nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.main.header-sec .hamburger-btn {
    background: none;
    border: none;
    font-size: 27px;
    color: var(--light-black);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main.header-sec .nav-menu-left,
.main.header-sec .nav-menu-right {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.main.header-sec .nav-item-link {
    font-size: 1.8rem;
    color: var(--light-black);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.02rem;
    transition: color 0.3s ease;
}

.main.header-sec .nav-item-link:hover,
.main.header-sec .nav-item-link.active {
    color: var(--primary-color);
}

.main.header-sec .brand-logo {
    display: block;
}

.main.header-sec .logo-img {
    max-height: 8rem;
    width: auto;
    object-fit: contain;
}

.main.header-sec .btn-book {
    display: inline-block;
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 1rem 2.4rem;
    text-decoration: none;
    border-radius: 0.4rem;
    letter-spacing: 0.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.main.header-sec .btn-book:hover {
    background-color: var(--primary-color);
    color: var(--color-white);
}


.main.header-sec .side-drawer {
    position: fixed;
    top: 0;
    left: -32rem;
    width: 32rem;
    height: 100vh;
    background-color: #f5f5f5;
    z-index: 1050;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.1);
    transition: left 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.main.header-sec .side-drawer.open {
    left: 0;
}

.main.header-sec .drawer-header {
    padding: 2rem 2.4rem;
    display: flex;
    justify-content: flex-start;
}

.main.header-sec .close-drawer-btn {
    background: none;
    border: none;
    font-size: 2.9rem;
    color: #888888;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s ease;
}

.main.header-sec .close-drawer-btn:hover {
    color: #333333;
}


.main.header-sec .drawer-body {
    padding: 0 0 4rem 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.main.header-sec .drawer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main.header-sec .drawer-menu-list li {
    border-bottom: 1px solid #e5e5e5;
}

.main.header-sec .drawer-menu-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 2.4rem;
    font-size: 1.7rem;
    color: #444444;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}

.main.header-sec .drawer-menu-list li a:hover,
.main.header-sec .drawer-menu-list li a.active {
    background-color: #eaeaea;
    color: var(--primary-color);
}

.main.header-sec .drawer-menu-list li a.has-arrow::after {
    content: "\f105";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    font-size: 1.6rem;
    color: #ccc;
}


.main.header-sec .drawer-socials {
    padding: 3rem 2.4rem 0 2.4rem;
    display: flex;
    gap: 2rem;
}

.main.header-sec .drawer-socials a {
    font-size: 1.8rem;
    color: var(--light-black);
    text-decoration: none;
    transition: color 0.2s ease;
}

.main.header-sec .drawer-socials a:hover {
    color: var(--primary-color);
}

.main.header-sec .drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.main.header-sec .drawer-backdrop.show {
    opacity: 1;
    visibility: visible;
}


@media (max-width: 1199.98px) {
    .main.header-sec .main-navbar {
        padding: 1rem 0;
    }

    .main.header-sec .nav-wrapper {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        width: 100%;
    }

    .main.header-sec .hamburger-btn {
        grid-column: 2;
        justify-self: end;
        margin-right: 11rem;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .main.header-sec .brand-logo {
        grid-column: 1;
        justify-self: start;
    }

    .main.header-sec .nav-cta {
        grid-column: 3;
        justify-self: end;
    }

    .main.header-sec .logo-img {
        max-height: 6rem;
    }

    .main.header-sec .btn-book {
        padding: 0.8rem 1.8rem;
        font-size: 1.2rem;
    }
}

@media (max-width: 575px) {

    .main.header-sec .container-fluid {
        padding: 0 2rem !important;
    }

    .main.header-sec .logo-img {
        max-height: 5rem;
    }

    .main.header-sec .side-drawer {
        width: 27rem;
    }
}

/* header-end */

/* baner-start */

.main-bnr-sec {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    background-color: var(--deep-black);
    font-family: var(--primary-font);
}

.main-bnr-sec .owl-carousel,
.main-bnr-sec .owl-stage-outer,
.main-bnr-sec .owl-stage,
.main-bnr-sec .owl-item,
.main-bnr-sec .item {
    height: 100%;
}

.main-bnr-sec .banner-video,
.main-bnr-sec .banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.main-bnr-sec .item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    pointer-events: none;
    z-index: 2;
}

.main-bnr-sec .owl-nav button.owl-prev,
.main-bnr-sec .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none !important;
    color: var(--color-white) !important;
    font-size: 3.5rem !important;
    width: 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, color 0.3s ease !important;
    z-index: 10;
}

.main-bnr-sec .owl-nav button.owl-prev {
    left: 3rem;
}

.main-bnr-sec .owl-nav button.owl-next {
    right: 3rem;
}

.main-bnr-sec .owl-nav button:hover {
    color: var(--theme-color) !important;
    opacity: 0.8;
}

.main-bnr-sec .owl-dots {
    display: none !important;
}

/* baner-end */

/* about-start */
.hme-pg-abt {
    padding: 6rem 0;
    background-color: var(--white-bg);
    font-family: var(--primary-font);
}

.hme-pg-abt .about-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hme-pg-abt .img-zoom-box {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.hme-pg-abt .img-zoom-box img {
    width: 100%;
    height: 100%;
    min-height: 489px;
    object-fit: cover;
    display: block;
    transition: 3.2s ease;
}

.hme-pg-abt .img-zoom-box:hover img {
    transform: scale(1.1);
}

.hme-pg-abt .about-content-box {
    padding-left: 2rem;
}

.hme-pg-abt .about-desc p {
    color: var(--secondry-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hme-pg-abt .about-meta-info {
    margin: 2.5rem 0;
    border-top: 1px solid #e5e0d8;
    padding-top: 1.5rem;
}

.hme-pg-abt .meta-item {
    font-size: 1.7rem;
    color: var(--secondry-color);
    margin-bottom: 1rem;
}

.hme-pg-abt .meta-item span {
    color: var(--color-black);
    font-weight: 500;
}

.hme-pg-abt .link-item {
    font-size: 1.5rem;
    color: var(--secondry-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: color 0.3s ease;
}

.hme-pg-abt .link-item i {
    font-size: 1.1rem;
}

.hme-pg-abt .link-item:hover,
.hme-pg-abt .link-item.btn-location {
    color: var(--primary-color);
}

.hme-pg-abt .owl-theme .owl-dots {
    margin-top: 2rem !important;
    text-align: center;
}

.hme-pg-abt .owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
}

.hme-pg-abt .owl-theme .owl-dots .owl-dot span {
    width: 3.5rem;
    height: 0.3rem;
    margin: 0 0.5rem;
    background: #cccccc;
    display: block;
    border-radius: 0;
    transition: background 0.3s ease, width 0.3s ease;
}

.hme-pg-abt .owl-theme .owl-dots .owl-dot.active span,
.hme-pg-abt .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--color-black);
}

/* about-end */


/* accommodation-sec */

.acomditon-sec .acom-heading {
    color: #4a4a4a;
    margin-bottom: 2.5rem;
}

.acomditon-sec .acom-tabs .nav-link {
    font-family: var(--primary-font);
    font-size: 18px;
    color: #606161;
    border: none;
    background: transparent;
    padding: 0 0 0.5rem 0;
    margin-right: 3rem;
    font-weight: 400;
    position: relative;
    border-radius: 0;
}

.acomditon-sec .acom-tabs .nav-link.active {
    color: var(--primary-color);
    font-weight: 500;
    background: transparent;
}

.acomditon-sec .acom-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.2rem;
    background-color: var(--primary-color);
}

.acomditon-sec .view-all-link,
.experi-area .view-all-link,
.glry-area .view-all-link,
.faq-accro .faq-read-more .view-all-link {
    font-family: var(--primary-font);
    font-size: 1.8rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.1rem;
    transition: opacity 0.3s ease;
}

.acomditon-sec .view-all-link:hover,
.glry-area .view-all-link:hover,
.experi-area .view-all-link:hover,
.faq-accro .faq-read-more .view-all-link:hover {
    opacity: 0.8;
}

.acomditon-sec .acom-card {
    background-color: transparent;
}

.acomditon-sec .acom-img-box {
    width: 100%;
    height: 42rem;
    overflow: hidden;
    margin-bottom: 2rem;
}

.acomditon-sec .acom-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 4s ease;
}

.acomditon-sec .acom-img-box:hover img {
    transform: scale(1.3) !important;
}

.acomditon-sec .acom-desc {
    font-family: var(--primary-font);
    font-size: 1.7rem;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-wrap: balance;
}

.acomditon-sec .acom-desc strong {
    color: var(--color-black);
    font-weight: 700;
}

.acomditon-sec .acom-links {
    display: flex;
    gap: 2.5rem;
}

.acomditon-sec .acom-btn,
.experi-area .acom-btn {
    font-family: var(--primary-font);
    font-size: 1.7rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.08rem;
    display: inline-flex;
    align-items: center;
}

.acomditon-sec .acom-btn:hover,
.experi-area .acom-btn:hover {
    color: #b85f13;
}


.acomditon-sec .owl-nav {
    margin-top: 0;
}

.acomditon-sec .owl-nav button.owl-prev,
.acomditon-sec .owl-nav button.owl-next,
.experi-slider .owl-nav button.owl-prev,
.experi-slider .owl-nav button.owl-next,
.glry-area .owl-nav button.owl-prev,
.glry-area .owl-nav button.owl-next {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    width: 5rem;
    height: 5rem;
    background: var(--primary-color) !important;
    color: var(--color-white) !important;
    font-size: 2.5rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 50%;
    transition: color 0.3s ease;
}

.acomditon-sec .owl-nav button.owl-prev,
.experi-area .owl-nav button.owl-prev,
.glry-area .owl-nav button.owl-prev {
    left: -2rem;
}

.acomditon-sec .owl-nav button.owl-next,
.experi-area .owl-nav button.owl-next,
.glry-area .owl-nav button.owl-next {
    right: -2rem;
}

.acomditon-sec .owl-nav button.owl-prev:hover,
.acomditon-sec .owl-nav button.owl-next:hover,
.experi-slider .owl-nav button.owl-prev:hover,
.experi-slider .owl-nav button.owl-next:hover,
.glry-area .owl-nav button.owl-prev:hover,
.glry-area .owl-nav button.owl-next:hover {
    color: var(--color-white) !important;
    background: var(--light-yellow) !important;
    transition: 0.6s ease;
}

/* accommodation-sec */

/* experiences */

.experi-area .container-fluid,
.acomditon-sec .container-fluid,
.glry-area .container-fluid {
    padding: 0 5rem !important;
}


.experi-area .img-box {
    overflow: hidden;
}

.experi-area .img-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: 5s ease;
}

.experi-area .img-box:hover img {
    transform: scale(1.3) !important;
}

.experi-area .slide-title {
    font-size: 30px;
    color: #555555;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.experi-area .slide-desc {
    /* font-size: 1.3rem; */
    color: #666666;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.experi-area .explore-btn {
    color: #b8782a;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
}

.experi-area .explore-btn:hover {
    color: #965f1f;
}

.experi-area .experi-slider {
    position: relative;
}


.experi-area .owl-dots,
.glry-area .owl-dots {
    display: none !important;
}

/* experiences */

/* gallery */

.glry-area .glry-card .img-box {
    width: 100%;
    overflow: hidden;
}

.glry-area .glry-card .img-box img {
    width: 100%;
    height: 40rem;
    object-fit: cover;
    display: block;
}

.glry-area .glry-caption {
    font-size: 1.7rem;
    color: #666666;
    margin-bottom: 0;
    font-weight: 400;
}

.glry-area .glry-slider {
    position: relative;
}

/* gallery */

/* faq-sec */

.faq-accro .accordion-item {
    background-color: transparent;
    border: none;
    border-radius: 0;
}

.faq-accro .accordion-button {
    background-color: transparent;
    box-shadow: none;
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    border-bottom: 1px solid #7373738c;
    border-radius: 0 !important;
}

.faq-accro .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: inherit;
    box-shadow: none;
}

.faq-accro .accordion-button::after {
    display: none;
}

.faq-accro .faq-title {
    font-family: var(--secondry-font);
    font-size: 29px;
    font-weight: 400;
    color: #555555;
    letter-spacing: 0.3px;
}

.faq-accro .toggle-icon {
    font-size: 18px;
    color: #6f7b7b;
    transition: transform 0.3s ease;
}

.faq-accro .accordion-button:not(.collapsed) .toggle-icon {
    transform: rotate(180deg);
}

.faq-accro .accordion-body {
    padding: 25px 0 0 0;
}

.faq-accro .faq-row {
    display: flex;
    margin-bottom: 8px;
}

.faq-accro .faq-label {
    width: 32px;
    flex-shrink: 0;
    font-size: 17px;
    font-weight: 600;
    color: var(--color-black);
    line-height: 1.6;
}

.faq-accro .faq-content {
    flex-grow: 1;
}

.faq-accro .faq-question {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 0;
    line-height: 1.6;
    letter-spacing: 0.02rem;
}

.faq-accro .faq-answer {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--secondry-color);
    margin-bottom: 18px;
    line-height: 1.7;
    letter-spacing: 0.02rem;
}

.faq-accro .faq-answer a {
    color: var(--primary-color);
    text-decoration: none;
}

.faq-accro .faq-answer a:hover {
    text-decoration: underline;
}

.faq-accro .faq-read-more {
    margin-top: 15px;
}

/* faq-sec */

/* footer-sec */

.ftr-sec {
    background-color: #232055;
    padding: 50px 0 30px 0;
    font-family: var(--primary-font);
}

.ftr-sec .ftr-heading {
    color: var(--light-yellow);
    font-family: var(--secondry-font);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: .08rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.ftr-sec .ftr-text, .ftr-sec .ftr-label {
    font-size: 1.7rem;
    color: #fbffffbd;
    line-height: 1.7;
    margin-bottom: 2px;
    letter-spacing: 0.02rem;
}

.ftr-sec .ftr-val {
  font-size: 1.7rem;
  color: var(--color-white);
  line-height: 1.6;
  margin-bottom: 8px;
}

.ftr-sec .ftr-val a {
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1.7rem;
}

.ftr-sec .ftr-val a:hover {
  color: var(--primary-color);
}


.ftr-sec .ftr-social {
  display: flex;
  gap: 10px;
  align-items: center;
}

.ftr-sec .social-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--primary-color);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.ftr-sec .social-icon:hover {
  background-color: var(--bs-warning-text-emphasis);
  color: var(--color-white);
  transform: translateY(-2px);
}


.ftr-sec .ftr-copyright {
  font-size: 1.7rem;
  color: var(--light-black);
  margin-top: 40px;
  margin-bottom: 0;
  padding-top: 20px;
  border-top: 1px solid #e2e8e8;
}

.ftr-sec .ftr-copyright strong a {
    color: var(--primary-color);
    text-decoration: none;
}

.ftr-sec .ftr-copyright strong a:hover {
  text-decoration: underline;
}

/* footer-sec */