/* Fonts  */




html,
body {
  width: 100%;
  overflow-x: hidden;
 
}

/* colours  */

:root {
  --primary: #C79C56;
  --secondary: #070707;
  --ternery:#F9F9F9;
  --prim-font: #636363;
  
}

/* Basic css */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
}
h1, h2, h3, h4, h5, h6{
  font-family: "Gilda Display", serif;
  color:var(--secondary);
}
p {
  
  line-height: 1.7rem;
  font-size: 0.9rem;
  /*color: var(--prim-font);*/
  
}
a{
  text-decoration: none!important;
}

h1{
  font-size: calc(3.5rem + 0.5vw);
}
h2{
  font-size: calc(3rem + 0.5vw);
}
h3{
  font-size: calc(2.7rem + 0.5vw);
}
h4{
  font-size: calc(2.3rem + 0.5vw);
}
h5{
  font-size: calc(2rem + 0.5vw);
}
h5{
  font-size: calc(1.6rem + 0.5vw);
}

.home .top-header {
      width: 100%;
      padding: 10px 10px;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 999;
      transition: all 0.3s ease;
      background-color: transparent;
    }

.top-header.scrolled {
      background-color: #858585;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      padding: 5px 20px;
      position:fixed;
    }
    .top-header {
      width: 100%;
      padding: 10px 10px;
      position: relative;
      top: 0;
      left: 0;
      z-index: 999;
      transition: all 0.3s ease;
      background-color: #858585;
    }








h2 .k-char {
       font-size: 6.5rem;
    /* color: #ff0000; */
    display: inline-block;
    transform: translateY(0px);
    margin-right: 0px;
    text-transform: lowercase;
    font-weight: 100;
}




/* Style for toggle button background */
.navbar-toggler {
  background-color: #000; /* black background */
  border: none;
  padding: 0.5rem 0.75rem;
}

/* White hamburger icon */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}








/* Side menu (mobile only) */
.side-menu {
  position: fixed;
  top: 0;
  left: -300px;
  width: 280px;
  height: 100%;
  background: #111;
  z-index: 1050;
  transition: 0.3s ease-in-out;
  padding: 2rem 1rem;
  overflow-y: auto;
}

.side-menu.active {
  left: 0;
}

.side-menu .navbar-nav {
  flex-direction: column;
}

.side-menu .navbar-nav a {
  color: #fff;
  padding: 0.5rem 0;
  display: block;
  text-decoration: none;
}

/* Overlay behind menu */
#menuOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  z-index: 1040;
}

#menuOverlay.active {
  display: block;
}

/* Close button */
.close-btn {
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}

/* Hamburger icon styles */
.navbar-toggler {
  background-color: #000;
  border: none;
  padding: 0.5rem 0.75rem;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='white' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}







.home .navbar-brand img {
      height: 100px;
      transition: all 0.3s ease;
    }


.navbar-brand img {
      height: 70px;
      transition: all 0.3s ease;
    }

.top-header.scrolled .navbar-brand img {
      height: 65px;
    }

.navbar-nav {
      flex-direction: row;
      margin: 0 auto;
    }

.navbar-nav .nav-link {
      padding: 8px 18px;
      color:#fff;
      text-transform: uppercase;
    }

.social-icons a {
      display: inline-block;
      width: 38px;
      height: 38px;
      line-height: 35px;
      text-align: center;
      border:1px solid #eee;
      color: #333;
      margin-left: 10px;
      border-radius: 0;
      font-size: 16px;
      color: #fff;
      transition: all 0.3s ease-in-out;
    }

.book-now {
      margin-right: 10px;
    }
.banner-sec{
  width: 100%;
  height: 100vh;
  position: relative;
}



.banner-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 100vh; /* adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* black overlay with 40% opacity */
  z-index: 1;
}

.banner-cont-bx {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}



