 html {
     scroll-behavior: smooth;
}
 body {
     margin: 0;
     font-family: 'DM Sans', sans-serif;
     color: var(--dark);
     overflow-x: hidden;
}
 :root {
     --dark: #20211e;
     --dark-soft: #292a26;
     --cream: #f5f1e8;
     --white: #ffffff;
     --gold: #b79b68;
     --gold-light: #d0b37b;
     --border: rgba(255, 255, 255, 0.25);
}
/* Animation */
 .fadeinup {
     opacity: 0;
     transform: translateY(70px);
     transition: opacity 1s ease, transform 1s cubic-bezier(.22, 1, .36, 1);
}
 .fadeindown {
     opacity: 0;
     transform: translateY(-70px);
     transition: opacity 1s ease, transform 1s cubic-bezier(.22, 1, .36, 1);
}
 .fadeinleft {
     opacity: 0;
     transform: translateX(-90px);
     transition: opacity 1s ease, transform 1s cubic-bezier(.22, 1, .36, 1);
}
 .fadeinright {
     opacity: 0;
     transform: translateX(90px);
     transition: opacity 1s ease, transform 1s cubic-bezier(.22, 1, .36, 1);
}
 .fade-in {
     opacity: 0;
     transition: opacity 1.2s ease;
}
 .fade-scale {
     opacity: 0;
     transform: scale(.94);
     transition: opacity 1s ease, transform 1.2s cubic-bezier(.22, 1, .36, 1);
}
 .blur-reveal {
     opacity: 0;
     filter: blur(8px);
     transform: translateY(25px);
     transition: opacity 1s ease, filter 1s ease, transform 1s cubic-bezier(.22, 1, .36, 1);
}
 .fadeinup.active, .fadeindown.active, .fadeinleft.active, .fadeinright.active, .fade-in.active, .fade-scale.active, .blur-reveal.active {
     opacity: 1;
     transform: translate(0) scale(1);
     filter: blur(0);
}
 .delay-100 {
     transition-delay: .1s;
}
 .delay-200 {
     transition-delay: .2s;
}
 .delay-300 {
     transition-delay: .3s;
}
 .delay-400 {
     transition-delay: .4s;
}
 .delay-500 {
     transition-delay: .5s;
}
 .delay-600 {
     transition-delay: .6s;
}
 .delay-700 {
     transition-delay: .7s;
}
/* Navbar */
 .navbar {
     padding: 24px 0;
     border-bottom: 1px solid rgba(255, 255, 255, .18);
     background: transparent;
     transition: padding .4s ease, background .4s ease, box-shadow .4s ease;
}
 .navbar.scrolled {
     padding: 15px 0;
     background: rgba(32, 33, 30, .96);
     backdrop-filter: blur(12px);
     -webkit-backdrop-filter: blur(12px);
     box-shadow: 0 10px 35px rgba(0, 0, 0, .15);
}
 .logo {
     width: 200px;
}
 .nav-link {
     position: relative;
     color: rgba(255, 255, 255, 0.9);
     text-decoration: none;
     font-size: 14px;
     font-weight: 500;
     transition: 0.3s ease;
}
 .navbar-nav>.nav-item:not(.dropdown) .nav-link::after {
     content: "";
     position: absolute;
     left: 0;
     bottom: -8px;
     width: 0;
     height: 1px;
     background: var(--white);
     transition: 0.3s ease;
}
 .navbar-nav>.nav-item:not(.dropdown) .nav-link:hover, .navbar-nav>.nav-item:not(.dropdown) .nav-link.active {
     color: var(--white) !important;
}
 .navbar-nav>.nav-item:not(.dropdown) .nav-link:hover::after, .navbar-nav>.nav-item:not(.dropdown) .nav-link.active::after {
     width: 100%;
}
 .navbar .dropdown-menu {
     border: none;
     border-radius: 0;
     padding: 10px 0;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
 .navbar .dropdown-item {
     font-size: 13px;
     padding: 9px 20px;
     color: #222;
}
 .navbar .dropdown-item:hover {
     background: #f5f1e8;
     color: #222;
}
 .navbar .dropdown-menu {
     position: absolute;
     top: calc(100% + 10px);
     right: 0;
     border: none;
     border-radius: 0;
     padding: 10px 0;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
 .navbar .dropdown-divider {
     margin: 5px 0;
}
 .nav-book {
     position: relative;
     display: inline-flex;
     align-items: center;
     gap: 10px;
     margin-left: 20px;
     padding: 13px 20px;
     border: 1px solid rgba(255, 255, 255, .55);
     color: var(--white);
     text-decoration: none;
     font-size: 12px;
     font-weight: 600;
     letter-spacing: .3px;
     overflow: hidden;
     transition: color .35s ease, border-color .35s ease;
}
 .nav-book::before {
     content: "";
     position: absolute;
     inset: 0;
     background: var(--cream);
     transform: translateY(100%);
     transition: transform .4s cubic-bezier(.22, 1, .36, 1);
     z-index: -1;
}
 .nav-book:hover {
     color: var(--dark);
     border-color: var(--cream);
}
 .nav-book:hover::before {
     transform: translateY(0);
}
 .nav-book i {
     transition: transform .3s ease;
}
 .nav-book:hover i {
     transform: translate(3px, -3px);
}
 .navbar-toggler {
     border: 1px solid rgba(255, 255, 255, .4);
     border-radius: 0;
     padding: 8px 10px;
}
/* HERO CAROUSEL */
 .hero-section {
     position: relative;
     width: 100%;
     height: 100vh;
     min-height: 720px;
     overflow: hidden;
}
 .hero-carousel, .hero-carousel .owl-stage-outer, .hero-carousel .owl-stage, .hero-carousel .owl-item {
     height: 100%;
}
 .hero-slide {
     position: relative;
     height: 100vh;
     min-height: 720px;
     background-position: center;
     background-size: cover;
     background-repeat: no-repeat;
     display: flex;
     align-items: center;
}
/* OVERLAY */
 .hero-overlay {
     position: absolute;
     inset: 0;
     z-index: 1;
     background: linear-gradient(90deg, rgba(18, 19, 17, 0.62) 0%, rgba(18, 19, 17, 0.40) 50%, rgba(18, 19, 17, 0.58) 100%);
}
/* HERO CONTENT - CENTER */
 .hero-slide .container {
     position: relative;
     z-index: 2;
     width: 100%;
}
 .hero-content {
     max-width: 850px;
     margin: 0 auto;
     padding: 100px 20px 80px;
     text-align: center;
     display: flex;
     flex-direction: column;
     align-items: center;
}
 .hero-eyebrow {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 14px;
     margin-bottom: 25px;
     color: rgba(255, 255, 255, 0.9);
     font-size: 11px;
     font-weight: 600;
     letter-spacing: 3px;
}
 .hero-eyebrow span {
     display: block;
     width: 35px;
     height: 1px;
     background: var(--gold);
}
 .hero-content h1 {
     margin: 0;
     color: var(--white);
     font-family: 'Lora', serif;
     font-size: clamp(55px, 7vw, 95px);
     font-weight: 400;
     line-height: 1.05;
     letter-spacing: -2px;
}
 .hero-content h1 span {
     color: #d0b37b;
     /* font-style: italic; */
}
 .hero-content p {
     max-width: 650px;
     margin: 30px auto 35px;
     color: rgba(255, 255, 255, 0.86);
     font-size: 16px;
     line-height: 1.8;
     font-weight: 400;
}
 .hero-buttons {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 15px;
}
 .hero-btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 12px;
     min-height: 53px;
     padding: 0 26px;
     text-decoration: none;
     font-size: 13px;
     font-weight: 600;
     transition: all 0.35s ease;
}
/* BUTONAT */
 .primary-btn {
     background: var(--cream);
     color: var(--dark);
}
 .primary-btn:hover {
     background: var(--gold);
     color: var(--white);
}
 .secondary-btn {
     border: 1px solid rgba(255, 255, 255, 0.6);
     color: var(--white);
     background: transparent;
}
 .secondary-btn:hover {
     background: rgba(255, 255, 255, 0.12);
     border-color: var(--white);
     color: var(--white);
}
 .hero-carousel .owl-dots {
     position: absolute;
     left: 0;
     right: 0;
     bottom: 32px;
     z-index: 10;
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 8px;
     margin: 0 !important;
}
 .hero-carousel .owl-dot {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 25px;
     height: 20px;
     background: transparent !important;
     margin: 0 !important;
     border: none;
}
 .hero-carousel .owl-dot span {
     display: block;
     width: 6px;
     height: 6px;
     margin: 0 !important;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.55) !important;
     transition: all 0.3s ease;
}
 .hero-carousel .owl-dot:hover span {
     background: rgba(255, 255, 255, 0.9) !important;
}
 .hero-carousel .owl-dot.active span {
     width: 8px;
     height: 8px;
     background: var(--gold) !important;
}
 .hero-carousel .owl-nav {
     display: none;
}
 .hero-carousel .owl-item .hero-content>* {
     opacity: 0;
     transform: translateY(35px);
     transition: opacity 0.8s ease, transform 0.8s ease;
}
 .hero-carousel .owl-item.active .hero-content>* {
     opacity: 1;
     transform: translateY(0);
}
 .hero-carousel .owl-item.active .hero-eyebrow {
     transition-delay: 0.15s;
}
 .hero-carousel .owl-item.active h1 {
     transition-delay: 0.30s;
}
 .hero-carousel .owl-item.active p {
     transition-delay: 0.45s;
}
 .hero-carousel .owl-item.active .hero-buttons {
     transition-delay: 0.60s;
}
/* General */
 .section-eyebrow {
     display: flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 22px;
     color: var(--gold);
     font-size: 11px;
     font-weight: 700;
     letter-spacing: 3px;
}
 .section-eyebrow::before {
     content: "";
     width: 35px;
     height: 1px;
     background: var(--gold);
}
 .title {
     margin: 0 0 28px;
     font-family: 'Lora', serif;
     color: var(--dark);
     font-size: clamp(42px, 4.5vw, 62px);
     font-weight: 400;
     line-height: 1.12;
     letter-spacing: -1.5px;
}
 .title span {
     /* display: block; */
     color: var(--gold);
     /* font-style: italic; */
}
 .paragraph {
     margin: 0 0 18px;
     color: #66665f;
     font-size: 15px;
     line-height: 1.9;
}
 .book-now {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 12px;
     margin-top: 18px;
     padding: 15px 25px;
     background: var(--dark);
     color: var(--white);
     text-decoration: none;
     font-size: 13px;
     font-weight: 600;
     transition: all 0.35s ease;
}
 .book-now i {
     font-size: 15px;
     transition: transform 0.35s ease;
}
 .book-now:hover {
     background: var(--gold);
     color: var(--white);
}
 .book-now:hover i {
     transform: translate(3px, -3px);
}
 .section {
     padding: 120px 0;
     background: var(--cream);
}
/* About US */
 .about-image-wrapper {
     position: relative;
     padding-right: 35px;
}
 .about-image {
     display: block;
     width: 100%;
     height: 600px;
     object-fit: cover;
}
 .about-image-label {
     position: absolute;
     right: 0;
     bottom: 35px;
     width: 150px;
     height: 150px;
     background: var(--dark);
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     text-align: center;
     color: var(--white);
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
 .about-image-label span {
     font-size: 9px;
     letter-spacing: 2px;
     color: rgba(255, 255, 255, 0.65);
}
 .about-image-label strong {
     margin: 8px 0;
     font-family: 'Lora', serif;
     font-size: 18px;
     font-weight: 500;
     letter-spacing: 1px;
}
/* FACILITIES SECTION */
 .facilities-section {
     padding: 120px 0;
     background: var(--dark);
     color: var(--white);
}
 .facilities-section .title {
     color: #f5f1e8;
}
 .facilities-header {
     max-width: 720px;
     margin: 0 auto 65px;
}
 .facilities-header .section-eyebrow {
     color: var(--gold);
}
 .facilities-intro {
     max-width: 600px;
     margin: 25px auto 0;
     color: rgba(255, 255, 255, 0.65);
     font-size: 15px;
     line-height: 1.8;
}
 .facilities-grid {
     border-top: 1px solid rgba(255, 255, 255, 0.15);
     border-left: 1px solid rgba(255, 255, 255, 0.15);
}
 .facility-item {
     height: 100%;
     display: flex;
     align-items: flex-start;
     gap: 22px;
     padding: 38px 32px;
     border-right: 1px solid rgba(255, 255, 255, 0.15);
     border-bottom: 1px solid rgba(255, 255, 255, 0.15);
     transition: all 0.4s ease;
}
 .facility-item:hover {
     background: rgba(255, 255, 255, 0.04);
}
 .facility-icon {
     flex-shrink: 0;
     width: 48px;
     height: 48px;
     display: flex;
     align-items: center;
     justify-content: center;
     border: 1px solid rgba(183, 155, 104, 0.5);
     color: var(--gold);
     font-size: 18px;
     transition: all 0.35s ease;
}
 .facility-item:hover .facility-icon {
     background: var(--gold);
     border-color: var(--gold);
     color: var(--white);
     transform: translateY(-3px);
}
 .facility-content h3 {
     margin: 2px 0 8px;
     color: var(--white);
     font-family: 'Lora', serif;
     font-size: 20px;
     font-weight: 500;
}
 .facility-content p {
     margin: 0;
     color: rgba(255, 255, 255, 0.55);
     font-size: 13px;
     line-height: 1.7;
}
/* ROOMS */
 .rooms-section {
     padding: 120px 0;
     background: var(--cream);
}
 .rooms-header {
     margin-bottom: 55px;
}
 .room-card {
     background: #ebe6db;
     height: 100%;
     overflow: hidden;
     transition: transform 0.4s ease, box-shadow 0.4s ease;
}
 .room-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 20px 45px rgba(32, 33, 30, 0.12);
}
 .room-image {
     position: relative;
     height: 360px;
     overflow: hidden;
}
 .room-image img {
     width: 100%;
     height: 100%;
     display: block;
     object-fit: cover;
     transition: transform 0.8s ease;
}
 .room-card:hover .room-image img {
     transform: scale(1.05);
}
 .room-image::after {
     content: "";
     position: absolute;
     inset: 0;
     background: linear-gradient(to top, rgba(20, 20, 18, 0.45), transparent 45%);
     pointer-events: none;
}
 .room-number {
     position: absolute;
     top: 20px;
     left: 22px;
     z-index: 2;
     color: rgba(255, 255, 255, 0.85);
     font-family: 'Lora', serif;
     font-size: 18px;
}
 .room-image-link {
     position: absolute;
     right: 20px;
     bottom: 20px;
     z-index: 3;
     width: 44px;
     height: 44px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: var(--white);
     color: var(--dark);
     text-decoration: none;
     font-size: 16px;
     transition: all 0.35s ease;
}
 .room-image-link:hover {
     background: var(--gold);
     color: var(--white);
}
 .room-image-link i {
     transition: transform 0.35s ease;
}
 .room-image-link:hover i {
     transform: translate(3px, -3px);
}
 .room-content {
     padding: 30px 28px 32px;
}
 .room-category {
     display: block;
     margin-bottom: 12px;
     color: var(--gold);
     font-size: 9px;
     font-weight: 700;
     letter-spacing: 2.5px;
}
 .room-content h3 {
     margin: 0 0 15px;
     color: var(--dark);
     font-family: 'Lora', serif;
     font-size: 28px;
     font-weight: 400;
     line-height: 1.15;
}
 .room-content h3 span {
     color: var(--gold);
     /* font-style: italic; */
}
 .room-content p {
     min-height: 50px;
     margin: 0 0 22px;
     color: #6d6c65;
     font-size: 13px;
     line-height: 1.7;
}
 .room-meta {
     display: flex;
     align-items: center;
     gap: 18px;
     padding: 17px 0;
     border-top: 1px solid rgba(32, 33, 30, 0.13);
     border-bottom: 1px solid rgba(32, 33, 30, 0.13);
}
 .room-meta span {
     display: flex;
     align-items: center;
     gap: 7px;
     color: var(--dark);
     font-size: 10px;
     font-weight: 600;
}
 .room-meta i {
     color: var(--gold);
     font-size: 15px;
}
 .room-btn {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     margin-top: 22px;
     color: var(--dark);
     text-decoration: none;
     font-size: 11px;
     font-weight: 700;
     letter-spacing: 0.5px;
     transition: color 0.3s ease;
}
 .room-btn i {
     transition: transform 0.3s ease;
}
 .room-btn:hover {
     color: var(--gold);
}
 .room-btn:hover i {
     transform: translateX(5px);
}
 .rooms-carousel {
     position: relative;
}
 .rooms-carousel .owl-stage {
     display: flex;
}
 .rooms-carousel .owl-item {
     display: flex;
}
 .rooms-carousel .room-card {
     width: 100%;
}
/* DOTS */
 .rooms-carousel .owl-dots {
     margin-top: 35px !important;
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 7px;
}
 .rooms-carousel .owl-dot {
     margin: 0 !important;
     background: transparent !important;
}
 .rooms-carousel .owl-dot span {
     width: 6px;
     height: 6px;
     margin: 0 !important;
     background: rgba(32, 33, 30, 0.25) !important;
     transition: all 0.3s ease;
}
 .rooms-carousel .owl-dot.active span {
     width: 22px;
     border-radius: 5px;
     background: var(--gold) !important;
}
/* ARROWS */
 .rooms-carousel .owl-nav {
     position: absolute;
     top: -90px;
     right: 0;
     display: flex;
     gap: 8px;
     margin: 0;
}
 .rooms-carousel .owl-nav button {
     width: 45px;
     height: 45px;
     margin: 0 !important;
     border: 1px solid rgba(32, 33, 30, 0.25) !important;
     background: transparent !important;
     color: var(--dark) !important;
     font-size: 18px !important;
     transition: all 0.3s ease;
}
 .rooms-carousel .owl-nav button:hover {
     background: var(--dark) !important;
     border-color: var(--dark) !important;
     color: var(--white) !important;
}
/* GALLERY SECTION */
 .gallery-header {
     margin-bottom: 55px;
}
 .gallery-header-row {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 50px;
}
 .gallery-header-content p {
     margin: 0 0 22px;
     color: #6d6c65;
     font-size: 14px;
     line-height: 1.8;
}
 .gallery-grid {
     display: grid;
     grid-template-columns: 1.35fr 0.65fr;
     grid-template-rows: 280px 280px;
     gap: 15px;
}
 .gallery-item {
     position: relative;
     display: block;
     overflow: hidden;
     text-decoration: none;
}
 .gallery-large {
     grid-row: span 2;
}
 .gallery-item img {
     width: 100%;
     height: 100%;
     display: block;
     object-fit: cover;
     transition: transform 0.8s ease;
}
 .gallery-item:hover img {
     transform: scale(1.06);
}
 .gallery-overlay {
     position: absolute;
     inset: 0;
     display: flex;
     align-items: flex-end;
     justify-content: space-between;
     padding: 25px;
     background: linear-gradient(to top, rgba(20, 20, 18, 0.55), transparent 55%);
     color: var(--white);
     opacity: 0;
     transition: opacity 0.4s ease;
}
 .gallery-item:hover .gallery-overlay {
     opacity: 1;
}
 .gallery-overlay span {
     font-size: 10px;
     font-weight: 600;
     letter-spacing: 2px;
     text-transform: uppercase;
}
 .gallery-overlay i {
     width: 40px;
     height: 40px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: var(--white);
     color: var(--dark);
     font-size: 15px;
}
 .gallery-small-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 15px;
     margin-top: 15px;
}
 .gallery-small-item {
     position: relative;
     height: 190px;
     display: block;
     overflow: hidden;
}
 .gallery-small-item::after {
     content: "";
     position: absolute;
     inset: 0;
     background: rgba(20, 20, 18, 0);
     transition: background 0.4s ease;
}
 .gallery-small-item:hover::after {
     background: rgba(20, 20, 18, 0.18);
}
 .gallery-small-item img {
     width: 100%;
     height: 100%;
     display: block;
     object-fit: cover;
     transition: transform 0.7s ease;
}
 .gallery-small-item:hover img {
     transform: scale(1.06);
}
/* TESTIMONIALS */
 .testimonials-section {
     padding: 120px 0;
     background: var(--dark);
     overflow: hidden;
}
/* HEADER */
 .testimonials-header {
     max-width: 700px;
     margin: 0 auto 60px;
}
 .testimonials-header .section-eyebrow {
     color: var(--gold);
     margin-bottom: 18px;
}
 .testimonials-header .title {
     color: var(--white);
}
 .testimonials-header h2 span {
     color: var(--gold);
     /* font-style: italic; */
}
 .testimonials-header p {
     max-width: 520px;
     margin: 0 auto;
     color: rgba(255, 255, 255, .62);
     font-size: 14px;
     line-height: 1.8;
}
 .testimonials-carousel {
     padding-bottom: 45px;
}
 .testimonials-carousel .owl-stage {
     display: flex;
}
 .testimonials-carousel .owl-item {
     display: flex;
}
 .testimonial-card {
     position: relative;
     width: 100%;
     min-height: 390px;
     padding: 45px 42px;
     background: var(--dark-soft);
     border: 1px solid rgba(255, 255, 255, .08);
     display: flex;
     flex-direction: column;
     transition: all .4s ease;
}
 .testimonial-card:hover {
     border-color: rgba(183, 155, 104, .35);
     transform: translateY(-5px);
}
 .testimonial-quote {
     position: absolute;
     top: 28px;
     right: 35px;
}
 .testimonial-quote i {
     color: rgba(183, 155, 104, .18);
     font-size: 70px;
     line-height: 1;
}
 .testimonial-stars {
     display: flex;
     gap: 5px;
     margin-bottom: 28px;
}
 .testimonial-stars i {
     color: var(--gold);
     font-size: 11px;
}
 .testimonial-text {
     position: relative;
     z-index: 1;
     max-width: 520px;
     margin: 0;
     color: rgba(255, 255, 255, .82);
     font-family: "Lora", serif;
     font-size: 19px;
     font-weight: 400;
     line-height: 1.8;
}
 .testimonial-author {
     display: flex;
     align-items: center;
     gap: 15px;
     margin-top: auto;
     padding-top: 35px;
}
 .author-line {
     width: 35px;
     height: 1px;
     background: var(--gold);
}
 .testimonial-author h4 {
     margin: 0 0 4px;
     color: var(--white);
     font-family: "DM Sans", sans-serif;
     font-size: 12px;
     font-weight: 600;
     letter-spacing: .8px;
     text-transform: uppercase;
}
 .testimonial-author span:not(.author-line) {
     color: rgba(255, 255, 255, .45);
     font-size: 11px;
     letter-spacing: .4px;
}
 .testimonials-carousel .owl-dots {
     margin-top: 35px !important;
}
 .testimonials-carousel .owl-dot span {
     width: 6px !important;
     height: 6px !important;
     margin: 5px !important;
     background: rgba(255, 255, 255, .25) !important;
     transition: all .3s ease;
}
 .testimonials-carousel .owl-dot.active span {
     width: 8px !important;
     height: 8px !important;
     background: var(--gold) !important;
}
/* OWL ARROWS */
 .testimonials-carousel .owl-nav {
     position: absolute;
     top: -95px;
     right: 0;
     display: flex;
     gap: 8px;
}
 .testimonials-carousel .owl-nav button {
     width: 46px;
     height: 46px;
     margin: 0 !important;
     border: 1px solid rgba(255, 255, 255, .18) !important;
     border-radius: 0 !important;
     background: transparent !important;
     color: var(--white) !important;
     transition: all .3s ease;
}
 .testimonials-carousel .owl-nav button:hover {
     background: var(--gold) !important;
     border-color: var(--gold) !important;
     color: var(--dark) !important;
}
/* FOOTER */
 .site-footer {
     position: relative;
     padding: 90px 0 10px;
     background: var(--dark);
}
 .site-footer p, .site-footer a {
     font-size: 14px !important;
     font-weight: 500 !important;
     text-decoration: none;
     color: var(--cream) 
}
 .footer-book {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     padding-bottom: 8px;
     border-bottom: 1px solid var(--gold);
     color: var(--white);
     font-size: 11px;
     font-weight: 600;
     letter-spacing: .7px;
     text-decoration: none;
     transition: all .3s ease;
}
 .footer-book i {
     transition: transform .3s ease;
}
 .footer-book:hover {
     color: var(--gold);
}
 .footer-book:hover i {
     transform: translate(3px, -3px);
}
 .footer-title {
     margin: 5px 0 25px;
     color: var(--gold);
     font-size: 18px;
     font-weight: 500;
     letter-spacing: 2px;
}
 .site-footer ul {
     margin: 0;
     padding: 0;
     list-style: none;
}
 .site-footer ul li {
     margin-bottom: 13px;
}
 .site-footer ul li a {
     color: rgba(255, 255, 255, .62);
     font-size: 13px;
     text-decoration: none;
     transition: all .3s ease;
}
 .site-footer ul li a:hover {
     color: var(--gold);
     padding-left: 4px;
}
 .footer-contact li {
     display: flex;
     align-items: flex-start;
     gap: 12px;
}
 .footer-contact li i {
     margin-top: 2px;
     color: var(--gold);
     font-size: 14px;
}
 .footer-contact li span, .footer-contact li a {
     line-height: 1.6;
}
 .footer-hr {
     width: 100%;
     color: var(--gold-light);
}
 .logo1 {
     width: 100px;
}
/* Hero Section page*/
 .hero {
     position: relative;
     min-height: 75vh;
     display: flex;
     align-items: center;
     background-position: center;
     background-size: cover;
     overflow: hidden;
}
 .hero-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(90deg, rgba(20, 21, 18, .78) 0%, rgba(20, 21, 18, .45) 45%, rgba(20, 21, 18, .25) 100%), linear-gradient(0deg, rgba(20, 21, 18, .75) 0%, rgba(20, 21, 18, 0) 55%);
}
/* CONTENT */
 .hero .container {
     position: relative;
     z-index: 2;
}
 .hero-content {
     max-width: 750px;
     padding: 190px 0 80px;
}
/* EYEBROW */
 .hero .section-eyebrow {
     display: flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 22px;
     color: var(--gold);
     font-size: 10px;
     font-weight: 600;
     letter-spacing: 2.5px;
}
 .hero .section-eyebrow::before {
     content: "";
     width: 35px;
     height: 1px;
     background: var(--gold);
}
 .hero h1 {
     margin: 0;
     color: var(--white);
     font-family: "Lora", serif;
     font-size: clamp(48px, 6vw, 78px);
     font-weight: 400;
     line-height: 1.05;
     letter-spacing: -2px;
}
 .hero h1 span {
     display: block;
     color: var(--gold);
     /* font-style: italic; */
     font-weight: 400;
}
/* BREADCRUMB */
 .hero-breadcrumb {
     display: flex;
     align-items: center;
     gap: 12px;
     color: rgba(255, 255, 255, .5);
     font-size: 11px;
     letter-spacing: .5px;
}
 .hero a {
     color: var(--white);
     text-decoration: none;
     transition: color .3s ease;
}
 .hero-carousel a:hover {
     color: var(--gold);
}
 .hero span:first-of-type {
     color: var(--gold);
}
 .about-hero {
     background-image: url("image/Bizant-3204.jpg");
}
 .contact-hero {
     background-image: url("image/Bizant-3548.jpg");
}
 .rooms-hero {
     background-image: url("image/Bizant-3289.jpg");
}
 .gallery-hero {
     background-image: url("image/Bizant-3595.jpg");
}
/* BOOKING CTA */
 .booking-cta {
     position: relative;
     min-height: 540px;
     display: flex;
     align-items: center;
     justify-content: center;
     background-image: url("image/Bizant-3256.jpg");
     background-position: center;
     background-size: cover;
     overflow: hidden;
}
 .booking-cta-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(90deg, rgba(25, 26, 23, .78), rgba(25, 26, 23, .55)), rgba(25, 26, 23, 0.082);
}
 .booking-cta .title {
     color: white;
}
 .booking-cta .container {
     position: relative;
     z-index: 2;
}
 .booking-cta-content {
     max-width: 800px;
     margin: 0 auto;
}
 .booking-cta .section-eyebrow {
     display: flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 22px;
     color: var(--gold);
     font-size: 10px;
     font-weight: 600;
     letter-spacing: 2.5px;
}
 .booking-cta .section-eyebrow::before, .booking-cta .section-eyebrow::after {
     content: "";
     width: 35px;
     height: 1px;
     background: var(--gold);
}
 .booking-cta-content p {
     max-width: 560px;
     margin: 25px auto 32px;
     color: rgba(255, 255, 255, .72);
     font-size: 14px;
     line-height: 1.9;
}
/* Contact Page */
 .contact-section {
     background: var(--cream);
}
 .contact-intro {
     max-width: 480px;
     margin: 0 0 38px;
     color: #6d6c65;
     font-size: 14px;
     line-height: 1.9;
}
 .contact-details {
     border-top: 1px solid rgba(32, 33, 30, .15);
}
 .contact-detail {
     display: flex;
     align-items: flex-start;
     gap: 18px;
     padding: 20px 0;
     border-bottom: 1px solid rgba(32, 33, 30, .15);
}
 .contact-icon {
     width: 42px;
     height: 42px;
     flex-shrink: 0;
     display: flex;
     align-items: center;
     justify-content: center;
     background: var(--dark);
     color: var(--gold);
     font-size: 16px;
}
 .contact-detail span {
     display: block;
     margin-bottom: 6px;
     color: var(--gold);
     font-size: 9px;
     font-weight: 700;
     letter-spacing: 1.8px;
}
 .contact-detail p {
     margin: 0;
     color: var(--dark);
     font-size: 13px;
     line-height: 1.7;
}
 .contact-detail a {
     color: var(--dark);
     text-decoration: none;
     transition: color .3s ease;
}
 .contact-detail a:hover {
     color: var(--gold);
}
 .contact-map {
     position: relative;
     width: 100%;
     min-height: 600px;
     overflow: hidden;
}
 .contact-map iframe {
     width: 100%;
     height: 600px;
     display: block;
     border: 0;
     transition: filter .4s ease;
     padding: 10px;
     border: 1px solid #d0b37b;
}
/* RESPONSIVE */
 @media (max-width: 991px) {
     .contact-section {
         padding: 90px 0;
    }
     .contact-map, .contact-map iframe {
         min-height: 420px;
         height: 420px;
    }
}
 @media (max-width: 576px) {
     .contact-section {
         padding: 70px 0;
    }
     .contact-section h2 {
         font-size: 40px;
    }
     .contact-map, .contact-map iframe {
         min-height: 350px;
         height: 350px;
    }
}
/* RESPONSIVE */
 @media (max-width: 767px) {
     .booking-cta {
         min-height: 500px;
    }
     .booking-cta-content p {
         font-size: 13px;
         padding: 0 10px;
    }
    .navbar{
background-color: #20211e;
    }
}
 @media (max-width: 480px) {
     .booking-cta {
         min-height: 470px;
    }
     .booking-cta .section-eyebrow::before, .booking-cta .section-eyebrow::after {
         width: 20px;
    }
}
/* RESPONSIVE */
 @media (max-width: 767px) {
     .about-hero {
         min-height: 70vh;
    }
     .about-hero-content {
         padding: 160px 0 60px;
    }
     .about-hero h1 {
         font-size: 46px;
         letter-spacing: -1.2px;
    }
     .about-hero-content>p {
         max-width: 100%;
         font-size: 13px;
    }
}
 @media (max-width: 480px) {
     .about-hero {
         min-height: 68vh;
    }
     .about-hero-content {
         padding: 150px 0 50px;
    }
     .about-hero h1 {
         font-size: 40px;
    }
}
/* RESPONSIVE */
 @media (max-width: 991px) {
     .testimonials-section {
         padding: 90px 0;
    }
     .testimonials-carousel .owl-nav {
         display: none;
    }
     .testimonial-card {
         min-height: 370px;
         padding: 40px 35px;
    }
}
 @media (max-width: 576px) {
     .testimonials-section {
         padding: 70px 0;
    }
     .testimonials-header {
         margin-bottom: 40px;
    }
     .testimonial-card {
         min-height: 350px;
         padding: 35px 28px;
    }
     .testimonial-text {
         font-size: 17px;
         line-height: 1.7;
    }
     .testimonial-quote {
         top: 22px;
         right: 25px;
    }
     .testimonial-quote i {
         font-size: 55px;
    }
}
/* TABLET */
 @media (max-width: 991px) {
     .gallery-section {
         padding: 90px 0;
    }
     .gallery-header-row {
         display: block;
    }
     .gallery-header-content {
         margin-top: 25px;
         max-width: 600px;
    }
     .gallery-grid {
         grid-template-columns: 1fr 1fr;
         grid-template-rows: 300px 300px;
    }
     .gallery-large {
         grid-row: span 2;
    }
     .gallery-small-grid {
         grid-template-columns: repeat(2, 1fr);
    }
     .gallery-small-item {
         height: 220px;
    }
}
/* MOBILE */
 @media (max-width: 576px) {
     .gallery-section {
         padding: 70px 0;
    }
     .gallery-header-content p {
         font-size: 13px;
    }
     .gallery-grid {
         display: grid;
         grid-template-columns: 1fr;
         grid-template-rows: 350px 240px 240px;
    }
     .gallery-large {
         grid-row: auto;
    }
     .gallery-small-grid {
         grid-template-columns: 1fr 1fr;
         gap: 10px;
         margin-top: 10px;
    }
     .gallery-small-item {
         height: 160px;
    }
     .gallery-overlay {
         opacity: 1;
         padding: 18px;
    }
     .gallery-overlay i {
         width: 35px;
         height: 35px;
    }
}
/* RESPONSIVE */
 @media (max-width: 991px) {
     .rooms-section {
         padding: 90px 0;
    }
     .rooms-header-row {
         display: block;
    }
     .rooms-header-row>p {
         margin-top: 20px;
    }
     .room-image {
         height: 330px;
    }
     .rooms-carousel .owl-nav {
         position: static;
         justify-content: center;
         margin-top: 25px;
    }
}
 @media (max-width: 576px) {
     .rooms-section {
         padding: 70px 0;
    }
     .rooms-header-row>p {
         font-size: 13px;
    }
     .room-image {
         height: 350px;
    }
     .room-content {
         padding: 25px 22px 28px;
    }
     .room-content h3 {
         font-size: 26px;
    }
     .room-meta {
         gap: 14px;
    }
     .rooms-carousel .owl-dots {
         margin-top: 25px !important;
    }
}
/* RESPONSIVE */
 @media (max-width: 991px) {
     .facilities-section {
         padding: 90px 0;
    }
     .facilities-header {
         margin-bottom: 50px;
    }
     .facility-item {
         padding: 30px 25px;
    }
}
 @media (max-width: 576px) {
     .facilities-section {
         padding: 70px 0;
    }
     .facilities-header h2 {
         font-size: 40px;
    }
     .facilities-intro {
         font-size: 14px;
    }
     .facility-item {
         padding: 28px 20px;
         gap: 17px;
    }
     .facility-icon {
         width: 43px;
         height: 43px;
         font-size: 16px;
    }
     .facility-content h3 {
         font-size: 18px;
    }
     .facility-content p {
         font-size: 12px;
    }
}
/* RESPONSIVE */
 @media (max-width: 991px) {
     .about-section {
         padding: 90px 0;
    }
     .about-image-wrapper {
         padding-right: 25px;
    }
     .about-image {
         height: 520px;
    }
     .about-content {
         max-width: 100%;
         padding-left: 0;
    }
     .about-content h2 {
         font-size: 48px;
    }
}
 @media (max-width: 576px) {
     .about-section {
         padding: 70px 0;
    }
     .about-image-wrapper {
         padding-right: 18px;
    }
     .about-image {
         height: 430px;
    }
     .about-image-label {
         right: 0;
         bottom: 20px;
         width: 120px;
         height: 120px;
    }
     .about-image-label strong {
         font-size: 15px;
    }
     .about-content h2 {
         font-size: 40px;
         letter-spacing: -1px;
    }
     .about-content .about-intro {
         font-size: 15px;
    }
     .about-content p {
         font-size: 14px;
    }
}
/* MOBILE */
 @media (max-width: 991px) {
     .hero-section, .hero-slide {
         min-height: 700px;
         height: 100vh;
    }
     .hero-content {
         padding: 100px 20px 80px;
    }
     .hero-content h1 {
         font-size: clamp(48px, 9vw, 75px);
    }
     .hero-content p {
         max-width: 600px;
    }
}
 @media (max-width: 576px) {
     .hero-section, .hero-slide {
         min-height: 720px;
    }
     .hero-content {
         padding: 90px 15px 70px;
    }
     .hero-eyebrow {
         font-size: 9px;
         letter-spacing: 2px;
         gap: 10px;
    }
     .hero-eyebrow span {
         width: 25px;
    }
     .hero-content h1 {
         font-size: 48px;
         letter-spacing: -1px;
    }
     .hero-content p {
         font-size: 14px;
         line-height: 1.7;
         margin: 25px auto 30px;
    }
     .hero-buttons {
         flex-direction: column;
         width: 100%;
    }
     .hero-btn {
         width: auto;
         min-width: 210px;
    }
     .hero-carousel .owl-dots {
         bottom: 22px;
    }
}
/* HERO ANIMATIONS */
 @keyframes heroTextUp {
     from {
         opacity: 0;
         transform: translateY(45px);
    }
     to {
         opacity: 1;
         transform: translateY(0);
    }
}
 @keyframes heroBottom {
     from {
         opacity: 0;
         transform: translateY(20px);
    }
     to {
         opacity: 1;
         transform: translateY(0);
    }
}
 @keyframes scrollArrow {
     0%, 100% {
         transform: translateY(0);
    }
     50% {
         transform: translateY(6px);
    }
}
/* RESPONSIVE */
 @media (max-width: 991px) {
     .navbar {
         padding: 18px 0;
         background-color:black;
    }
     .navbar-nav {
         gap: 5px;
    }
     .nav-link {
         padding: 10px 5px !important;
    }
     .navbar-nav>.nav-item:not(.dropdown) .nav-link::after {
         left: 5px;
    }
     .navbar-nav>.nav-item:not(.dropdown) .nav-link:hover::after, .navbar-nav>.nav-item:not(.dropdown) .nav-link.active::after {
         width: 35px;
    }
     .nav-book {
         display: inline-flex;
         margin: 15px 0 0;
    }
     .navbar .dropdown-menu {
         position: static;
         margin-top: 8px;
         box-shadow: none;
         transform: none;
    }
     .navbar .dropdown-menu::before {
         display: none;
    }
     .navbar .dropdown.show .dropdown-menu {
         transform: none;
    }
     .hero-content {
         max-width: 650px;
    }
     .hero-content h1 {
         font-size: clamp(52px, 9vw, 78px);
    }
}
 @media (max-width: 576px) {
     .logo-name {
         font-size: 21px;
    }
     .hero-section {
         min-height: 760px;
         background-position: center;
    }
     .hero-content {
         padding-top: 65px;
    }
     .hero-eyebrow {
         font-size: 8px;
         letter-spacing: 2px;
    }
     .hero-content h1 {
         font-size: 50px;
         letter-spacing: -1.5px;
    }
     .hero-content p {
         font-size: 14px;
         line-height: 1.75;
         margin: 25px 0 30px;
    }
     .hero-buttons {
         flex-direction: column;
         align-items: flex-start;
    }
     .hero-btn {
         min-width: 205px;
    }
     .hero-scroll {
         display: none;
    }
     .hero-location {
         font-size: 10px;
    }
}
