/* utils */
.text-center {
  text-align: center;
}
.para-text-right {
  text-align: end;
  margin-bottom: 0;
}
.f-icon{
  font-size: 1.5rem;
  color: black;
}
.fa-hotel {
  color: #FF385C;
}
/* .fa-facebook{
  color:#1877F2;
}
.fa-instagram{
  color: #E1306C;
}
.fa-linkedin{
  color:#0A66C2;
} */
.hotel-name{
  color:#FF385C;
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.hotel-name:hover{
  color: #FF385C;
}

/* css */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main{
  flex:1;
}
.nav-bar{
  height: 4rem;
}

.nav-link{
  margin: 0px 5px ;
  color: black;
  font-weight: 500;
  position: relative; /*for applying after effect*/
}
.nav-link::after{
  position: absolute;
    left: 0;
    top: 90%;
    content: '';
    width: 0%;
    height: 3px;
    background-color:blue;
    border-radius: 2px; 

}
.nav-link:hover::after{
  width: 100%;
  transition: all 0.4s ease;
  border-radius: 5px;
}
.social-icon-container {
  
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
.f-para{
  margin: 0;
}
label{
  font-weight: 500;
}
.listings-card{
  overflow: hidden;
  transition: all 0.2s ease;
}
.listings-card:hover {
  transform: scale(1.05);
}
.card .listing-img {
  height: 14rem;
  width: 100%;
  object-fit: cover;
}

.show-img{
  height: 20rem;
  object-fit: cover;
}
.navbar-brand {
  opacity: 1 !important;
  font-weight: 900;
  color: #FF385C;
}
/* footer */
footer{
  background-color: #f8f9fa;
}
/* review section */
.review-card{
  position: relative;
}
.review-card-btn{
  display: inline-block;
  position: absolute;
  top: 10px;
  right: 10px;
}
.review-btn{
  border: none;
  background-color: transparent;
}
.fa-star{
  color: gold;
}
.fa-trash-can{
  color: rgb(204, 34, 34);
}