@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Manrope:wght@300;400;500;600&display=swap');

:root {
    --dark: #17282c;
    --dark-2: #22383c;
    --paper: #f7f5f0;
    --soft: #e9eeeb;
    --white: #fff;
    --accent: #78918b;
    --text: #556468;
    --line: #d6dcda;
    --rooms-bg: #e3e9e6;
    --footer-bg: #0e1c20;
    --footer-line: #293b40;
    --title-font: "Fraunces", serif;
    --body-font: "Manrope", sans-serif;
}

/* =========================
   BASE
========================= */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--text);
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.72;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.section-label {
    margin-bottom: 17px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.section-label-light {
    color: #a1b3af;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--dark);
    color: var(--dark);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.text-link-light {
    border-color: #859894;
    color: var(--white);
}

/* Shared typography */

.hero-content h1,
.about-content h2,
.rooms-heading h2,
.room-info h3,
.facilities-heading h2,
.facility h3,
.banner-content h2,
.gallery-heading h2,
.testimonials-heading h2,
.testimonial-item > p,
.footer-head-text h2,
.inner-hero-content h1,
.room-detail-content h2,
.contact-info h2 {
    font-family: var(--title-font);
}

.rooms-heading h2,
.room-info h3,
.facilities-heading h2,
.facility h3,
.banner-content h2,
.gallery-heading h2,
.testimonials-heading h2,
.testimonial-item > p,
.footer-head-text h2,
.inner-hero-content h1,
.room-detail-content h2,
.contact-info h2 {
    font-weight: 400;
}

/* Shared action controls */

.nav-book,
.hero-book-btn,
.room-book,
.rooms-view-all a,
.banner-book-btn,
.gallery-view-all a,
.footer-book-btn,
.room-detail-book {
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
}

.nav-book,
.hero-book-btn,
.room-book,
.rooms-view-all a,
.banner-book-btn,
.gallery-view-all a,
.footer-book-btn,
.room-detail-book {
    justify-content: center;
}

.nav-book i,
.hero-book-btn i,
.room-book i,
.rooms-view-all a i,
.banner-book-btn i,
.gallery-view-all a i,
.footer-book-btn i,
.room-detail-book i {
    font-size: 11px;
    transition: transform .25s ease;
}

.hero-book-btn:hover i,
.room-book:hover i,
.rooms-view-all a:hover i,
.banner-book-btn:hover i,
.gallery-view-all a:hover i,
.footer-book-btn:hover i,
.room-detail-book:hover i {
    transform: translateX(4px);
}

/* Shared image behaviour */

.hero-image,
.about-photo img,
.room-image img,
.gallery-image img,
.inner-hero-image,
.room-detail-image img,
.gallery-page-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-image img,
.gallery-image img {
    transition: transform .4s ease;
}

.gallery-image,
.room-detail-image,
.gallery-page-item {
    overflow: hidden;
    border-radius: 16px;
}

/* ==================================================
   NAVBAR
================================================== */

.site-navbar {
    position: relative;
    z-index: 20;
    min-height: 88px;
    padding: 0;
    background: var(--dark-2);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.navbar-wrap {
    min-height: 88px;
    padding: 0 50px;
}

/* LOGO */

.navbar-brand {
    margin: 0;
    padding: 0;
}

.navbar-brand img {
    width: 150px;
    height: 70px;
    object-fit: contain;
}

/* NAVIGATION */
.navbar-nav {
    align-items: center;
    gap: 31px;
}

.navbar .nav-link {
    position: relative;
    padding: 31px 0 !important;
    color: rgba(255, 255, 255, .78);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .15px;
    transition: color .25s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active,
.navbar .nav-link.show {
    color: var(--white);
}

/* NAV LINE */

.navbar .nav-link:not(.dropdown-toggle)::after {
    content: "";
    position: absolute;
    bottom: 24px;
    left: 50%;
    width: 18px;
    height: 1px;
    background: var(--white);
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}

.navbar .nav-link:not(.dropdown-toggle):hover::after,
.navbar .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* LANGUAGE */
.language-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.language-toggle img,
.language-menu img {
    width: 21px;
    height: 14px;
    object-fit: cover;
}

/* DROPDOWN */

.language-menu {
    min-width: 155px;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 0;
    background: var(--dark-2);
    box-shadow: 0 14px 32px rgba(0, 0, 0, .15);
}

.language-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 10px;
    color: rgba(255, 255, 255, .75);
    font-size: 13px;
    transition: .25s ease;
}

.language-menu .dropdown-item:hover {
    background: rgba(255, 255, 255, .07);
    color: var(--white);
}

/* BOOK BUTTON */
.nav-book {
    min-height: 42px;
    padding: 0 16px;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 3px;
    background: transparent;
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .65px;
    transition:
        background-color .25s ease,
        color .25s ease,
        border-color .25s ease;
}

.nav-book i {
    font-size: 10px;
    transition: transform .25s ease;
}

.nav-book:hover {
    background: var(--white);
    border-color: #fff;
    color: var(--dark-2);
}

.nav-book:hover i {
    transform: translateX(3px);
}

/* =========================
   HERO
========================= */

.hero-section {
    position: relative;
    width: 100%;
}

.hero-carousel {
    position: relative;
    height: 90vh;
    min-height: 620px;
    max-height: 780px;
    overflow: hidden;
    background: var(--dark);
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            180deg,
            rgba(22, 38, 42, .18) 0%,
            rgba(22, 38, 42, .24) 50%,
            rgba(15, 30, 34, .38) 100%
        );
    pointer-events: none;
}

.hero-image {
    filter: saturate(.78) brightness(.88);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: calc(100% - 220px);
    max-width: 850px;
    text-align: center;
    transform: translate(-50%, -50%);
}

.hero-label {
    margin: 0 0 17px;
    color: rgba(255, 255, 255, .88);
    font-family: var(--title-font);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.8px;
    text-transform: uppercase;
}

.hero-content h1 {
    margin: 0 0 22px;
    color: var(--white);
    font-optical-sizing: auto;
    font-size: 68px;
    font-weight: 480;
    line-height: 1.08;
    letter-spacing: -.7px;
}

.hero-tagline {
    max-width: 520px;
    margin: 0 auto 34px;
    color: rgba(255, 255, 255, .9);
    font-size: 17px;
    line-height: 1.65;
}

.hero-book-btn {
    min-height: 51px;
    padding: 0 27px;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, .95);
    border-radius: 3px;
    background: var(--white);
    color: var(--dark);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .9px;
    transition:
        background-color .25s ease,
        color .25s ease,
        border-color .25s ease;
}

.hero-book-btn:hover {
    border-color: var(--white);
    background: transparent;
    color: var(--white);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    display: flex;
    width: 52px;
    height: 52px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 50%;
    background: rgba(12, 28, 31, .18);
    color: rgba(255, 255, 255, .9);
    font-size: 15px;
    transform: translateY(-50%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition:
        background-color .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.hero-arrow-prev {
    left: 35px;
}

.hero-arrow-next {
    right: 35px;
}

.hero-arrow:hover {
    border-color: var(--white);
    background: var(--white);
    color: var(--dark);
    transform: translateY(-50%) scale(1.05);
}

.hero-arrow i {
    transition: transform .25s ease;
}

.hero-arrow-prev:hover i {
    transform: translateX(-2px);
}

.hero-arrow-next:hover i {
    transform: translateX(2px);
}

/* =========================
   ABOUT
========================= */

.about-section {
    position: relative;
    padding: 0;
    overflow: hidden;
    background: var(--paper);
}

.about-wrap {
    position: relative;
    max-width: 900px;
    min-height: 760px;
    margin: 0 auto;
}

.about-bg {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    min-height: 760px;
    padding: 110px 85px;
    align-items: center;
    background: var(--soft);
    border-radius: 0;
}

.about-content {
    position: relative;
    z-index: 3;
    max-width: 570px;
    margin: 0 auto;
    text-align: center;
}

.about-content .section-label {
    margin-bottom: 13px;
}

.about-hotel-name {
    display: block;
    margin-bottom: 18px;
    color: var(--dark);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.about-content h2 {
    margin: 0 0 30px;
    color: var(--dark);
    font-optical-sizing: auto;
    font-size: 43px;
    font-weight: 480;
    line-height: 1.18;
    letter-spacing: -.4px;
}

.about-content p {
    margin: 0 0 18px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.8;
}

.about-content .about-lead {
    color: var(--dark-2);
    font-size: 15px;
    line-height: 1.8;
}

.about-review {
    display: flex;
    max-width: 440px;
    margin: 29px auto 0;
    padding-top: 21px;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    border-top: 1px solid var(--line);
}

.about-review i {
    flex-shrink: 0;
    margin-top: 5px;
    color: var(--accent);
    font-size: 11px;
}

.about-review span {
    color: var(--dark);
    font-size: 12px;
    line-height: 1.65;
    text-align: left;
}

.about-photo {
    position: absolute;
    z-index: 4;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 24px 50px rgba(23, 40, 44, .14);
}

.about-photo-left {
    top: 75px;
    left: -250px;
    width: 360px;
    height: 410px;
}

.about-photo-right {
    right: -250px;
    bottom: 75px;
    width: 360px;
    height: 400px;
}

.about-photo:hover img {
    transform: scale(1.025);
}

/* =========================
   ROOMS
========================= */

.rooms-section,
.gallery-section {
    padding: 110px 0;
}

.rooms-section {
    background-color: var(--rooms-bg);
}

.rooms-heading {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.rooms-heading .section-label,
.gallery-heading .section-label {
    margin-bottom: 12px;
}

.rooms-heading h2,
.gallery-heading h2 {
    margin: 0;
    color: var(--dark);
    font-size: 48px;
    line-height: 1.2;
}

.room-item {
    width: 100%;
    background: transparent;
}

.room-image {
    display: block;
    width: 100%;
    height: 390px;
    overflow: hidden;
    border-radius: 18px;
}

.room-item:hover .room-image img {
    transform: scale(1.02);
}

.room-info {
    padding-top: 20px;
}

.room-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 10px;
    color: #617872;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .4px;
    text-transform: uppercase;
}

.room-info h3 {
    margin: 0 0 14px;
    color: var(--dark);
    font-size: 27px;
    line-height: 1.3;
}

.room-beds {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 20px;
    color: var(--text);
    font-size: 15px;
    line-height: 1.5;
}

.room-beds i {
    flex-shrink: 0;
    color: var(--dark);
    font-size: 14px;
}

.room-book {
    min-height: 46px;
    padding: 0 22px;
    gap: 11px;
    border: 1px solid var(--dark);
    border-radius: 4px;
    background: var(--dark);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .5px;
    transition: .25s ease;
}

.room-book:hover {
    background: transparent;
    color: var(--dark);
}

/* Shared light carousel navigation */

.rooms-carousel .owl-nav,
.gallery-carousel .owl-nav {
    text-align: center;
}

.rooms-carousel .owl-nav {
    margin-top: 35px;
}

.gallery-carousel .owl-nav {
    margin-top: 30px;
}

.rooms-carousel .owl-nav button.owl-prev,
.rooms-carousel .owl-nav button.owl-next,
.gallery-carousel .owl-nav button.owl-prev,
.gallery-carousel .owl-nav button.owl-next {
    width: 44px;
    height: 44px;
    margin: 0 5px;
    border-radius: 50% !important;
    background: transparent !important;
    color: var(--dark) !important;
    transition: .25s ease;
}

.rooms-carousel .owl-nav button.owl-prev,
.rooms-carousel .owl-nav button.owl-next {
    border: 1px solid rgba(23, 40, 44, .45) !important;
}

.gallery-carousel .owl-nav button.owl-prev,
.gallery-carousel .owl-nav button.owl-next {
    border: 1px solid var(--dark) !important;
}

.rooms-carousel .owl-nav button.owl-prev:hover,
.rooms-carousel .owl-nav button.owl-next:hover,
.gallery-carousel .owl-nav button.owl-prev:hover,
.gallery-carousel .owl-nav button.owl-next:hover {
    background: var(--dark) !important;
    color: var(--white) !important;
}

.rooms-carousel .owl-nav button.owl-prev:hover,
.rooms-carousel .owl-nav button.owl-next:hover {
    border-color: var(--dark) !important;
}

.rooms-view-all {
    margin-top: 40px;
    text-align: center;
}

.gallery-view-all {
    margin-top: 25px;
}

.rooms-view-all a,
.gallery-view-all a {
    min-height: 48px;
    border: 1px solid var(--dark);
    border-radius: 4px;
    color: var(--dark);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .5px;
    transition: .25s ease;
}

.rooms-view-all a {
    padding: 0 15px;
    gap: 15px;
    background: transparent;
}

.gallery-view-all a {
    padding: 0 24px;
    gap: 11px;
}

.rooms-view-all a:hover,
.gallery-view-all a:hover {
    background: var(--dark);
    color: var(--white);
}

/* =========================
   FACILITIES
========================= */

.facilities-section {
    padding: 115px 0;
}

.facilities-heading {
    margin-bottom: 48px;
}

.facilities-heading h2 {
    margin: 0;
    color: var(--dark);
    font-size: 47px;
    line-height: 1.15;
}

.section-intro {
    max-width: 440px;
    margin: 0 0 6px auto;
}

.facilities-list {
    margin: 0 -12px -24px;
    border: 0;
}

.facilities-list > div {
    padding: 0 12px 24px;
    border: 0;
}

.facility {
    min-height: 230px;
    height: 100%;
    padding: 27px;
    border: 1px solid var(--line);
    transition: background-color .3s ease;
}

.facility > span {
    color: var(--accent);
    font-size: 12px;
    transition: color .3s ease;
}

.facility i {
    display: block;
    margin: 31px 0 20px;
    color: var(--dark);
    font-size: 22px;
    transition: color .3s ease;
}

.facility h3 {
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 24px;
    transition: color .3s ease;
}

.facility p {
    max-width: 260px;
    margin: 0;
    color: var(--text);
    font-size: 14px;
    line-height: 1.65;
    transition: color .3s ease;
}

.facility:hover {
    background: var(--dark-2);
}

.facility:hover > span {
    color: rgba(255, 255, 255, .6);
}

.facility:hover i,
.facility:hover h3 {
    color: var(--white);
}

.facility:hover p {
    color: rgba(255, 255, 255, .75);
}

/* =========================
   BANNER
========================= */

.stay-banner {
    position: relative;
    display: flex;
    min-height: 470px;
    align-items: center;
    overflow: hidden;
    background: url("image/image (58).jpg") center/cover no-repeat;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 27, 31, .52);
}

.banner-content {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.banner-content .section-label {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, .75);
}

.banner-content h2 {
    margin: 0;
    color: var(--white);
    font-size: 50px;
    line-height: 1.2;
}

.banner-book-btn {
    min-height: 48px;
    margin-top: 30px;
    padding: 0 24px;
    gap: 11px;
    border: 1px solid var(--white);
    border-radius: 4px;
    background: transparent;
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .5px;
    transition: .25s ease;
}

.banner-book-btn:hover {
    background: var(--white);
    color: var(--dark);
}

/* =========================
   GALLERY
========================= */

.gallery-section {
    overflow: hidden;
    background: var(--paper);
}

.gallery-heading {
    margin-bottom: 45px;
}

.gallery-carousel {
    padding: 0 25px;
}

.gallery-image {
    height: 370px;
}

.gallery-image:hover img {
    transform: scale(1.03);
}

/* =========================
   TESTIMONIALS
========================= */

.testimonials-section {
    padding: 105px 0;
    background: var(--dark-2);
}

.testimonials-heading {
    margin-bottom: 45px;
    padding-right: 35px;
}

.testimonials-heading .section-label {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .55);
}

.testimonials-heading h2 {
    margin: 0;
    color: var(--white);
    font-size: 42px;
    line-height: 1.2;
}

.testimonial-item {
    position: relative;
    padding-left: 65px;
}

.testimonial-quote {
    position: absolute;
    top: 4px;
    left: 0;
    color: rgba(255, 255, 255, .28);
    font-size: 30px;
    transform: translateY(20px);
}

.testimonial-item > p {
    max-width: 760px;
    margin: 0 0 35px;
    color: rgba(255, 255, 255, .9);
    font-size: 16px;
    line-height: 1.65;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 18px;
}

.author-line {
    width: 38px;
    height: 1px;
    background: rgba(255, 255, 255, .45);
}

.testimonial-author h3 {
    margin: 0 0 3px;
    color: var(--white);
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 500;
}

.testimonial-author div > span {
    color: rgba(255, 255, 255, .55);
    font-size: 13px;
}

.testimonials-carousel .owl-nav {
    margin-top: 32px;
    padding-left: 65px;
    text-align: center;
}

.testimonials-carousel .owl-nav button.owl-prev,
.testimonials-carousel .owl-nav button.owl-next {
    width: 44px;
    height: 44px;
    margin: 0 5px;
    border: 1px solid rgba(255, 255, 255, .45) !important;
    border-radius: 50% !important;
    background: transparent !important;
    color: var(--white) !important;
    transition: .25s ease;
}

.testimonials-carousel .owl-nav button:hover,
.testimonials-carousel .owl-nav button.owl-prev:hover,
.testimonials-carousel .owl-nav button.owl-next:hover {
    background: var(--white) !important;
    color: var(--dark-2) !important;
}

/* =========================
   FOOTER
========================= */

.site-footer {
    padding-top: 85px;
    background: var(--footer-bg);
    color: #8f9ca0;
}

.footer-head {
    display: flex;
    padding-bottom: 50px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-bottom: 1px solid var(--footer-line);
}

.footer-content {
    padding: 50px 0;
}

.footer-content > div:first-child p {
    max-width: 400px;
}

.footer-label {
    display: block;
    margin-bottom: 17px;
    color: #6f8588;
    font-size: 11px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.footer-content li {
    margin-bottom: 7px;
}

.footer-content a:hover {
    color: var(--white);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact p {
    margin: 0;
}

.footer-about p,
.footer-contact a,
.footer-contact p,
.footer-links a {
    font-size: 14px;
    line-height: 1.65;
}

.footer-map {
    max-width: 320px;
    margin-left: auto;
}

.footer-map iframe {
    width: 100%;
    height: 190px;
    border-radius: 10px;
}

.footer-bottom {
    display: flex;
    padding: 18px 0;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border-top: 1px solid var(--footer-line);
    color: rgba(255, 255, 255, .75);
    font-size: 13px;
}

.footer-bottom a {
    color: var(--white);
}

.footer-bottom-left,
.footer-bottom-center,
.footer-bottom-right {
    display: flex;
    align-items: center;
}

.footer-bottom-center {
    gap: 12px;
}

.footer-bottom-center img {
    width: 105px;
    height: 32px;
    object-fit: contain;
}

.footer-bottom-right {
    gap: 5px;
}

.footer-bottom-right a:hover {
    text-decoration: underline;
}

.footer-head-text p {
    margin: 0 0 8px;
    color: #6f8588;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-head-text h2 {
    margin: 0;
    color: var(--white);
    font-size: 32px;
}

.footer-book-btn {
    min-height: 48px;
    padding: 0 24px;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 4px;
    background: transparent;
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .5px;
    transition: .25s ease;
}

.footer-book-btn:hover {
    background: var(--white);
    color: var(--dark-2);
}

/* =========================
   INNER HERO
========================= */

.inner-hero {
    position: relative;
    height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.inner-hero-image {
    position: absolute;
    inset: 0;
}

.inner-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(18, 36, 40, .48);
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.inner-hero-content h1 {
    margin: 0;
    color: var(--white);
    font-size: 58px;
    line-height: 1.1;
}

/* =========================
   ROOMS DETAILS
========================= */

.rooms-details-section,
.contact-section {
    padding: 120px 0;
    background: var(--paper);
}

.room-detail {
    margin-bottom: 130px;
}

.room-detail:last-child {
    margin-bottom: 0;
}

/* =========================
   ROOM IMAGE
========================= */

.room-detail-image {
    position: relative;
    height: 520px;
}

.room-detail-image img {
    transition: transform .6s ease;
}

.room-detail:hover .room-detail-image img {
    transform: scale(1.025);
}

/* =========================
   ROOM CONTENT
========================= */

.room-detail-content {
    max-width: 520px;
    margin-left: 75px;
}

.room-detail-content-left {
    margin-right: 75px;
    margin-left: 0;
}

.room-detail-content .section-label {
    margin-bottom: 14px;
}

.room-detail-content h2 {
    max-width: 480px;
    margin: 0 0 24px;
    color: var(--dark);
    font-size: 46px;
    line-height: 1.12;
    letter-spacing: -.4px;
}

.room-detail-description {
    max-width: 500px;
    margin: 0 0 32px;
    color: var(--text);
    font-size: 15px;
    line-height: 1.8;
}

/* =========================
   FACILITIES
========================= */

.room-facilities {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 34px;
    padding: 8px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.room-facilities span {
    display: flex;
    width: 50%;
    min-height: 48px;
    align-items: center;
    gap: 11px;
    color: var(--dark-2);
    font-size: 13px;
    font-weight: 500;
}

.room-facilities i {
    width: 18px;
    color: var(--accent);
    font-size: 13px;
    text-align: center;
}

/* =========================
   BOOK NOW
========================= */

.room-detail-book {
    min-height: 46px;
    padding: 0 19px;
    gap: 12px;
    border: 1px solid var(--dark-2);
    border-radius: 3px;
    background: var(--dark-2);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .7px;
    transition:
        background-color .25s ease,
        color .25s ease,
        border-color .25s ease;
}

.room-detail-book i {
    font-size: 10px;
}

.room-detail-book:hover {
    background: transparent;
    color: var(--dark-2);
}

/* =========================
   GALLERY PAGE
========================= */

.gallery-page-section {
    padding: 110px 0;
    background: var(--paper);
}

.gallery-page-row {
    margin-bottom: 24px;
}

.gallery-page-row:last-child {
    margin-bottom: 0;
}

.gallery-page-row > div {
    padding: 0 12px;
}

/* IMAGE */

.gallery-page-item {
    position: relative;
    display: block;
    width: 100%;
    height: 360px;
}

.gallery-page-item img {
    transition:
        transform .5s ease,
        filter .5s ease;
}

.gallery-page-item:hover img {
    transform: scale(1.035);
    filter: brightness(.88);
}

/* =========================
   CONTACT
========================= */


.contact-info {
    position: relative;
    height: 100%;
    padding: 55px 50px;
    background: var(--rooms-bg);
    border-radius: 16px 0 0 16px;
    overflow: hidden;
}

/* DARK DETAIL */

.contact-info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--dark-2);
}

/* SMALL DECORATIVE DETAIL */

.contact-info::after {
    content: "";
    position: absolute;
    top: 36px;
    right: 38px;
    width: 46px;
    height: 46px;
    border-top: 1px solid rgba(34, 56, 60, .22);
    border-right: 1px solid rgba(34, 56, 60, .22);
}

/* =========================
   HEADING
========================= */

.contact-info-head {
    margin-bottom: 48px;
}

.contact-info .section-label {
    margin-bottom: 14px;
    color: var(--accent);
}

.contact-info h2 {
    max-width: 390px;
    margin: 0 0 18px;
    color: var(--dark);
    font-size: 45px;
    line-height: 1.12;
}

.contact-info-head > p:last-child {
    max-width: 390px;
    margin: 0;
    color: var(--text);
    font-size: 14px;
    line-height: 1.75;
}

/* =========================
   CONTACT DETAILS
========================= */

.contact-details {
    border-top: 1px solid rgba(34, 56, 60, .15);
}

.contact-item {
    display: flex;
    padding: 21px 0;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid rgba(34, 56, 60, .15);
}

/* ICON */

.contact-icon {
    display: flex;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(34, 56, 60, .25);
    border-radius: 50%;
    color: var(--dark-2);
    font-size: 13px;
    transition: .25s ease;
}

.contact-item:hover .contact-icon {
    background: var(--dark-2);
    border-color: var(--dark-2);
    color: var(--white);
}

/* LABEL */

.contact-item span {
    display: block;
    margin-bottom: 4px;
    color: var(--accent);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

/* VALUE */

.contact-item a,
.contact-item p {
    margin: 0;
    color: var(--dark-2);
    font-size: 14px;
    line-height: 1.6;
    transition: color .25s ease;
}

.contact-item a:hover {
    color: var(--accent);
}

/* =========================
   MAP
========================= */

.contact-map {
    width: 100%;
    height: 100%;
    min-height: 560px;
    overflow: hidden;
    border-radius: 0 16px 16px 0;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991.98px) {

    /* NAVBAR */
    .navbar-wrap {
        min-height: 76px;
        padding: 0 20px;
    }

    .navbar-brand img {
        width: 125px;
        height: 60px;
    }

    .navbar-toggler {
        padding: 8px;
        border: 0;
        color: var(--white);
        font-size: 22px;
        box-shadow: none !important;
    }

    .navbar-collapse {
        width: 100%;
        padding: 18px 0 24px;
        border-top: 1px solid rgba(255, 255, 255, .1);
    }

    .navbar-nav {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .navbar .nav-item {
        width: 100%;
    }

    .navbar .nav-link {
        display: block;
        width: 100%;
        padding: 10px 0 !important;
        font-size: 14px;
    }

    .navbar .nav-link:not(.dropdown-toggle)::after {
        display: none;
    }

    .language-menu {
        position: static !important;
        width: 100%;
        margin: 4px 0 8px;
        box-shadow: none;
    }

    .nav-book {
        margin-top: 14px;
    }


    /* HERO */
    .hero-carousel {
        height: 72vh;
        min-height: 560px;
    }

    .hero-content {
        width: calc(100% - 60px);
    }

    .hero-content h1 {
        font-size: clamp(44px, 9vw, 58px);
    }

    .hero-tagline {
        font-size: 15px;
    }

    .hero-arrow {
        width: 42px;
        height: 42px;
    }

    .hero-arrow-prev {
        left: 18px;
    }

    .hero-arrow-next {
        right: 18px;
    }


    /* ABOUT */
    .about-wrap,
    .about-bg {
        min-height: auto;
    }

    .about-bg {
        padding: 80px 30px;
    }

    .about-photo {
        display: none;
    }

    .about-content h2 {
        font-size: clamp(34px, 7vw, 42px);
    }


    /* SECTIONS */
    .rooms-section,
    .gallery-section,
    .facilities-section,
    .testimonials-section,
    .rooms-details-section,
    .gallery-page-section,
    .contact-section {
        padding: 80px 0;
    }

    .rooms-heading h2,
    .gallery-heading h2,
    .facilities-heading h2,
    .banner-content h2 {
        font-size: clamp(34px, 7vw, 44px);
    }


    /* ROOMS */
    .room-image {
        height: 350px;
    }

    .room-detail {
        margin-bottom: 80px;
    }

    .room-detail-image {
        height: 430px;
        margin-bottom: 35px;
    }

    .room-detail-content,
    .room-detail-content-left {
        max-width: 100%;
        margin: 0;
    }

    .room-detail-content h2 {
        font-size: clamp(34px, 7vw, 42px);
    }


    /* FACILITIES */
    .section-intro {
        margin: 20px 0 0;
    }


    /* BANNER */
    .stay-banner {
        min-height: 400px;
    }


    /* TESTIMONIALS */
    .testimonials-heading {
        padding-right: 0;
    }

    .testimonial-item {
        padding-left: 50px;
    }

    .testimonials-carousel .owl-nav {
        padding-left: 0;
    }


    /* INNER HERO */
    .inner-hero {
        height: 350px;
    }

    .inner-hero-content h1 {
        font-size: clamp(42px, 9vw, 54px);
    }


    /* GALLERY PAGE */
    .gallery-page-row {
        margin-bottom: 0;
    }

    .gallery-page-row > div {
        margin-bottom: 24px;
    }

    .gallery-page-item {
        height: 340px;
    }


    /* CONTACT */
    .contact-info {
        padding: 45px 30px;
        border-radius: 16px 16px 0 0;
    }

    .contact-info h2 {
        font-size: clamp(34px, 7vw, 42px);
    }

    .contact-map {
        min-height: 420px;
        border-radius: 0 0 16px 16px;
    }


    /* FOOTER */
    .footer-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-content > div {
        margin-bottom: 35px;
    }

    .footer-map {
        max-width: 100%;
        margin: 0;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}


.fadeindown {
    opacity: 0;
    transform: translateY(-100px);
    transition: all 1.2s ease-out;
}

.fadeinup {
    opacity: 0;
    transform: translateY(100px);
    transition: all 1.2s ease-out;
}

.active-down,
.active-up {
    opacity: 1;
    transform: translateY(0);
}