.carousel-fade .carousel-item {
      opacity: 0;
      transition: opacity 1s ease-in-out;
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .carousel-fade .carousel-item.active {
      opacity: 1;
      position: relative;
      z-index: 1;
    }

    .carousel-inner {
      height: 100vh;
    }

    .carousel-item img {
      object-fit: cover;
      height: 100vh;
      width: 100%;
    }
  .prim-brd{
    padding: 8px 15px;
    display: inline-flex;
    color: var(--secondary);
    border: 1px solid var(--primary);
    background-color: transparent;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    
  }
  .prim-btn{
    padding: 8px 15px;
    display: inline-flex;
    color: #fff;
    background-color: var(--primary);
    font-weight: 500;
    transition: all 0.3s ease-in-out;
  }
    .prim-btn:hover{
      color: #fff;
    }
  .banner-cont-bx{
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: 100px;
    display: inline-flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    z-index: 99;
    padding: 1rem;
    width: 90%;
    max-width: 90%;
    
  }
.star img{
  width: 100px!important;
  height: auto!important;
}
.banner-cont-bx p, .banner-cont-bx h2{
  color: #fff;
}
.banner-cont-bx h2{
      text-transform: uppercase;
}
.abt-sec{
  width: 100%;
  height: auto;
  padding: 50px 40px;
  text-align: center;
}
.cta-sec{
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-sec a{
  margin: 5px 8px;
}
.sub-tit{
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.1rem;
}
.hotel-star img{
  width: 120px;
}
.owl-carousel-gall-wr{
  position:relative;
}
.gal-left-nav{
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 100;
  cursor: pointer;
}
.gal-right-nav{
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 100;
  cursor: pointer;
}
.gal-left-nav img, .gal-right-nav img{
  width: 60px;
}
.amenities{
  width:100%;
  height:auto;
  padding: 50px;
  background-color: var(--ternery);
  margin-top: 40px;
}
.amin-bx{
  width:100%;
  height:auto;
  min-height: 410px;
  padding:1rem;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: #fff;
  box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
  text-align: center;
  min-height:100%;
}
.amin-img-bx{
  width:100%;
  height:200px;
  border-top-left-radius: 20px;
  overflow: hidden;
}
.amin-img-bx img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.amenities h4{
  text-align: center;
}
.amenities .row{
  margin-top: 30px;
}
.amin-bx h6{
  margin-top: 10px;
  font-size: 1.8rem;
}
.room-desc{
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.room-desc-right{
  background-color: #F2F2F2;
  padding:3rem;
  width: 50%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.room-desc-left{
  width: 50%;
  height: auto;
}
.room-desc-left img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ami-mid-head{
  border: 1px solid var(--primary);
  border-radius: 30px;
  color: var(--primary);
  padding: 0.3rem 1.5rem;
  font-family: "Gilda Display", serif;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.ami-mid-head2{
  border: 1px solid #fff;
  border-radius: 30px;
  color: #fff;
  padding: 0.3rem 1.5rem;
  font-family: "Gilda Display", serif;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.b-list{
  list-style: none;
  display: inline-flex;
  flex-wrap: wrap;
}
.b-list li{
  margin: 5px 13px;
  padding-left: 3%;
  color: var(--prim-font);
  position: relative;
}
.b-list li::before{
  position:absolute;
  top:0px;
  left:-10px;
  content:url('../img/check_circle.svg');
  z-index: 99;
}
.gold-sec{
  background-color: var(--primary);
}
.gold-sec h5{
  color: #fff;
}
.gold-sec p{
  color:#fff;
}
.b-list2{
  list-style: none;
  display: inline-flex;
  flex-wrap: wrap;
}
.b-list2 li{
  margin: 5px 13px;
  padding-left: 3%;
  color: var(--prim-font);
  position: relative;
  color:#ffff!important;
}
.b-list2 li::before{
  position:absolute;
  top:0px;
  left:-10px;
  content:url('../img/check_circle-white.svg');
  z-index: 99;
}
.facility-sec{
  width: 100%;
  height: auto;
  padding: 50px;
  position: relative;
}
.pattern{
  position: absolute;
  top:0px;
  left:0px;
  z-index: 0;
  max-width: 100%;
}
.facility-sec h4 span{
  color: var(--primary);
  font-size: calc(2.3rem + 0.5vw);
  font-family: "Gilda Display", serif;
}
.fac-bx{
  width: 100%;
  height: auto;
  position: relative;
}
.fac-titbx{
  width: 90%;
  min-height: 60px;
  padding: 0.5rem;
  background-color: rgba(255, 255, 255, 0.9);
  position: absolute;
  bottom:-5px;
  left: 50%;
  z-index: 990;
  text-transform: uppercase;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Gilda Display", serif;
  color: var(--primary);
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.2rem;
}
.cmt{
  margin-top: 60px;
}
.fac-bx img{
  width:100%;
  height: 100%;
  height: auto;
}
.book-sec{
  width: 100%;
  height: auto;
  padding: 50px;
  background-image: url('../img/pool.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display:flex;
  align-items: center;
  justify-content: flex-end;  
}
  .booking-form {
    max-width: 400px;
    background: #fff;
    padding: 30px;
    border-radius: 0px;
  }
  .booking-form .form-control {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #ccc;
    box-shadow: none;
  }
  .booking-form .form-group {
    position: relative;
  }
  .booking-form .form-group i {
    position: absolute;
    right: 10px;
    top: 10px;
    color: #999;
  }
  .booking-form .btn {
    background-color: #c4a060;
    color: white;
    border-radius: 0;
    font-weight: 500;
    text-transform: uppercase;
  }
  .booking-form .text-muted2{
    color: var(--primary)!important;
    font-weight: 600;
  }
  .ft-logo-bx{
    width: 100%;
    height: 100%;
    background-color: #F9F9F9;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
   
  }
  .ft-sm-bx{
     margin-top: 30px;
  }
.ft-sm-bx a{
  margin: 5px 8px;
}
  .ft-link-sec{
    padding: 50px 50px 30px 50px;
    background-color: #000205;
  }
  .ft-link-wr h6{
    color: #fff;
    text-transform: uppercase;
    font-size: 1.3rem;
  }
  .ft-link-wr ul{
      list-style: none;
    }
  .ft-link-wr ul li{
    margin: 8px 0px;
  }
  .ft-link-wr ul li a{
     color:#ACB7C5;
     font-size: 0.9rem;
  }
   .ft-link-wr p{
     color:#ACB7C5;
     font-size: 0.9rem;
    }
.ft-logo-img{
  width: 20%;
}
.sing-line{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
}
.sing-line .ft-ico-bx{
  margin-right: 2%;
}
.cp-bx{
  width:100%;
  height: auto;
  text-align: center;
  padding: 0.5rem 1rem;
   color:#ACB7C5;
   font-size: 0.9rem;
  background-color: #00050a;
}


#menuToggle{
    display:none!important;
}


.gal-sec .owl-carousel .owl-item img{
    height: 450px;
    object-fit: cover;
}


/*media query*/
@media screen and (max-width: 1024px) {
    .room-desc{
        display:inline;
    }
    .room-desc-right{
        width:100%;
    }
    .room-desc-left{
          width:100%;
    }
    
    #menuToggle {
    display: block!important;
}
}



@media (max-width: 1024px) {
  .top-header .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0.5rem 1rem;
  }

  .navbar-toggler {
    order: 1;
    margin-right: auto;
  }

  .navbar-brand {
    order: 2;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }

  .top-header .ml-auto {
    order: 3;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .top-header .book-now {
    padding: 0.4rem 0.75rem;
    font-size: 0.875rem;
  }

  .top-header .social-icons a {
    color: #fff;
    font-size: 1rem;
  }
  #navbarMenu{
      display:none!important;
  }
}
@media (max-width: 768px) {
    .social-icons{
        display:none;
    }
    .book-now {
     margin-right: 0px; 
}
.col-12{
    margin:10px 0px;
    
}
}
@media (max-width: 600px) {
.b-list2 li::before{
    left: -20px;
}
.b-list li::before{
    left: -20px;
}

}


