html, body {
  width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden; 

}
@keyframes zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
nav.navbar {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  transition:all .5s ease-in-out;
  }
.navbar.scroll {
  background-color: #979595!important; 
  transition: background-color 0.2s ease-in-out;
  box-shadow: o 3px 10px rgb(0, 0, 0, 0.15);

}
.nav-link {
  font-size: 24px !important;
}
.navbar li {
  margin: 0 20px;
 color: white;
}
.small-text{
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 10px;
  font-style: italic;
  color: white;
  position: relative;
}
.navbar li a {
  font-family: 'Josefin Slab', serif; 
  position: relative;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  color: white;
}
.navbar li a:hover {
  color: #CCB97E;
}
.navbar li a.active {
color: #CCB97E!important;
}
.nav-item {
  position: relative;
  text-align: center;
}
nav .navbar-toggler{
  background-color: #CCB97E;
  border: none;
}

.footer{
  background-color: #1D1D1D;
}
    /*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;
}
.fade-in{
  opacity:0;
  transition: all 1.3s ease-in;
}

.active-left,.active,.active-right,.active-down{
  opacity:1;
  transform: translateX(0);
  transform: translateY(0);
}



.fadein{
opacity: 0;
}   


/* End Animations*/

/*index styles*/
 #home-header{
    background: url('../images/backk.JPG');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    height: 800px;
}

.home-box{
  border-bottom: 4px solid #222222;
  padding-left: 20px;
  background:url('../images/mountains.jpg');
background-position: center;
}

.home-text{
padding-top: 300px;
}
.active-img{
  margin-top: -440px;
}
#home-about{
  margin-top: 100px;
  margin-bottom: 150px;
  }
  h1{
    font-family: 'Tangerine', cursive;
  }
  p{
    font-family: 'Epilogue', sans-serif;
    color: #484747;
  }
  h2{
    font-family: 'Vollkorn SC', serif;

  }
  @media (max-width: 576px) {
    .active-img{
      margin-top: 20px;
    }
    .btn-left{
      margin-left: 100px;
    }
#home-about{
  margin-bottom: 80px;
}
  }
  /*view more button*/
button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
 }
 button.learn-more {
  width: 14rem;
  height: auto;
 }
 button.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: #3E1F1A;
  border-radius: 1.625rem;
 }
 button.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
 }
 button.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
 }
 button.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.29rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
 }
 button.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 20px;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 1.85rem;
  color: #3E1F1A;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
 }
 button:hover .circle {
  width: 100%;
 }
 button:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
 }
 button:hover .button-text {
  color: #fff;
 }
 #facilities{
  background-color: #1d1d1d;
 }
.facility-box{
  text-align: center;
  padding: 5%;
  transition-duration: 0.4s;
  background-color: rgb(207, 207, 207);
  margin: 10px;
}
.facility-box:hover{
  background-color:#CCB97E ;
  color: #ffffff;
}
.facility-box:hover .fac-paragraph{
  color: #ffffff!important;
}
.box{
margin: 0!important;
}
#rooms{
  margin-top: 100px;
}
.card {
  background-color: whitesmoke;
  position: relative;
  border-radius: 5px;
  padding: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 7.5px;
  transition: 0.5s ease;
  color: black;
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  transition: 0.3s ease;
}
.card:hover::after {
  opacity: 0.25;
}
.cardHeader {
  text-transform: uppercase;
  position: relative;
  font-weight: bold;
  transition: all 0.3s ease;
  font-family: 'Vollkorn SC', serif;
  font-size: 25px;

}
.cardHeader::after {
  position: absolute;
}
.details {
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transform: translateY(90%);
  transition: all 0.5s ease;
}
.button {
  background-color: rgb(2, 2, 2);
  color: white;
  padding: 4px 18px;
  width: max-content;
  border-radius: 2.5px;
}
.card:hover .details {
  transform: translateY(0%);
  transition-delay: 0.5s;
}
.card:hover .cardHeader::after {
  transform: translateX(-1rem);
  transition: 0.5s ease;
  opacity: 1;
}
.card:hover {
  transform: scale(1.05);
  border-radius: 15px;
}

