* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Crimson Pro', serif;
}

html,body {
  background-color: #2B1103 !important;
  color: #DCC69C;
  font-family: 'Crimson Pro', serif;
  margin: 0;
  padding: 0;
}

.page-content{
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    box-sizing: border-box;
}

/* PRIMARY BUTTON */
.btn-primary-custom{
  background-color: rgb(220, 198, 156);
  color: rgb(43, 17, 3);
  border: none;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover{
  background-color: rgb(230, 210, 175);
  color: rgb(43, 17, 3);
}

.btn-primary-custom:active{
  background-color: rgb(200, 178, 136) !important;
  color: rgb(43, 17, 3) !important;
}

.btn-primary-custom:focus{
  box-shadow: 0 0 0 0.25rem rgba(220, 198, 156, 0.35);
}

/* DEFAULT HEADER = HOME PAGE */
.main-header{
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  background: #2B1103;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-left: 50px;
  padding-right: 50px;
}

body:has(.transparent-header) .main-header{
  position: sticky;
  background: #2b1103;
  transition: all 0.4s ease;
}

/* AFTER SCROLL */
body:has(.transparent-header)  .main-header.scrolled{
  background: #2B1103;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.main-header .container-fluid{
  position:relative;
  z-index:1001;
}

.logo-side{
  padding:0px 15px;
  margin-right: 30px;
}

.logo-link{
  text-decoration:none;
}

.logo-link img{
  height:auto;
  width:110px;
  object-fit:contain;
}

.header-right{
  background:transparent !important;
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-evenly;
  height: 50px;
  font-size:16px;
  font-weight:500;
  letter-spacing:0.5px;
  color:#f3d7a0;
  background:transparent !important;
}

.topbar a{
  color:#E1D1B2;
  text-decoration:none;
  transition:0.3s ease;
}

.topbar span {
  font-family: "Great Vibes", Sans-serif;
}

.header-line{
  border:none;
  border-top:2px solid rgba(255,255,255,0.30);
  margin:0;
}

.main-header nav{
  background:transparent !important;
  display:flex;
  align-items:center;
  justify-content:space-evenly;
  padding:22px 0;
}

.main-header nav a{
  position:relative;
  color:#DCC696;
  text-decoration:none;
  font-size:19px;
  font-weight:600;
  letter-spacing:0.5px;
  transition:0.3s ease;
}

.main-header nav a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-7px;
  width:0%;
  height:1px;
  background:#d8b273;
  transition:0.4s ease;
}

.main-header nav a:hover::after{
  width:100%;
}

.main-header nav a:hover{
  color:#f3d7a0;
}

.book-btn {
    padding: 10px 20px;
    background-color: #dcc69c;
    color: #2b1103;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 18px;
    font-weight: 400;
}

.hero{
  position:relative;
  width:100%;
  height:100vh;
  overflow:hidden;
}

.hero-image{
  width:100%;
  object-fit:cover;
}


.hero-content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  text-align:center;
  color:white;
}

.section-bg{
  background:#2B1103;
  color:#DCC69C;
  padding-bottom:40px;
}

@media(max-width:992px){
  .logo-side{
    min-width:160px;
    padding:15px 10px;
  }
  .logo-link img{
    height:60px;
  }
  .topbar{
    display:none;
  }
  .main-header nav{
    flex-wrap:wrap;
    gap:18px;
    padding:18px 10px;
  }
  .main-header nav a{
    font-size:14px;
  }
  .book-btn{
    padding:12px 20px;
    font-size:14px;
  }
}

@media(max-width:768px){
  .main-header .container-fluid > div{
    flex-direction:column;
    align-items:center;
  }
  .logo-side{
    min-width:auto;
    padding:10px 0;
  }
  .logo-link img{
    height:60px;
  }
  .header-right{
    width:100%;
  }
  .main-header nav{
    flex-wrap:wrap;
    justify-content:center;
    gap:14px;
    padding:14px 10px;
  }
  .main-header nav a{
    font-size:13px;
  }
  .book-btn{
    margin:10px 0;
    padding:10px 16px;
    font-size:13px;
  }
}

