/********** Template CSS **********/
:root {
    --primary: #a9705c;
    --light: #fdf6f2;
    --dark: #0F172B;
}

@font-face {
  font-family: Mosthat; /* set name */
  src: url(../fonts/Mosthat.otf); /* url of the font */
}
@font-face {
  font-family: Grand Hotel; /* set name */
  src: url(../fonts/GrandHotel-Regular.ttf); /* url of the font */
}
@font-face {
  font-family: Samosa Demo; /* set name */
  src: url(../fonts/SamosaDemoRegular.ttf); /* url of the font */
}
@font-face {
  font-family: Afjani Alana Demo; /* set name */
  src: url(../fonts/AfjaniAlanaDemoRegular.ttf); /* url of the font */
}
@font-face {
  font-family: KASTEL VOIRE; /* set name */
  src: url(../fonts/KASTELVOIRETTF.ttf); /* url of the font */
}
.fw-medium {
    font-weight: 500 !important;
}

.fw-semi-bold {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

body {
    margin: 0;
   font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    color: #5d5d5d;
    background-color: #fdf6f2;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    margin-top: 0;
    margin-bottom: .5rem;
	font-family: "Montserrat", sans-serif;
    /* font-family: "Montserrat", sans-serif; */
    font-weight: 400;
    line-height: 1.2;
    color: #5d5d5d;
}
h1 {
	font-size:2.5rem;
	color:#a9705c;
	font-family: "Afjani Alana Demo";
}
.display-3 {
	font-family: "Montserrat";
}
.display-2 {
        font-size: 5rem;
		font-family: "Afjani Alana Demo";
		letter-spacing:4px;
    }
	
	 .carousel-inner img {
    width: 100%;
    height: 100%;
  }

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/* .header {
  position: sticky;
  top: 0;
  padding: 10px 16px;
  background: rgba(0, 0, 0, 0);
  color: #f1f1f1;
}
.header_fixed {
	position:absolute;
	top:0;
	left:0;
	z-index:100;
	
} */
.container, .container-sm, .container-md, .container-lg {
        max-width: 1140px;
    }
 header {
            background-color: rgb(0, 0, 0, 0);
            color: white;
            padding: 10px 20px;
            position: relative;
            width: 100%;
            transition: top 0.3s;
        }

        header.fixed {
            position: fixed;
            top: 0;
            z-index: 9999;
			background:#a56a4f;
			transition: all .5s;
        }
.w-35 {
	width:35%;
}
.bg-light {
	background:#fdf6f2	!important;
}
.bg-dark {
    background-color: #a56a4f !important;
}	
.footer_bg {
	background:#e2d5cd;
}
/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}
.btn-primary {
    color: #000;
    background-color: #a9705c;
    border-color: #a9705c;
}
.btn-primary:hover {
    color: #fff;
    background-color: #121212;
    border-color: #121212
}
.btn-dark {
    color: #fff;
    background-color: #121212;
    border-color: #121212;
}
.btn-dark:hover {
    color: #fff;
    background-color: #a9705c;
    border-color: #a9705c;
}
.btn-border {
    color: #000;
    background-color: rgb(0, 0, 0, 0);
    border-color: #5d5d5d;
	border-width:2px;
}
.btn-border:hover {
    color: #fff;
    background-color: rgb(0, 0, 0, 1);
    border-color: #5d5d5d;
	border-width:2px;
}
.text-primary {
	color: #a9705c !important;
}
.leaf {
	    position: absolute;
    width: 200px;
    right: 0px;
    margin-top: -15px;
    height: 405px;
}
.leaf_2 {
	position: absolute;
    width: 200px;
    left: 0px;
    margin-top: -350px;
    height: 405px;
	/* transform:rotate(180deg); */
}
.card {
    position: relative;
    /* max-width: 900px; */
    /* margin: 40px auto; */
    border-radius: 15px;
    overflow: hidden;
  }

  .card img {
    width: 100%;
    display: block;
    border-radius: 15px;
	object-fit: cover;
    height: 200px;
  }

  .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  }

  .title {
    font-size: 36px;
    font-weight: bold;
    /* margin: 0 0 10px; */
  }

  .subtitle {
    font-size: 16px;
    opacity: 0.9;
  }

  .arrow-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 65px;
    height: 50px;
    background: rgba(255,255,255,0.5);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
	font-weight:600;
	color:#fff;
	
  }

  .arrow-btn:hover {
    background: #fff;
  }

  @media (max-width: 600px) {
    .title {
      font-size: 24px;
    }
    .subtitle {
      font-size: 14px;
    }
	.navbar img {
		width:120px;
	}
	#header {
		background:#a56a4f;
		position:relative;
	}
	.b_right {
		border-right:none !important;
	}
  }

.btn.b {
position:absolute;
	
}tn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}

.facilities-section {
    position: relative;
    background: url('../img/facility.jpg') center/cover no-repeat;
    padding: 80px 0;
    color: #fff;
}

.facilities-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(169 112 92 / 60%); /* overlay */
}

