 :root {
  --primary-navy: #1F2A44;
  --secondary-navy: #2E3A59;
  --champagne-gold: #C6A75E;
  --light-gold: #D8C48A;
  --bg-light: #F8F6F1;
  --text-dark: #1C1C1C;
  --white: #FFFFFF;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
  animation: fadeInUp 0.8s ease;
}

.preloader-logo {
  width: 220px;
  height: auto;
  margin-bottom: 30px;
  animation: logoFadeIn 1s ease;
}

.preloader-spinner {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  border: 3px solid rgba(198, 167, 94, 0.3);
  border-top: 3px solid var(--champagne-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes logoFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

html, body {
  margin: 0px;
  padding: 0px;
overflow-x: hidden !important;
font-family: "La Belle Aurore", cursive;
  font-family: "Marcellus", serif;
  color: var(--text-dark);
}
a {
  text-decoration: none !important;
}

/* Navigation Container & Links */
#navigation .container {
  display: flex;
  align-items: center;
}

#navigation .nav-link {
  color: var(--white) !important;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 5px 0;
  line-height: 1;
  transition: color 0.3s ease;
}

#navigation .nav-link:hover {
  color: var(--champagne-gold) !important;
}

#navigation .button {
  padding: 11px 26px !important;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.navbar-nav {
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
}

/* Navbar Visibility Utilities */
.nav-hidden {
  display: none !important;
}