/* =========================
   HERO SLIDER
========================= */
.hero-section{
  position: relative;
}
/* MAIN CAROUSEL */
.hero-carousel{
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hero-image{
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
@media(max-width:992px) {
  .hero-image {
    height: auto;
  }

  .hero-carousel {
    height: auto;
  }
}
@media(max-width:768px) {
  .hero-image {
    height: auto;
  }

  .hero-carousel {
    height: auto;
  }
}

.hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.carousel-inner,
.carousel-item{
  height: 100%;
}

.carousel-indicators{
  bottom: 20px;
  z-index: 5;
}

.carousel-indicators button{
  width: 25px !important;
  height: 25px !important;
    padding: 6px;  
  border: 1px solid transparent !important;
  background-color: transparent !important;
  background-image: url("../assets/images/Layer_x0020_1-1-200x300.avif") !important;
  background-size: 50% !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  opacity: 0.6;
  margin: 0 6px !important;
  transition: all 0.3s ease;
}
.carousel-indicators button:hover{
  border: 1px solid #DCC69C !important;
  opacity: 1;
}


.carousel-indicators .active{
  opacity: 1;
  border: 1px solid #DCC69C !important;
}

@media(max-width:768px){
  .carousel-indicators button{
    width: 18px !important;
    height: 18px !important;
  }
}

.menu-toggle {
  width: 35px;
  margin-left: 20px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  height: 2px;
  background: #DCC69C;
  width: 100%;
  display: block;
}

.side-menu {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  height: 100%;
  background: #f9f7f1;
  z-index: 5000;
  transition: 0.4s ease;
  padding: 30px;
  overflow-y: auto;
}

.side-menu.active {
  right: 0;
}

.close-btn {
  color: #DCC69C;
  font-size: 40px;
  cursor: pointer;
  text-align: right;
}

.menu-image img {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 30px;
}

.menu-content img {
  display: block;
  margin: 0 auto; 
  height: 300px;    
  width: auto;
}

.menu-content p {
  margin-top: 20px;
  color: #DCC69C;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}

.mobile-menu-links {
  display: none;
  margin-top: 30px;
}

@media (max-width: 1200px) {
  .main-header{
    padding:0;
    min-height:auto;
  }

  .main-header .container-fluid > div{
    display:flex !important;
    flex-direction:row !important;
    justify-content:space-between !important;
    align-items:center !important;
    min-height:90px;
    padding:0 20px;
  }


.topbar,.main-header nav, .hotel-name{
    display:none !important;
  }

  .header-right{
    display:flex !important;
    align-items:center;
    justify-content:flex-end;
    width:auto;
    background:transparent !important;
  }

  .logo-side{
    min-width:auto;
    padding:0;
    display:flex;
    align-items:center;
  }

  .logo-link{
    display:flex;
    align-items:center;
  }



  .logo-link img{
    height:60px;
    width:auto;
    object-fit:contain;
  }

  .menu-toggle{
    display:flex !important;
    flex-direction:column;
    justify-content:center;
    width:34px;
    gap:6px;
    cursor:pointer;
    margin-left:0;
  }

  .menu-toggle span{
    display:block;
    width:100%;
    height:2px;
    background:#DCC69C;
  }

.side-menu{
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  max-width: 100%;
  padding: 25px;
  background: rgb(43, 17, 3);
  background-image: url("../assets-new/assets/footer-background-image.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 9999;
  overflow-y: auto;
  transition: right 0.4s ease;
}

.side-menu.active{
  right: 0;
}
  .side-menu::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
}

.side-menu > *{
  position:relative;
  z-index:2;
}

  .mobile-menu-links{
    display:block;
  }

  .menu-content{
    display:none;
  }

  .menu-image{
    display:none;
  }

/*.room-item {
       margin: 40px auto 0 auto;
}*/

 .mobile-menu-links a{
  display:block;
  padding:10px 0;
  color:#c5ae83;
  text-decoration:none;
  font-size:40px;
  font-weight:800;
  text-align:center;
  border:none !important;
  box-shadow:none !important;
  background:transparent;
  transition:color 0.3s ease;
}

/* REMOVE LINE */
.mobile-menu-links a::after,
.mobile-menu-links a::before{
  display:none !important;
  content:none !important;
}

/* HOVER */
.mobile-menu-links a:hover{
  color:#c89b5e;
  padding-left:0;
}
  .mobile-menu-links a:hover{
    color:#c89b5e;
  }

  .close-btn{
    color:#6b4a12;
    font-size:38px;
    text-align:right;
    cursor:pointer;
  }
}

@media (max-width: 576px){
  .logo-link img{
    height:60px;
  }
  .mobile-menu-links a{
    font-size:30px;
  }

}


.about-header{
  position: relative !important;
  background: #2B1103 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: none !important;
}

.about-header.scrolled{
  background: #2B1103 !important;
}

.about-hero{
  width: 100%;
  overflow: hidden;
}
.about-hero-image{
  width: 100%;
  height: auto;

  display: block;
  object-fit: cover;
}
@media(max-width:992px){
  .about-hero-image{
    height: auto;
  }
}

@media(max-width:768px){
  .about-hero-image{
    height: auto;
  }
}

.main-heading {
  font-size: 46px;
  font-weight: 600;
}

/*  HERITAGE SECTION */


.heritage-capital{
  color:#dcc69c;

  text-align:center;

  font-size:12px;
  font-weight:600;
  text-transform: uppercase;
  line-height: 1.44em;
  letter-spacing: .57em;
  font-family: "Roboto", Sans-serif ;
}

.heritage-title{
  color:#DCC69C;
  font-size:30px;
  font-weight:600;
  line-height:1.2em;
  margin-bottom: 20px;
}

.heritage-para {
    font-size: 18px;
    text-align: start;
    color: #e1d1b2;
}


@media(max-width:768px){
  .heritage-title{
    font-size:30px;
  } 
}

.footer-highlight a{
  color:#e1d1b2;

  text-decoration:none;

  transition:0.3s ease;
  font-weight: bolder;
}

/* HOVER */

.footer-highlight a:hover{
  color:#624d25;
}

/* =========================
   AMENITIES SECTION
========================= */

.amenities-section{
  background:#2B1103;
}

/* LINE */

.amenities-line{
  border-color:rgba(220,198,156,0.35);

  margin-bottom:60px;
}

/* HEADING */

.amenities-heading{
  font-size:30px;
  font-weight:700;

  color:#e6d1a8;

  font-family:'Cormorant Garamond', serif;

  margin-bottom:20px;
}

/* ITEM */

.rooms-amenity-item{
  gap:15px;

  margin-bottom:8px;
}

/* ICON */

.rooms-amenity-icon{
  font-size:24px;

  color:#e6d1a8;

  min-width:40px;
}

/* TEXT */

.rooms-amenity-text{
  font-size:18px;

  color:#d0b07a;

  font-family:'Cormorant Garamond', serif;
}

/* =========================
   ROOM SECTION
========================= */

.rooms-section{
  background: #2B1103;
}

/* CARD */

.room-card{
  width: 100%;
}

/* IMAGE */

.room-img{
  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

  transition: 0.4s ease;
}

.rooms-content{
  padding-top: 25px;
}

.rooms-timelines-timeline {
  position: relative;
}

.rooms-timelines-timeline::before {
  content: "";

  position: absolute;

  left: 50%;

  top: 0;

  transform: translateX(-50%);

  width: 1px;

  height: 100%;

  background: #DCC69C;

  z-index: 1;

}

.rooms-timeline-item {

  max-width: 1000px;

  margin: 100px auto 0 auto;

  position: relative;

  z-index: 2;

}

.rooms-timeline-img {

  width: 100%;

  object-fit: cover;

}

.timeline-col {

  position: relative;

  min-height: auto;

}

.timeline-dot {

  position: absolute;

  left: 50%;

  top: 50%;

  transform: translate(-50%, -50%);

  width: 24px;

  height: 24px;

  border-radius: 50%;

  background: #DCC69C;

  z-index: 3;

}

.rooms-timeline-content a {
  text-decoration: none;
  color: #DCC69C;
}



@media (max-width: 767.98px) {

  .rooms-timeline-item {
    margin-bottom: 50px;
  }

  .timeline-col {
    display: none;
  }

  .rooms-timeline-content {
    text-align: center !important;
    margin-top: 10px;
  }

  .rooms-timeline-content p {
    text-align: center !important;
    margin: 0 auto !important;
  }

  .rooms-timeline-img {
    width: 100%;
    height: auto;
  }

}

/* =========================
   SPECIAL CARDS
========================= */


.special-card{
  background: #2B1103 ;

  border: 1px solid rgba(220,198,156,0.2);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  transition: all 0.3s ease;
}

.special-card h3{
  color: #DCC69C;

  font-size: 24px;

  line-height: 1.6;

  margin: 0;
}

/* TABLET */

@media(max-width:992px){

  .special-card{
    min-height: 220px;
  }

  .special-card h3{
    font-size: 20px;
  }
}

/* MOBILE */

@media(max-width:768px){

  .special-card{
    min-height: auto;

    padding: 28px 22px;
  }

  .special-card h3{
    font-size: 18px;
  }
}

.booking-section {

  background-color: #2B1103;

  color: #DCC69C;

}



.booking-text h2 {

  font-size: 42px;

  margin-bottom: 20px;

}



.booking-text p {

  font-size: 20px;

  font-weight: 400;

}



/* ICON ROW */

.booking-icons {

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 10px;

  flex-wrap: nowrap;

}



/* EACH ITEM */

.booking-item {

  text-align: center;

  flex: 1;

}



/* ICON */

.booking-item img {

  width: 50px;

  height: 50px;

  object-fit: contain;

  margin-bottom: 10px;

  transition: 0.3s;

}



/* LABEL */

.booking-item p {

  font-size: 16px;

  margin: 0;

}



/* HOVER EFFECT */

.booking-item:hover img {

  transform: scale(1.1);

}



/* RESPONSIVE */

@media (max-width: 768px) {

  .booking-icons {

    margin-top: 10px;
    flex-wrap: wrap;

    justify-content: center;

  }



  .booking-item {

    flex: 0 0 45%;

    margin-bottom: 20px;

  }

}


/* OUTER BOX */
.heritage-box{
    background:#f5f5f5;
    min-height:600px;

    /* more white space on left */
    padding:0 0 0 60px;

    overflow:hidden;
}

/* IMAGE COLUMN */
.heritage-image-wrapper{
    height:600px;
}

.heritage-img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* CONTENT SIDE */
.heritage-content{
    height:600px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:60px 100px 60px 120px;
}

.heritage-content h1{
    color:#6A4D18;
    font-size:40px;
    font-weight:400;
    line-height:1.2;
    margin-bottom:20px;
}

.heritage-content p{
    color:#6A4D18;
    font-size:18px;
    line-height:1.5;
}

/* TABLET + MOBILE */
/* TABLET ONLY */
@media (min-width: 768px) and (max-width: 991.98px) {

    .heritage-box{
        padding: 0 30px 0 30px;
    }

    .heritage-box .row{
        display: flex;
        flex-direction: column-reverse;
    }

    .heritage-content{
        height: auto;
        padding: 50px 40px;
    }

    .heritage-image-wrapper{
        height: 450px;
        margin-left: 40px;
        margin-right: 40px;
        margin-bottom: 0;
    }

    .heritage-img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
}
/* TABLET */
@media (max-width: 767.98px) {

    .heritage-box{
        padding: 0;
    }

    .heritage-box .row{
        display: flex;
        flex-direction: column-reverse;
    }

    .heritage-content{
        height: auto;
        padding: 30px 20px;
    }

    .heritage-image-wrapper{
        height: 300px;
        margin: 0;
    }

    .heritage-img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .heritage-content h1{
        font-size: 28px;
    }

    .heritage-content p{
        font-size: 14px;
        line-height: 1.5;
    }
}

/* Attraction places */
.attraction-title {
  color: #DCC69C;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.25em;
  margin-top: 30px;
}

.attraction-para {
  color: #dcc69c;
  font-size: 18px;
}

.sub-heading-small {
  font-family: 'Arimo',Sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.66;
  letter-spacing: .4em;
  color: #e1d1b2;
  margin-bottom: 20px;
}

.faq-section {


  margin: 0 auto;

}



/* container */

.faq {

  margin-top: 10px;

}



/* each item */

.faq-item {

  border-bottom: 1px solid rgba(220, 198, 156, 0.4);

  padding: 10px 0;

  cursor: pointer;

}



/* question row */

.faq-question {

  display: flex;

  font-weight: 600;

  justify-content: space-between;

  align-items: center;

  font-size: 20px;

  color: #DCC69C;

  font-family: 'Cormorant Garamond', serif;

  transition: 0.3s;

  letter-spacing: 1.2px;

}



/* arrow */

.faq-icon {

  font-size: 28px;

  transform: rotate(90deg);

  transition: 0.3s;

}



/* answer (hidden by default) */

.faq-answer {

  max-height: 0;

  overflow: hidden;

  transition: max-height 0.4s ease, padding 0.4s ease;

  font-size: 16px;

  color: #DCC69C;

  line-height: 1.6;

}



/* ACTIVE STATE */

.faq-item.active .faq-answer {

  max-height: 200px;

  padding-top: 12px;

}



.faq-item.active .faq-icon {

  transform: rotate(-90deg);

}

@media(max-width:768px) {
  .faq-question {

  font-weight: 500;

  font-size: 15px;

}
.faq-answer {

  font-size: 12px;

  line-height: 1.5;

}
}

/* =========================
   TESTIMONIAL SECTION
========================= */

.testimonials-section{
    background:#2B1103;
    padding:100px 20px;
    overflow:hidden;
}

/* MAIN WRAPPER */

.testimonial-container{
    position:relative;
    max-width:1200px;
    margin:0 auto;
}

/* SLIDER */

.testimonial-slider{
    overflow:hidden;
    width:100%;
    max-width:1000px;
    margin:0 auto;
}

/* TRACK */

.testimonial-track{
    display:flex;
    transition:transform 0.8s ease-in-out;
}

/* EACH SLIDE */

.testimonial-slide{
    min-width:100%;
    flex:0 0 100%;
}

/* CARD */

.testimonial-card{
    text-align:center;
    padding:0 80px;
}

/* REVIEW TEXT */

.testimonial-text{
    color:#DCC69C;
    font-family: 'Roboto',Sans-serif;
    font-size:23.4px;
    line-height:1.5;
    font-style:italic;
    font-weight:400;

    max-width:900px;
    margin:0 auto 40px;
}

/* NAME */

.testimonial-name{
    color:#DCC69C;
    font-family: 'Roboto',Sans-serif;
    font-size:14px;
    font-weight:400;
    margin:0;
}

/* =========================
   ARROWS
========================= */

.testimonial-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);

    background:none;
    border:none;

    color:#DCC69C;
    font-size:60px;
    line-height:1;

    cursor:pointer;
    z-index:10;

    transition:all .3s ease;
}

.testimonial-btn:hover{
    opacity:.7;
    transform:translateY(-50%) scale(.9);
}

#prevBtn{
    left:0;
}

