/* fonts */
@import url("https://fonts.googleapis.com/css2?family=Metamorphous&amp;family=Tilt+Neon&amp;display=swap");

@font-face {
  font-family: "Playfair Display";
  src: url(../fonts/playfair/PlayfairDisplay-SemiBold.ttf);
}
/* fonts */

/* universal */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary_font: "Playfair Display";
  --secondary_font: "Metamorphous";
  --primary_gradient: linear-gradient(
    180deg,
    #000 20.83%,
    rgba(0, 0, 0, 0.25) 100%
  );
  --primary_color: #d7a469;
  --black: #000000;
  --white: #ffffff;
}

/* universal */

/* Hero Start */

#hero {
  height: 60vh;
  background: url(../images/IMG_2538.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero_content_wrapper {
  height: 80vh;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero_content .hero_header {
  position: relative;
  font-family: var(--primary_font);
  font-size: 4em;
  color: var(--white);
  padding: 0 40px 10px;
  margin-bottom: 10px;
  border-bottom: 5px solid var(--primary_color);
}

.hero_content .hero_header::before {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 15px;
  height: 15px;
  background: var(--primary_color);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.hero_content .hero_header::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 15px;
  height: 15px;
  background: var(--primary_color);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.hero_content .hero_sub_header {
  font-family: var(--primary_font);
  font-size: 1.8em;
  color: var(--white);
  letter-spacing: 1px;
  margin-top: 20px;
}

@media screen and (max-width: 990px) {
  .hero_content .hero_header {
    font-size: 2em;
  }

  .hero_content .hero_sub_header {
    font-size: 1.1em;
    margin-top: 15px;
  }
}

/* Hero End */

/* hero end */

/* Service Start */

#service {
  padding: 40px 0;
}

.service_header h3 {
  font-family: var(--secondary_font);
  font-size: 1.4em;
  color: var(--black);
  text-align: center;
}

.service_header h1 {
  font-family: var(--primary_font);
  font-size: 3em;
  text-align: center;
  margin-top: 20px;
}

.service_header .header_shape {
  width: 230px;
  margin: 0 auto 40px;
}

.service_header .header_shape img {
  width: 100%;
}

.service_card {
  height: 250px;
  padding: 20px;
  display: grid;
  align-content: space-between;
  border: 2px solid var(--primary_color);
  border-radius: 15px 0;
  margin: 35px 5px 0;
  position: relative;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}

.service_card .service_card_icon {
  width: 65px;
  height: 65px;
  margin: auto;
}

.service_card .service_card_icon svg {
  width: 100%;
  height: 100%;
}

.service_card .service_card_icon svg path,
.service_card .service_card_icon svg circle {
  /* fill: var(--primary_color); */
  stroke: var(--primary_color);
  transition: all 0.5s ease-in-out;
}

.service_card:hover .service_card_icon svg path,
.service_card:hover .service_card_icon svg circle {
  stroke: #c7812f !important;
}

.service_card h1 {
  font-family: var(--primary_font);
  font-size: 1.3em;
  text-align: center;
/*  word-spacing: 10px;*/
  margin: 30px 0 0;
}

.service_card p {
  font-family: var(--secondary_font);
  font-size: 1em;
  color: #000;
  text-align: center;
  margin-bottom: 0;
  transition: all 0.5s ease-in-out;
}

.service_card_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-color: #ffdbb0;
  border-radius: 13px 0;
  transition: all 0.5s ease-in-out;
  opacity: 0;
  user-select: none;
  pointer-events: none;
}

.service_card_overlay img {
  width: 60px;
  z-index: 9999 !important;
}

.service_card_overlay img:nth-child(1) {
  position: absolute;
  top: -35px;
  right: -35px;
}
.service_card_overlay img:nth-child(2) {
  position: absolute;
  bottom: -35px;
  left: -35px;
  transform: rotate(-180deg);
}

.service_card:hover .service_card_overlay {
  opacity: 1;
  user-select: auto;
  pointer-events: visible;
}

.service_card:hover.service_card {
  border-color: #c7812f;
}

.service_card:hover.service_card p {
  color: var(--black);
}

@media screen and (max-width: 990px) {
  .service_header h3 {
    font-size: 1.1em;
  }

  .service_header h1 {
    font-size: 2em;
    margin-top: 10px;
  }

  .service_header .header_shape {
    width: 180px;
    margin: 0 auto 20px;
  }
}

@media screen and (max-width: 575px) {
  .service_card {
    width: 85%;
    height: 280px;
    display: grid;
    align-content: space-between;
    padding: 20px;
    margin: 40px auto 0;
  }
}

/* Service End */

/* Rooms Start */

#rooms {
  padding: 50px 0 50px;
}