/* testimonials section */
.testimonials-text {

  font-family: 'Cormorant Garamond', serif;
  box-shadow: 0 5px 10px rgb(0 0 0 / 0.2);
  padding: 20px;
  }
.rest-box-2{
  padding: 60px 0;
  width: 50px;
  height: 50px;
  margin-left: -10px;

}
.review-section{

  margin: 30px;
  padding: 10px;
  border-left: 1px solid black;
}
/*gallery section*/
#gallery{
background:url('../images/Pattern-1.png');
margin-top: 200px;
}
/*gallery psge*/
#gallery-header{
  background: url('../images/rooms.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  height: 600px; 
}
.item1 {
  width: 400px;
  object-fit:cover;
  transition: transform 0.3s;
  transition-timing-function: cubic-bezier(0.4, 1.55, 0.74, 0.55);
}
.item1:hover img {
  transform: scale(1.05);
}
/*contact page*/
#contact-header{
  background: url('../images/beach.jpg.webp');
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  height: 600px; 
}
#about-header{
  background: url('../images/Photo\ \(3\).JPG');
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  height: 600px; 
}
.book {
  margin-bottom: 30px;
  position: relative;
  border-radius: 10px;
  width: 270px;
  height: 200px;
  font-family: 'Gilda Display', serif;
  background-color: rgb(236, 238, 239);
  -webkit-transform: preserve-3d;
  -ms-transform: preserve-3d;
  transform: preserve-3d;
  -webkit-perspective: 2000px;
  perspective: 2000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #000;
}
.cover {
  top: 0;
  position: absolute;
  background-color: #aaccbe;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform-origin: 0;
  -ms-transform-origin: 0;
  transform-origin: 0;
  box-shadow: 1px 1px 12px #9ec0af;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.book:hover .cover {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: rotatey(-80deg);
  -ms-transform: rotatey(-80deg);
  transform: rotatey(-80deg);
}
@media screen and (max-width: 767px) {
  #gallery{
    margin-top: 50px;
  }
  .book{
    width: 100%;
  }
  .room1{
    width: 100vw;
  }
  .rm-button{
    width: 100%!important;
    height: 101px!important;
    padding-left: 0!important;
  }
  .rm{
    padding: 0!important;
  }
}
.nav-btn {
  border: 1px solid #03135a75;
  text-transform: uppercase;
  background-color: white;
  color: black;
  padding: 10px 25px;
  transition: background-color 0.3s ease;
  max-width: 200px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  text-align: center;

}
  .nav-btn:hover {
    color: white;
    background-color: #0a1236;
  }

/*rooms page*/
#rooms-header{
  background: url('../images/Photo\ \(38\).JPG');
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  height: 600px; 
}
.header-txt{
  padding-top: 250px;
  font-size: 60px;
}
#rooms-container{
  margin-bottom: 80px;
}
.col-lg-2 button:hover{
background: #080808!important;
color: #f7f7f7;
}
.col-lg-2 button{
  height: 500px; 
  width: 200px; 
  background: #979595;
}
.room1{
  padding-bottom: 20px;
  height: 506px;
  margin-top:150px;
}
.room-title{
  font-family: "cinzel",serif;
  margin-bottom: 50px;

}
.room-description{
  word-spacing: 5px;
font-style: italic;
font-size: 20px;
margin-top: 40px;
}
img.d-block.w-100{
  height: 500px;
}
@media screen and (max-width: 767px) {
  
  img.d-block.w-100{
    height: auto;
  }
  .room1{
    height: auto;
    margin-top: 100px;
  }
  .room-title{

    margin-bottom: 20px;
  
  }
}