#nextBtn{
    right:0;
}


@media(max-width:767px){

    .testimonials-section{
        padding:80px 15px;
        display: none;
    }
    .testimonial-card{
        padding:0 15px;
    }

    .testimonial-btn{
        font-size:34px;
    }

    #prevBtn{
        left:-5px;
    }

    #nextBtn{
        right:-5px;
    }
}
/* Footer Section */
/* ===================================================
   FOOTER
=================================================== */

.main-footer{
    background:#2B1103;
    color:#DCC69C;
    font-family:'Cormorant Garamond', serif;
}

/* MAIN WIDTH CONTROL */

.footer-wrapper{
    max-width:1700px;
    margin:0 auto;
    padding-left:80px;
    padding-right:80px;
}

/* ===================================================
   TOP SECTION
=================================================== */

.footer-top{
    background-color:#2B1103;
    background-image:url("../assets-new/assets/footer-background-image.webp");
    background-repeat:no-repeat;
    background-position:center bottom;
    background-size:contain;
    padding:180px 0 20px;
}

.footer-container{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:60px;
}

/* LEFT + RIGHT */

.footer-left,
.footer-right{
    flex:1;
}

.footer-left h4{
  font-size: 24px;
  font-weight: 600;
  color: #DCC69C;
  line-height: 1.25em;
}