.rooms_header h3 {
  font-family: var(--secondary_font);
  font-size: 1.4em;
  color: var(--black);
  text-align: center;
}

.rooms_header h1 {
  font-family: var(--primary_font);
  font-size: 3em;
  text-align: center;
  margin-top: 20px;
}

.rooms_header .header_shape {
  width: 230px;
  margin: 0 auto 0px;
}

.rooms_header .header_shape img {
  width: 100%;
}

.room_item {
  padding: 20px 20px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  margin-top: 40px;
}

.room_content .room_img img {
  width: 100%;
  border-radius: 25px 0;
}

.choose_room_head h3 {
  font-family: var(--primary_font);
  font-size: 1.6em;
  text-align: center;
  color: #D7A469;
}

.choose_room_head p {
  font-family: var(--secondary_font);
  font-size: 1em;
  text-align: center;
}

.choose_room_special_btn {
  display: flex;
  justify-content: center;
  margin: 25px 0;
}

.choose_room_special_btn a {
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 28px;
  line-height: 30px;
  text-align: center;
  background-color: var(--primary_color);
  border-radius: 4px 0;
  margin: 0 8px;
}

.choose_room_btn a img {
  width: 24px;
}

.choose_room_rating {
  text-align: center;
}

.choose_room_rating a {
  text-decoration: none;
  color: #f4a329;
  font-size: 1em;
  margin: 0 1px;
}

.choose_room_rating a:hover {
  color: #f4a329;
}

.choose_room_desc p {
  text-align: center;
  color: var(--primary_color);
  font-family: var(--secondary_font);
  font-size: 1em;
  margin: 25px 0 30px;
}

.choose_room_price p {
  font-family: var(--secondary_font);
  font-size: 1.3em;
  text-align: center;
  margin-bottom: 0;
}

.choose_room_price p span {
  font-size: 1.15em;
  font-weight: 500;
}

.choose_room_price_btn {
  text-align: center;
  margin-top: 15px;
}

.choose_room_price_btn a {
  text-decoration: none;
  display: inline-block;
  width: 160px;
  border-top: 3px solid var(--primary_color);
  border-bottom: 3px solid var(--primary_color);
  background-color: rgba(255, 255, 255, 0.7);
  padding: 9px 0;
  color: var(--black);
  text-align: center;
  font-family: var(--secondary_font);
  font-size: 1em;
  border-radius: 8px 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.8s;
}

.choose_room_price_btn a:hover {
  background-color: var(--primary_color);
  color: var(--white);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1),
    0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 100px;
}

.pagination a {
  display: inline-block;
  border: 2px solid var(--primary_color);
  padding: 10px 18px;
  font-family: var(--secondary_font);
  font-size: 1.1em;
  color: var(--black);
  text-decoration: none;
  font-weight: 500;
  border-radius: 5px;
  transition: 0.5s;
}

.pagination a:hover {
  background-color: var(--primary_color);
  color: var(--white);
}

@media screen and (max-width: 990px) {
  .rooms_header h3 {
    font-size: 1.1em;
  }

  .rooms_header h1 {
    font-size: 2em;
  }

  .choose_room_head h3 {
    margin-top: 15px;
  }
}

@media screen and (max-width: 576px) {
  .pagination {
    gap: 10px;
    .pagination {
      gap: 10px;
      margin-top: 60px;
    }
  }

  .pagination a {
    padding: 6px 10px;
    font-size: 0.9em;
  }
}