.nav-hidden1 {
  display: inline-block !important;
}
/* Premium Symmetric Navbar */
.main-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: all 0.4s ease;
}
.navbar-premium {
  height: 90px;
  background: transparent;
  transition: all 0.4s ease;
}
.main-header.scrolled .navbar-premium {
  background: rgba(31, 42, 68, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.navbar-premium .container {
  height: 100%;
  max-width: 1400px;
  padding: 0 30px;
}
.navbar-content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
/* Left Section */
.navbar-left {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-start;
}
/* Center Section */
.navbar-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.navbar-logo img {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}
.navbar-logo:hover img {
  transform: scale(1.05);
}
/* Right Section */
.navbar-right {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
  gap: 20px;
}
/* Navigation Menu */
.navbar-menu {
  list-style: none;
  display: flex;
  gap: 35px;
  margin: 0;
  padding: 0;
}
.navbar-menu li {
  margin: 0;
}
.nav-link {
  color: var(--white) !important;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 0;
  position: relative;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--champagne-gold);
  transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-link.active {
  color: var(--champagne-gold) !important;
}
/* Book Now Button */
.btn-book {
  background: var(--champagne-gold);
  color: var(--white) !important;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 2px solid var(--champagne-gold);
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-book:hover {
  background: transparent;
  color: var(--champagne-gold) !important;
  border-color: var(--champagne-gold);
}
/* Mobile Responsive */
@media (max-width: 991px) {
  .navbar-premium {
    height: 70px;
  }
  .navbar-left,
  .navbar-right {
    display: none;
  }
  .navbar-center {
    position: static;
    transform: none;
  }
  .navbar-logo img {
    height: 45px;
  }
  .navbar-toggler {
    display: block;
    position: absolute;
    right: 20px;
  }
  .navbar-collapse-mobile {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(31, 42, 68, 0.98);
    padding: 30px 0;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .navbar-collapse-mobile.show {
    display: block;
  }
  .navbar-menu-mobile {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .navbar-menu-mobile li {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-link-mobile {
    display: block;
    color: var(--white) !important;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 15px 30px;
    transition: all 0.3s ease;
  }
  .nav-link-mobile:hover,
  .nav-link-mobile.active {
    background: rgba(198, 167, 94, 0.1);
    color: var(--champagne-gold) !important;
    padding-left: 40px;
  }
  .btn-book-mobile {
    display: block;
    background: var(--champagne-gold);
    color: var(--white) !important;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 15px 30px;
    margin: 20px 30px;
    text-align: center;
    transition: all 0.3s ease;
  }
  .btn-book-mobile:hover {
    background: transparent;
    color: var(--champagne-gold) !important;
    border: 2px solid var(--champagne-gold);
  }
}
#button {
  display: block !important;
  background-color: var(--champagne-gold) !important;
  width: 40px !important;
  height: 40px !important;
  text-align: center;
  border-radius: 4px;
  position: fixed !important;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000 !important;
}
#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  line-height: 40px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: var(--primary-navy);
}
#button:active {
  background-color: var(--secondary-navy);
}
#button.show {
  opacity: 1;
  visibility: visible;
}
.justify-content-end {
  justify-content: space-evenly!important;
}
.text-bg-dark {
  color: var(--white)!important;
  background-color: var(--primary-navy) !important;
}
/* Styles for the content section */
.content {
  width: 77%;
  margin: 50px auto;
  font-family: 'Merriweather', serif;
  font-size: 17px;
  color: #6c767a;
  line-height: 1.9;
}
@media (min-width: 500px) {
  .content {
    width: 43%;
  }
  #button {
    margin: 30px;
  }
}
.content h1 {
  margin-bottom: -10px;
  color: #03a9f4;
  line-height: 1.5;
}
.content h3 {
  font-style: italic;
  color: #96a2a7;
}
a{
  text-decoration: none;
}
/* Hero CTA Button */
.button1 {
  display: inline-block;
  background: var(--champagne-gold);
  padding: 15px 38px;
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--champagne-gold);
  transition: all 0.3s ease;
}
.button1:hover {
  background: transparent;
  color: var(--champagne-gold);
  border-color: var(--champagne-gold);
  transform: translateY(-2px);
}
/* Navbar Book Now Button */
.button {
  display: inline-block;
  border: 2px solid var(--champagne-gold);
  background: var(--champagne-gold);
  padding: 11px 26px;
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.button:hover {
  background: transparent;
  color: var(--champagne-gold);
  border-color: var(--champagne-gold);
}
/* Hero Slider - Luxury 100vh Layout */
.banner_wrapper {
  position: relative;
  width: 100%;
  height: 110vh;
  overflow: hidden;
  margin-top: -350px;
  padding-top: 250px;
  z-index: 1;
}
.swiper {
  height: 100%;
  z-index: 1;
}
.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 6500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.swiper-slide-active .hero-bg {
  transform: scale(1.1);
}
.swiper-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35));
  z-index: 1;
}
.slide-caption {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 30px;
  animation: fadeInUp 1s ease-out;
}
.slide-caption h6 {
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 400;
  color: var(--champagne-gold);
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.slide-caption h1,
.slide-caption h2 {
  font-family: "Marcellus", serif;
  font-size: 62px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 2px;
  color: var(--white);
  margin: 0 0 25px 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.slide-caption h1 .outlined-text {
  font-weight: 400 !important;
}
.slide-caption p {
  font-family: "Jost", sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Swiper Pagination */
.swiper-pagination {
  bottom: 40px !important;
  z-index: 10;
}
.banner_wrapper .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.8);
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
}
.banner_wrapper .swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: var(--champagne-gold);
  border-color: var(--champagne-gold);
  transform: scale(1.2);
}
.container{
  width:100% !important;
}
.title{
  font-size: 56px;
}
.owl-carousel .owl-next,
.owl-carousel .owl-prev {
  height: 35px;
  position: absolute;
  width: 50px;
  cursor: pointer;
  top: 35%;
  background: rgb(255, 255, 255) !important;
  transition: 0.5s;
}
.owl-carousel .owl-prev {
  left: 33px;
}
.owl-carousel .owl-next {
  right: 33px;
}
.owl-carousel .owl-next:hover,
.owl-carousel .owl-prev:hover {
  background: var(--primary-navy) !important;
}
.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 50px;
  height: 50px;
} 
.facility-section{
  padding-top: 100px;
  padding-bottom: 100px;
}
.rooms-section{
  background: var(--bg-light);
  padding-top: 100px;
  padding-bottom: 100px;
}
.experiences{
  background: url('../images/photos/a3/P1234271.JPG') rgba(0, 0, 0, 0.451);
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  background-blend-mode: multiply;
  padding-top: 100px;
  padding-bottom: 400px;
}
@media (max-width: 1000px) {
  .logo1{
    display: none !important;
  }
}
.experiences1{
position: relative;
margin-top: -300px;
}
.img-1{
  outline: 1px solid var(--champagne-gold) !important;
  outline-offset: 5px !important;
}
.cover-bg{
  background: url('../images/photos/z (4).jpg') rgba(0, 0, 0, 0.451);
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  background-blend-mode: multiply;
  padding-top: 150px;
  padding-bottom: 150px;
}
.card-img {
  position: relative;
  overflow: hidden;
  outline: 1px solid var(--champagne-gold);
  outline-offset: 5px;
}
.card-img img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease; /* Adding transition for smooth animation */
}
.card-img:hover img {
  transform: scale(1.1); /* Zooming in the image on hover */
  outline: 1px solid var(--light-gold) !important;
  outline-offset: 1px !important;
}
footer{
  background: var(--primary-navy);
  padding-top: 60px;
  padding-bottom: 0px;
  padding-left: 20px;
  padding-right: 20px;
}
a.footer-link{
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
}
.footer-link:hover{
  color:  var(--champagne-gold);
}
.payment{
  display: flex;
}
.socials{
  display: flex;
  color: white;
}
.footer-links{
  display: flex;
  font-family: 'Jost', sans-serif;
  font-size: 18px;
}
.socials a{
  text-decoration: none !important;
  color: var(--white);
}
.socials a:hover h4 {
  color:  var(--champagne-gold);
}