.footer-left p{
    font-size: 18px;
    text-align: start;
    color: #e1d1b2;
}

.footer-right{
    text-align:right;
}

.footer-right h4 {
  font-size: 20px;
  color: #DCC69C;
}

.footer-right p{
    font-size:14px;
    color: #e1d1b2;
    line-height: 1;
}

/* CENTER LOGO */

.footer-center{
    flex:0.9;
    display:flex;
    justify-content:center;
    align-items:center;
}

.footer-center img{
    width:110%;
    max-width:1000px;
    height:auto;
    margin-bottom: 70px;
}

/* ===================================================
   SOCIAL
=================================================== */

.social-links{
    display:flex;
    gap:10px;
    justify-content:flex-end;
    margin-top:10px;
}

.social-links a{
    width:30px;
    height:30px;
    border:1px solid rgba(220,198,156,.7);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    color:#DCC69C;
    transition:.3s;
}

.social-links a i{
    font-size:16px;
}

.social-links a:hover{
    background:#DCC69C;
    color:#2B1103;
    transform:translateY(-3px);
}

/* ===================================================
   LINES
=================================================== */

.footer-line{
    border:none;
    border-top:1px solid rgba(220,198,156,.25);
    margin:0;
}

/* ===================================================
   LINKS
=================================================== */