/* Rooms End */

/* Testimonial Start */

#testimonial {
  padding: 0 0 100px;
}

.testimonial_header h3 {
  font-family: var(--secondary_font);
  font-size: 1.4em;
  color: var(--black);
  text-align: center;
}

.testimonial_header h1 {
  font-family: var(--primary_font);
  font-size: 3em;
  text-align: center;
  margin-top: 20px;
}

.testimonial_header .header_shape {
  width: 230px;
  margin: 0 auto 20px;
}

.testimonial_header .header_shape img {
  width: 100%;
}

.content-area {
  background: var(--white);
  border-radius: 10px;
  margin: 15px 5px 20px;
  position: relative;
  transition: 0.5s;
}
.content {
  padding: 30px;
}

.owl-dots {
  text-align: center;
  margin-top: 10px;
}

.owl-dot {
  width: 8px !important;
  height: 8px !important;
  background-color: var(--primary_color) !important;
  display: inline-block;
  margin: 0 8px;
  border-radius: 50%;
  opacity: 0.8;
}

.owl-dot.active {
  outline: 2px solid var(--primary_color) !important;
  outline-offset: 3px;
}

.client {
  display: flex;
  align-items: center;
}

.client_right {
  justify-content: end;
}

.client_avatar {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin-right: 25px;
}

.client_avatar .client_avatar_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.client_avatar .avatar_quote_img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  right: 0;
}

.client_avatar .avatar_quote_img img {
  width: 100%;
  height: 100%;
}

.client_right .client_info {
  text-align: right;
}

.client_right .client_avatar {
  margin-left: 25px;
  margin-right: 0;
}

.client_right .avatar_quote_img {
  bottom: 0;
  left: 0;
}

.client .client_info h2 {
  font-family: var(--primary_font);
  font-size: 2em;
}

.client .client_info p {
  font-family: var(--secondary_font);
  font-size: 1em;
  text-transform: uppercase;
  color: var(--primary_color);
  margin-bottom: 0;
}

.client_message p {
  font-family: var(--secondary_font);
  font-size: 1em;
  color: var(--primary_color);
  text-align: center;
  font-weight: 400;
  margin-bottom: 0;
  margin-top: 25px;
}

.testimonial_card_border_right,
.testimonial_card_border_left {
  position: absolute;
  width: 100%;
  height: 0;
  z-index: 99 !important;
  transition: all 1s;
}

.testimonial_card_border_right {
  top: 0;
  right: 0;
  border-right: 3px solid var(--primary_color);
}

.testimonial_card_border_left {
  bottom: 0;
  left: 0;
  border-left: 3px solid var(--primary_color);
}

.content-area:hover {
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
}

.content-area:hover .testimonial_card_border_right,
.content-area:hover .testimonial_card_border_left {
  border-radius: 10px 0;
  height: 100%;
}

.client_right .client_info {
  width: calc(100% - 140px);
}
.client_left .client_info {
  width: calc(100% - 140px);
}

@media screen and (max-width: 990px) {
  .testimonial_header h3 {
    font-size: 1.1em;
  }

  .testimonial_header h1 {
    font-size: 2em;
    margin-top: 10px;
  }

  .testimonial_header .header_shape {
    width: 180px;
    margin: 0 auto 20px;
  }
}

@media screen and (max-width: 575px) {
  .client_avatar {
    width: 80px;
    height: 80px;
  }

  .client_avatar .avatar_quote_img {
    width: 30px;
    height: 30px;
  }

  .client_right .client_info {
    width: calc(100% - 80px);
  }
  .client_left .client_info {
    width: calc(100% - 80px);
  }

  .client .client_info h2 {
    font-size: 1.4em;
  }

  .client .client_info p {
    font-size: 0.8em;
  }

  .client_message p {
    font-size: 0.8em;
  }

  .content {
    padding: 30px 20px;
  }

  .client .client_avatar {
    margin-right: 15px;
    margin-left: 0;
  }

  .client_right .client_avatar {
    margin-left: 15px;
    margin-right: 0;
  }
}

/* Testimonial End */