/* Social Media Icons in Footer */
.social-icon {
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--champagne-gold) !important;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(198, 167, 94, 0.4);
}

.social-icon:hover i {
  color: var(--primary-navy) !important;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
.copyright{
  display: flex;
justify-content: right;
text-align: right ;
align-items: end ;
}
.room-link{
  color: var(--text-dark);
}
.room-link:hover{
  color: var(--champagne-gold);
}
@keyframes fadeinnav {
  from {opacity: 0;}
  to {opacity: 1;}
}
.fade-in-nav{
  animation-name: fadeinnav;
  animation-duration: 0.9s;
}
/*aboutus.html*/
.aboutus-bg{
  background: url('../images/827710319.jpg') rgba(0, 0, 0, 0.665);
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  background-blend-mode: multiply;
  position: relative;
  z-index: -1;
  margin-top: -250px;
  padding-top: 450px;
  padding-bottom: 350px;
}
.title1{
  font-size: 80px;
}
.number-box{
  border: none;
text-align: center;
}
.counter {
  animation-duration: 2s;
  animation-delay: 0s;
  font-size: 69px;
  font-weight: 500 ;
  color: var(--white);
}
.faq{
  padding-top: 100px;
  padding-bottom: 100px;
}
.cover-bg1{
  background: url('../images/827710340.jpg') rgba(0, 0, 0, 0.65);
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  background-blend-mode: multiply;
  padding-top: 150px;
  padding-bottom: 150px;
}
/*bar.html*/
.bar-bg{
  background: url('../photos/bar-bg.png') rgba(0, 0, 0, 0.55);
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  background-blend-mode: multiply;
  position: relative;
  z-index: -1;
  margin-top: -250px;
  padding-top: 450px;
  padding-bottom: 350px;
}
.cover-row{
  background: url('../photos/cover-row.png') rgba(0, 0, 0, 0);
  background-position: top;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  background-blend-mode: multiply;
  padding-top: 270px;
  padding-bottom: 270px;
}
.bar-box{
  padding: 65px;
  background: var(--primary-navy);
  position: relative;
  margin-left: -240px;
  color: var(--white);
}
.fast-food{  background: url('../photos/rapos-fast-food.jpg'), linear-gradient(rgba(0, 0, 0, 0.231), rgba(0, 0, 0, 0.584)) ;
  background-attachment: scroll;
  background-position:center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  padding-top: 150px;
  padding-bottom: 150px;
  text-align: center;
  justify-content:center !important;
  align-items:center  !important;
}
.padding-container{
  padding: 50px 150px 50px 150px;
}
/*rooms.html*/
/* Page Hero Sections */
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  margin-top: -250px;
  padding-top: 250px;
  z-index: 1;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}
