@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@200..900&family=Jost:ital,wght@0,100..900;1,100..900&family=Kalnia:wght@100..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



html, body {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden !important;
  background-color: #ffffff;
  font-family: 'Della Respira', serif;

  font-family: 'Italiana', sans-serif;
  font-family: 'Roboto', sans-serif;
  font-family: 'Marcellus', serif;
  font-family: 'Marcellus SC', serif;
  font-family: 'Work Sans', sans-serif;
  font-family: 'Lato', sans-serif;
  font-family: 'Lora', serif;
  font-family: 'Cormorant Garamond', serif;
  font-family: 'Literata', serif;
  font-family: 'Barlow', sans-serif;
  font-family: 'Dancing Script', cursive;
  font-family: "Jost", sans-serif;
  font-family: 'Cinzel', serif;
  font-family: "Inconsolata", monospace;
  font-family: 'Gilda Display', serif;
  font-family: 'Raleway', sans-serif;
  font-family: "Poppins", sans-serif;
  font-family: "Playfair Display", serif;
  color: rgb(0, 0, 0);

}
h6{
  font-family: "Jost", sans-serif !important;
  font-weight: 300;
  font-size: 18px !important;
  line-height: 25px;
}
a{
  text-decoration: none;
}
::selection {
  color: #ffffff;
  background: #74685E;
}





nav.navbar {
  background-color: #ffffff;

  backdrop-filter: blur(0px) !important;
  transition: background .5s !important;

  font-family: "Inconsolata", monospace;

  text-transform: uppercase;
font-weight: 500;
  z-index: 1000;
  width: 100%;
  height: 100px;
  position: relative;


}

li.nav-item a.nav-link {
  color: rgb(0, 0, 0) !important;
  font-size: 15px !important;
  letter-spacing: 3px;



}

.nav-item {
  margin-top: 25px;
  margin-bottom: 20px;
  text-align: center;

}

a.nav-link:hover {
  transform: scale(1.02);

}

.navbar li a.active {
  color: #000000 !important;
  transform: scale(1.05);
  border-bottom: 1px#000000 solid !important;

  background-color: transparent;

}


.dropdown-menu {
  background-color: rgb(255, 255, 255) !important;
  color: #000000;
  backdrop-filter: blur(0px) !important;
  transition: background .5s !important;
  border: 1px solid #AE9555;
  font-family: "Inconsolata", monospace;


  font-weight: 400;
  z-index: 100;
  width: 100%;
  text-align: center;
  padding: 10px;
}

.dropdown-menu .dropdown-item {
  color: rgb(0, 0, 0);
  text-align: left;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #ffffff;
  border: 1px solid #252525;
  transform: scale(1.02);
  color: rgb(0, 0, 0);
}

#carouselExampleFade {
  margin-top: -150px;
  position: relative;
}

.carousel1 {
  background: url('../photos/img2.png') rgba(20, 19, 19, 0.665);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  height: 900px;
}

.carousel2 {
  background: url('../photos/img3.png') rgba(20, 19, 19, 0.648) ;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  height: 900px;
}

.carousel3 {
  background: url('../photos/img1.png')  rgba(20, 19, 19, 0.516);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  height: 900px;
}

.carousel-caption {
  margin-bottom: 13%;
  text-align: center;
  border: 1px ridge #8d631b;
  background: #ffffff2e;
  padding: 50px;
  
}

.carousel-caption h1 {

  text-shadow: 7px 5px 5px #221C13;

  font-size: 100px !important;
  font-weight: 100 !important;
}

.carousel-caption h6 {
  margin-bottom: 30px;
  font-family: "Inconsolata", monospace;
text-transform: uppercase;
  font-size: 16px !important;
  letter-spacing: 9px !important;
  font-weight: 100;
  color: #ffffff !important;

}
.button {
  --primary-color: #252424;
  --secondary-color: #ffffff;
  --hover-color: #252424;
  --arrow-width: 10px;
  --arrow-stroke: 2px;
  box-sizing: border-box;
  border: 0;
  border-radius: 0px;
  color: var(--secondary-color);
  padding: 1em 1.8em;
  background: var(--primary-color);
  display: flex;
  transition: 0.2s background;
  align-items: center;
  gap: 0.6em;
  font-weight: bold;
}

.button .arrow-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.button .arrow {
  margin-top: 1px;
  width: var(--arrow-width);
  background: var(--primary-color);
  height: var(--arrow-stroke);
  position: relative;
  transition: 0.2s;
}

.button .arrow::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  border: solid var(--secondary-color);
  border-width: 0 var(--arrow-stroke) var(--arrow-stroke) 0;
  display: inline-block;
  top: -3px;
  right: 3px;
  transition: 0.2s;
  padding: 3px;
  transform: rotate(-45deg);
}