.footer-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    padding:40px 0;
}

.footer-links a{
    color: #e1d1b2;
    text-decoration:none;
    font-size:16px;
    padding:0 4px;
}

/* ===================================================
   BOTTOM
=================================================== */

.footer-bottom{
    max-width:1400px;
    margin:0 auto;
    padding:40px 0;
    text-align:center;
}

.footer-bottom h4{
    font-size:17px;
    margin-bottom:25px;
    font-style:italic;
    color: #e1d1b2;
}

.footer-bottom h4 a{
    color:#DCC69C;
    text-decoration:none;
}

.footer-bottom h4 a:hover{
    color:#6b4a12;
}

.footer-bottom p{
    font-size:15px;
    line-height:1.5;
    color:#DCC69C9E;
    font-weight: 400;
}

/* ===================================================
   TABLET
=================================================== */

@media(max-width:992px){

    .footer-wrapper{
        padding-left:25px;
        padding-right:25px;
    }

    .footer-container{
        flex-direction:column;
        align-items:center;
        text-align:center;
        gap: 20px;
    }

    .footer-center{
        order:-1;
    }

    .footer-left {
      text-align:center;
        padding-left: 35px;
        padding-right: 35px;
    }
    

    .footer-right{
        text-align:center;
        padding-left: 20px;
        padding-right: 20px;
    }

    .social-links{
        justify-content:center;
    }

    .footer-center img{
        max-width:350px;
        width: 100%;
    }

    .footer-bottom p{
        font-size:15px;
    }
}