.hero-breadcrumb {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero-breadcrumb a {
  color: #C6A75E;
  text-decoration: none;
  transition: color 0.3s ease;
}
.hero-breadcrumb a:hover {
  color: #D8C48A;
}
.hero-breadcrumb span {
  margin: 0 12px;
  color: rgba(255, 255, 255, 0.5);
}
.hero-content h1 {
  font-family: 'Marcellus', serif;
  font-size: 56px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 2px;
  margin-bottom: 24px;
  line-height: 1.2;
}
.hero-content p {
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}
/* Individual Page Backgrounds */
.hero-rooms {
  background-image: url('../images/photos/jakuz/P1234291.JPG');
}
.hero-room-details {
  background-image: url('../images/827707438.jpg');
}
.hero-about {
  background-image: url('https://lh3.googleusercontent.com/gps-cs-s/AHVAwepEAfACrjlzO5n2KGX4UNYVuldgbNhRPuurcUIknS6m6dceNwQ8jzGtvTFW5VePDN8xc14mR6qw6eXp_y-cTXxX3YHfE1FyTx9psTTH6rtuHCutpRMxQ5BM_OdDCVVr3OQTU-53iQ=s1360-w1360-h1020-rw');
}
.include-bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.hero-amenities {
  background-image: url('../images/photos/a3/P1234271.JPG');
}
.hero-experiences {
  background-image: url('../images/827710340.jpg');
}
.hero-gallery {
  background-image: url('../images/827710214.jpg');
}
.hero-contact {
  background-image: url('../images/827710189.jpg');
}
/* Responsive Hero */
@media (max-width: 992px) {
  .page-hero {
    min-height: 55vh;
  }
  .hero-content h1 {
    font-size: 42px;
  }
  .hero-content p {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .page-hero {
    min-height: 50vh;
  }
  .hero-content h1 {
    font-size: 32px;
    letter-spacing: 1px;
  }
  .hero-content p {
    font-size: 15px;
  }
  .hero-breadcrumb {
    font-size: 11px;
  }
}
.room-info{
  padding: 100px;
}
/*contact.html*/
.contact-bg{
  background: url('../photos/rapos-contact.jpg') rgba(0, 0, 0, 0.55);
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  background-blend-mode: multiply;
  position: relative;
  z-index: -1;
  margin-top: -250px;
  padding-top: 450px;
  padding-bottom: 350px;
}
form {
  padding: 80px !important;
  background: var(--primary-navy);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
label {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
}
input, textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 16px;
  box-sizing: border-box;
  background: var(--secondary-navy);
  border: 1px solid var(--champagne-gold);
  color: var(--white) !important;
}
.contact-button {
  background-color: var(--champagne-gold) !important;
  color: var(--white);
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  width: 100%;
}
.contact-button:hover {
  background-color: var(--light-gold) !important;
  transition: 0.3s ease-in-out;
}
.insta-title{
  position: relative;
  margin-top: -60px;
}.underline-button {
  display: inline-block;
  text-decoration: none;
  position: relative;
  color: var(--text-dark); /* Change color as needed */
}
.underline-button::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: var(--champagne-gold); /* Change color as needed */
  transition: opacity 0.3s ease-in-out;
  opacity: 1; /* Underline visible by default */
}
.underline-button:hover::after {
  opacity: 0; /* Underline disappears on hover */
  transition: opacity 0.3s ease-in-out;
}
@media(max-width:1000px){
  .padding-container{
    padding: 20px;
  }
  .swiper {
    height: 70vh;
  }
  .slide-caption h1,
  .slide-caption h2 {
    font-size: 44px;
  }
  .slide-caption p {
    font-size: 15px;
  }
  form{
    padding: 30px !important;
  }
  .room-info{
    padding: 50px 20px 50px 20px;
  }
  .bar-box{
    padding: 65px;
    background: var(--primary-navy);
    position: relative;
    margin-top: -420px;
    margin-left: 0px;
    color: var(--white);
  }
  .title1{
    font-size: 48px;
  }
  .room-link{
    text-align: left !important;
  }
  .copyright{
    display: flex;
    justify-content: center;
    text-align: center ;
    align-items:center;
  }
  .footer-links {
    display: flex;
    font-family: Jost, sans-serif;
    font-size: 18px;
    padding: 0px 30px 0px 30px;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-evenly;
    align-items: baseline;
}
  .br-tag{
    display: block !important;
  }
  /* Mobile Navbar Visibility */
  .nav-hidden {
    display: block !important;
  }
  .nav-hidden1 {
    display: none !important;
  }
  .footer-title{
  font-size: 24px !important;
  }
  .hr-line{
    display: none;
  }
  .navbar-brand img {
    width: 170px;
}
  .navbar-nav {
    align-items: start ;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .title{
    font-size: 32px !important;
  }
  .top-bar{
    display: none;
  }
  header {
    top: 0;
  }
  #navigation {
    padding: 15px 0;
    height: auto;
  }
  body.scrolled {
    padding-top: 0;
  }
  body.scrolled header {
    padding-top: 0;
  }
  .slide-caption {
    padding: 0 20px;
  }
  .slide-caption h6 {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 15px;
  }
  .slide-caption h1,
  .slide-caption h2 {
    font-size: 36px;
    letter-spacing: 1px;
    line-height: 1.4;
    margin-bottom: 20px;
  }
  .slide-caption p {
    font-size: 14px;
    margin-bottom: 28px;
  }
  .button1 {
    padding: 13px 32px;
    font-size: 12px;
  }
}
.languages{
  position: fixed;
  top: 10px;
right: 10px;
z-index: 1000;
}
/*Animations*/
.fadeinleft {
  opacity:0;
  transform: translateX(200px);
  transition: all 1.3s ease-out;
}
.fadeinright{
  opacity: 0;
  transform: translateX(-200px);
  transition: all 0.8s ease-out;
}
.fadeindown{
  opacity: 0;
  transform: translateY(-100px);
  transition: all 1.2s ease-out;
}
.fadeinup{
  opacity: 0;
  transform: translateY(100px);
  transition: all 1.2s ease-out;
}
.fade-in{
  opacity:0;
  transition: all 1.3s ease-in;
}
.active-left,.active,.active-right,.active-down,.active-up{
  opacity:1;
  transform: translateX(0);
  transform: translateY(0);
}
.fadein{
opacity: 0;
}
/* Legal Modals */
.modal {
  z-index: 10000 !important;
}
.modal-backdrop {
  z-index: 9999 !important;
}
.modal-content {
  background: #ffffff !important;
  border: none;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.modal-header {
  border-bottom: 1px solid #e0e0e0;
  padding: 24px 32px;
  background: #ffffff !important;
}
.modal-title {
  font-family: 'Marcellus', serif;
  font-size: 26px;
  color: #1C1C1C !important;
  font-weight: 400;
}
.modal-body {
  padding: 32px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #2c2c2c !important;
  background: #ffffff !important;
}
.modal-body h5 {
  font-family: 'Jost', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #1C1C1C !important;
  margin-top: 24px;
  margin-bottom: 10px;
}
.modal-body p {
  margin-bottom: 14px;
  color: #4a4a4a !important;
}
.modal-body strong {
  color: #C6A75E;
  font-weight: 600;
}
.btn-close {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.btn-close:hover {
  opacity: 0.8;
}
.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.6);
}
/* ============================================
   TOPBAR & LANGUAGE DROPDOWN STYLES (GLOBAL)
   ============================================ */

/* Topbar Main Container */
section.top-bar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 9999 !important;
  width: 100% !important;
  background: rgba(31, 42, 68, 0.95) !important;
  padding: 8px;
  transition: all 0.35s ease !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  overflow: visible !important;
}