.facilities-content {
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-desc {
    max-width: 900px;
    margin: 0 auto 40px;
    font-size: 16px;
    line-height: 1.6;
}

.facility-card {
    background: #f4eee9;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: 0.3s;
    height: 100%;
}

.facility-card:hover {
    transform: translateY(-5px);
}

.facility-icon {
    font-size: 40px;
    color: #a8745a;
    margin-bottom: 15px;
}

.facility-text {
    color: #7a4f3c;
    font-weight: 500;
	font-size:18px;
}

ul.checklist li i {
	font-size:20px;
}
ul li {
	list-style:none;
}
.checklist li:not(:last-child) {
    padding-bottom: 15px;
    border-bottom: 1px solid #d6dcde;
    margin-bottom: 15px;
}
.checklist li {
    padding-left: 30px;
    position: relative;
}
.checklist li a::before, .checklist li::before {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    font-family: bootstrap-icons !important;
    content: "\f271";
}


.icon-style-left{
   background: #fff;
    padding: 0.5rem;
    height: 100%;
    border-radius: 6px;
    display: flex;
    font-size: 1rem;
    align-items: center;
    
    transition: all 400ms ease-in-out;
}
.icon-style-left:hover{
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
}
.icon-style-left .icon{
    color: #a9705c;
    font-size: 2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}
.icon-style-left .text-wrap{
    display: flex;
    align-items: center;
    flex-grow: 1;
}
.icon-style-left .text{
    margin-right: 1rem;
}
.icon-style-left .text-wrap p{
    margin-bottom: 0;
}
.icon-style-left .arrow-icon a{
    margin: 0;
    background: var(--light-gray);
}
.img_shadow {
	    border: 7px solid #f5eae4;
    box-shadow: 0px 0px 35px #cba99d;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 14px;
	font-weight:bold;
    text-transform: uppercase;
    outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #ffc9b6;
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(122 74 52 / 40%);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgb(122 74 52 / 60%);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

.booking {
    position: relative;
    margin-top: -190px !important;
    z-index: 1;
}
.form-control, .form-select {
	border:none;
	padding: 0;
    font-size: 0.9rem;
}
.booking span {
	color:#000000;
	
}
.b_right {
	border-right:1px solid #ccc;
	padding:0px 10px;
}

/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}


/*** Service ***/
.service-item {
    height: 320px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 30px auto;
    width: 65px;
    height: 65px;
    transition: .5s;
}

.service-item i,
.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover i,
.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF !important;
}

.facilty {
	position: relative;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(../img/room.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*** Youtube Video ***/
.video {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(../img/room.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Testimonial ***/

.Testimonial_card {
    /* width: 360px; */
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  .Testimonial_card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .content {
    background: #a56a4f;
    padding: 20px;
    color: #fff;
  }

  .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
  }

  .user {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .avatar {
    width: 40px;
    height: 40px;
    background: #2ecc71;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }

  .name {
    font-weight: 600;
    font-size: 16px;
  }

  .source {
    font-size: 13px;
    opacity: 0.8;
  }

  .rating {
    background: #fff;
    color: #333;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
  }

  .review {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    line-height: 1.5;
  }

  .hearts {
    margin-top: 10px;
    font-size: 18px;
  }
  
  
.testimonial {
    /* background: linear-gradient(rgba(15, 23, 43, .7), rgba(15, 23, 43, .7)), url(../img/carousel-2.jpg); */
	background:#fff;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial-carousel {
    padding-left: 65px;
    padding-right: 65px;
}

.testimonial-carousel .testimonial-item {
    padding: 30px;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: #FFFFFF;
}


/*** Team ***/
.team-item,
.team-item .bg-primary,
.team-item .bg-primary i {
    transition: .5s;
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}


/*** Footer ***/
.newsletter {
    position: relative;
    z-index: 1;
}

.footer {
    position: relative;
    margin-top: 0px;
    padding-top: 60px;
}
.footer p {
	font-size:16px;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    border: 1px solid #000;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #a9705c;
    font-size: 16px;
    text-transform: capitalize;
    transition: .3s;
    font-weight: 600;
    line-height: 35px;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: #a9705c;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
.bg-contact {
	background:#a9705c;
}
.bg-contact p {
	font-size:16px;
}
.contact_form .form-control {
    border: 1px solid #a9705c;
    padding: 15px;
    font-size: 16px;
}
.contact_form input::placeholder {
	font-size:16px !important;
}
.form-floating>label {
	font-size:16px;
}


/************************/
.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}


#filter-buttons button {
  border-radius: 3px;
  background: #fff;
  border-color: transparent;
}

#filter-buttons button:hover {
  background: #ddd;
}

#filter-buttons button.active {
  color: #fff;
  background: #6c757d;
}

#filterable-cards .card {
  width: 15rem;
  border: 2px solid transparent;
}

#filterable-cards .card.hide {
  display: none;
}

@media (max-width: 600px) {
  #filterable-cards {
    justify-content: center;
  }

  #filterable-cards .card {
    width: calc(100% / 2 - 10px);
  }
}

#bootstrap-gallery .modal-dialog {
	margin-left: auto;
	margin-right: auto;
	width: 900px;
}

#bootstrap-gallery .modal-content {
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	border: none;
}

#bootstrap-gallery .modal-header {
	padding: 5px 10px;
	display: block;
}

#bootstrap-gallery .modal-body {
	padding: 0;
}

#bootstrap-gallery .modal-body img {
	width: 100%;
}

#bootstrap-gallery .modal-body  .carousel-control {
	background-image: none;
}

#bootstrap-gallery .modal-header  a.modal-button {
	float: right;
	font-size: 18px;
	line-height: 1;
	color: #CCCCCC;
	margin-left: 5px;
}

#bootstrap-gallery .modal-header  a.modal-button:hover {
	text-decoration: none;
	color: #808080;
}

#bootstrap-gallery .carousel-control-prev i, #bootstrap-gallery .carousel-control-next i {
	font-size: 2em;
}