/* ===================================================
   MOBILE
=================================================== */

@media(max-width:767px){

    .footer-wrapper{
        padding-left:15px;
        padding-right:15px;
    }

    .footer-top{
        background-size:contain;
        padding:50px 0 20px;
    }

    .footer-left, .footer-right {
      padding: 0;
    }
    .footer-left p {
      text-align: center;
    }

    .footer-right p{
      font-size: 18px;
    }

    .footer-links a{
        font-size:16px;
    } 

    .footer-bottom p{
        font-size:15px;
        line-height:1.5;
    }
}

.floating-icons{
  position: fixed;

  right: 25px;
  bottom: 25px;

  display: flex;
  flex-direction: column;

  gap: 18px;

  z-index: 1000;
}

/* LINKS */

.floating-icons a{
  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
}

/* IMAGE ICONS */

.floating-icons img{
  width: 50px;

  height: 50px;

  display: block;

  transition: 0.3s ease;

  border-radius: 50%;
  
}

/* WHATSAPP ICON */

.whatsapp-icon{
  width: 50px;
  height: 50px;

  background: #25D366;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.3s ease;
}

.whatsapp-icon i{
  color: #fff;

  font-size: 30px;

  line-height: 1;
}

/* HOVER EFFECT */

.floating-icons a:hover img,
.whatsapp-icon:hover{
  transform: scale(1.08);
}

/* TABLET */

@media(max-width:992px){

  .floating-icons{
    right: 18px;
    bottom: 20px;

    gap: 14px;
  }

  .floating-icons img,
  .whatsapp-icon{
    width: 45px;
    height: 45px;
  }

  .whatsapp-icon i{
    font-size: 26px;
  }
}

/* MOBILE */

@media(max-width:767.98px){

  .floating-icons{
    right: 14px;
    bottom: 62px;

    gap: 12px;
  }

  .rooms-timelines-timeline::before {

    display: none;

  }



  .timeline-col {

    display: none;

  }

  .floating-icons img,
  .whatsapp-icon{
    width: 40px;
    height: 40px;
  }

  .whatsapp-icon i{
    font-size: 22px;
  }
}

/* MOBILE STICKY BOOKING BAR */

.mobile-booking-bar{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;

    background: #2B1103;
    padding: 10px 15px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    z-index: 999999;
    box-shadow: 0 -3px 10px rgba(0,0,0,.25);
}

.booking-text{
    color: #dcc69c;
    font-size: 14px;
    font-weight: 600;
    flex: 1;
}

.mobile-booking-bar .btn-primary-custom{
    width: auto;
    margin: 0;
    flex-shrink: 0;
    white-space: nowrap;
}

/* Hide on tablet and desktop */
@media (min-width: 768px) {
    .mobile-booking-bar{
        display: none !important;
    }
}

/* Only add bottom space on mobile */
@media (max-width: 767px) {
    body{
        padding-bottom: 80px;
    }
}