.top-bar .container {
  overflow: visible !important;
  display: flex !important;
}

.top-bar .row {
  overflow: visible !important;
  display: flex !important;
  width: 100%;
}

.top-bar .col-lg-3,
.top-bar .col-lg-9 {
  display: flex !important;
  flex-wrap: wrap;
}

.top-bar p {
  margin: 0;
  line-height: 1.2;
  display: inline-block !important;
  visibility: visible !important;
}

.top-bar a {
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex !important;
  align-items: center !important;
}

.top-bar a:hover p {
  color: var(--champagne-gold) !important;
}

.top-bar i {
  display: inline-block !important;
  visibility: visible !important;
}

/* Language Dropdown */
.top-bar .dropdown {
  position: relative !important;
}

.top-bar .dropdown-menu {
  position: absolute !important;
  z-index: 99999 !important;
}

.dropdown-item:hover {
  background-color: rgba(198, 167, 94, 0.8) !important;
  color: #ffffff !important;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: #C6A75E !important;
  color: #ffffff !important;
}

.dropdown-toggle::after {
  margin-left: 5px;
}

/* Hide topbar on scroll */
body.scrolled .top-bar {
  transform: translateY(-100%) !important;
  opacity: 0 !important;
}

body.scrolled .top-bar .dropdown-menu {
  display: none !important;
}