.button:hover {
  background-color: var(--hover-color);
}

.button:hover .arrow {
  background: var(--secondary-color);
}

.button:hover .arrow:before {
  right: 0;
}


.about-section{
  padding-top: 100px;
  padding-bottom: 100px;
}
.line {
  width: 50px; /* Adjust the width of the line as needed */
  background-color: #D19673; /* Change the color of the line as needed */
 /* Adjust the spacing between the line and text as needed */
  height: 1px; /* Adjust the height of the line as needed */
}


.text {
color: #D19673;
}

.facilities-section{
  padding-top: 100px;
  padding-bottom: 100px;
  background: #D1B48C;
}
.facility-box{
  padding: 0px 40px 40px 40px;
  background: white;
  text-align: center;
}
.facility-icon{
  padding: 20px;
  background: #221C13;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: 0.3s ease;
}
.facility-icon i{
  color: white;
  transition: 0.3s ease;
}
.facility-box:hover .facility-icon i{
  color: #221C13;
  transition: 0.3s ease;
}
.facility-box:hover .facility-icon{
  background: #D1B48C;
  transition: 0.3s ease;
}

.cover-bg{
  background: url('../photos/img5.png') rgba(20, 19, 19, 0.665);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  padding-top: 100px;
  padding-bottom: 100px;
}
.content{
  padding: 40px;
  background: rgba(255, 255, 255, 0.551);
}
.col1{
  background: #f8e5cb;
}

.owl-next,
.owl-prev {
  height: 50px !important;
  position: absolute !important;
  width: 50px !important;
  cursor: pointer !important;
  top: 35% !important;
  background: #ffffff !important;
  transition: 0.5s !important;
  z-index: 100 !important;

}
 .owl-prev {
  left: 13px !important;
}
 .owl-next {
  right: 13px !important;
}
.owl-prev:hover
{
  background: #221C13 !important;
}
.owl-next:hover
{
  background: #221C13  !important;
}
.flex1 {
  display: flex !important;
  justify-content: space-between !important;
}

.testimonials{
  padding-top: 100px;
  padding-bottom: 100px;
}

/*Rooms.html*/
.section-background{
  background: url('../photos/img5.png') rgba(20, 19, 19, 0.665);
  background-attachment: fixed;
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  padding-top: 150px;
  padding-bottom: 150px;
  text-align: center;
}
.cover-bg1{
  background: url('../photos/img2.png') rgba(20, 19, 19, 0.665);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  padding-top: 150px;
  padding-bottom: 150px;
  text-align: center;
}
/*Aboutus.html*/
.section-background1{
  background: url('../photos/img3.png') rgba(20, 19, 19, 0.665);
  background-attachment: fixed;
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  padding-top: 150px;
  padding-bottom: 150px;
  text-align: center;
}
.testimonial-section{
  margin-top: 150px;
  margin-bottom: 100px;
}
.testimonial-box{
  padding: 40px;
  background: #704a4a00;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#testimonials{
  padding-top: 100px;
  padding-bottom: 100px;
  background: url('../photos/bg-shape.png');
  background-position:bottom left;
  background-size: 30%;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
}
.first{
  display: none;
}

/*Contact.html*/
.section-background2{
  background: url('../photos/gallery/img2.png') rgba(20, 19, 19, 0.665);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  padding-top: 150px;
  padding-bottom: 150px;
  text-align: center;
}

.contact-box{
  background: url('../photos/gallery/img1.png') #44626eeb;

  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
padding: 50px;
width: 100%;
  text-align: center;
}

/*Gallery.html*/
.section-background3{
  background: url('../photos/img1.png') rgba(20, 19, 19, 0.665);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  padding-top: 150px;
  padding-bottom: 150px;
  text-align: center;
}


@media(max-width:990px){
  .map-col{
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
  }
  .cover-bg, .section-background, .section-background1, .section-background2, .section-background3, .carousel1, .carousel2, .carousel3{
    background-attachment:scroll !important;
  }
  .carousel-caption{
    margin-bottom: 63%;
    text-align: center;
    border: 1px ridge #8d631b;
    background: #ffffff51;
    padding: 10px;
  }
  .carousel-caption h1 {
 
    text-shadow: 7px 5px 5px #44626E;
  
    font-size: 50px !important;
    font-weight: 100 !important;
  }
  
  .carousel-caption h6 {
    margin-bottom: 30px;
    font-family: "Inconsolata", monospace;
  text-transform: uppercase;
    font-size: 12px !important;
    letter-spacing: 3px !important;
    font-weight: 100;
    color: #ffffff !important;
  
  }
  .container-fluid{
    padding: 20px !important;
  }
  nav.navbar{
    height: auto;
  }
  .content{
    padding: 40px;
    background: rgba(255, 255, 255, 0.551);
  }
}
/*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;
}