/* Hide topbar when offcanvas menu is open */
body.offcanvas-open .top-bar,
body.offcanvas-open .hr-line {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* HR Lines */
.hr-line {
  position: fixed !important;
  z-index: 9998 !important;
  width: 100% !important;
  left: 0 !important;
  transition: all 0.35s ease !important;
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0;
}

.hr-line:first-of-type {
  top: 51px !important;
}

.hr-line:nth-of-type(2) {
  top: 52px !important;
}

/* Hide hr-lines on scroll */
body.scrolled .hr-line {
  transform: translateY(-100%) !important;
  opacity: 0 !important;
}

/* Navigation Bar */
#navigation {
  position: fixed !important;
  top: 54px !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 9997 !important;
  background: transparent !important;
  transition: all 0.35s ease !important;
}

/* Navbar on scroll (sticky) */
#navigation.sticky {
  top: 0 !important;
  background: rgba(31, 42, 68, 0.95) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  z-index: 10000 !important;
}

/* Add padding to body to prevent content from being hidden */
body {
  padding-top: 130px !important;
}
/* ============================================
   MOBILE RESPONSIVE STYLES FOR TOPBAR
   ============================================ */
@media (max-width: 992px) {
  .top-bar {
    padding: 6px 0;
    display: block !important;
  }
  .top-bar .container,
  .top-bar .row {
    display: flex !important;
  }
  .top-bar .col-lg-3,
  .top-bar .col-lg-9 {
    font-size: 11px;
    flex: 1;
  }
  .top-bar .col-lg-3 {
    max-width: 45%;
  }
  .top-bar .col-lg-9 {
    max-width: 55%;
    gap: 10px !important;
  }
  .top-bar p {
    font-size: 11px !important;
  }
  .top-bar i {
    font-size: 12px !important;
  }
  body {
    padding-top: 120px !important;
  }
}
@media (max-width: 768px) {
  .top-bar {
    display: block !important;
  }
  .top-bar .container,
  .top-bar .row {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
  }
  .top-bar .col-lg-3,
  .top-bar .col-lg-9 {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
  }
  .top-bar .col-lg-9 {
    gap: 15px !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
  }
  .top-bar .d-flex.align-items-center {
    margin-bottom: 0;
  }
  
  .top-bar .dropdown {
    display: flex !important;
    justify-content: center !important;
  }
  
  .top-bar .dropdown-toggle {
    align-items: center !important;
    justify-content: center !important;
  }
  
  body {
    padding-top: 110px !important;
  }
}
@media (max-width: 576px) {
  section.top-bar {
    padding: 8px 0 !important;
    display: block !important;
  }
  .top-bar .container {
    padding: 0 10px;
    display: flex !important;
  }
  .top-bar .row {
    flex-direction: column !important;
    gap: 10px !important;
    text-align: center;
    display: flex !important;
    width: 100%;
  }
  .top-bar .col-lg-3,
  .top-bar .col-lg-9 {
    width: 100% !important;
    max-width: 100% !important;
    justify-content: center !important;
    flex: none !important;
    display: flex !important;
  }
  .top-bar .col-lg-9 {
    flex-wrap: wrap !important;
    gap: 15px !important;
  }
  .top-bar a {
    display: flex !important;
  }
  .top-bar p {
    font-size: 10px !important;
    display: block !important;
  }
  .top-bar i {
    font-size: 11px !important;
    margin-right: 5px !important;
    display: inline-block !important;
  }
  .top-bar .dropdown-toggle {
    font-size: 11px !important;
    padding: 4px 12px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .top-bar .dropdown {
    display: flex !important;
    justify-content: center !important;
  }
  .hr-line:first-of-type {
    top: 85px !important;
  }
  .hr-line:nth-of-type(2) {
    top: 86px !important;
  }
  #navigation {
    top: 88px !important;
  }
  body {
    padding-top: 150px !important;
  }
}