@import url("https://fonts.googleapis.com/css2?family=Kufam:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kufam:ital,wght@0,400..900;1,400..900&family=Murecho:wght@100..900&display=swap");

/* ====================
  Reset Default CSS Start
  ==================== */

:root {
  --primary-font: "Kufam", sans-serif;
  --secondary-font: "Murecho", sans-serif;
  --primary-color: rgba(250, 180, 29, 0.3);
  --secondary-color: #f7b935;
  --btn-hover: #ffcd29;
  --bg-1: #ffffff;
  --bg-2: #000000;
  --text-color-1: #000000;
  --text-color-2: #7d7d7d;
  --text-color-3: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}

a {
  text-decoration: none !important;
}

ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}

button {
  border: none;
  outline: none;
  font-family: var(--secondary-font);
}

input {
  outline: none;
}

/* Width of the scrollbar */
::-webkit-scrollbar {
  width: 14px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--btn-hover);
}

/*====================
Reset Default CSS End
====================*/

/* Hero Start */
.room-suites-hero {
  width: 100%;
  height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.21) 0%,
      rgba(0, 0, 0, 0.7) 74%
    ),
    url(../img/about-us/about_bg.jpg) lightgray 50% / cover no-repeat;
}

#breadcrumbs {
  text-align: center;
  width: 100%;
  object-fit: cover;
}

#breadcrumbs h2 {
  font-size: 46px;
  color: var(--text-color-3);
  font-family: var(--primary-font);
  margin-bottom: 24px;
  font-weight: bold;
}

#breadcrumbs a {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color-3);
  font-family: var(--secondary-font);
}

#breadcrumbs .breadcrumb_last {
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary-color);
  font-family: var(--secondary-color);
}

@media screen and (max-width: 768px) {
  .room-suites-hero {
    height: 300px;
  }

  #breadcrumbs h1 {
    font-size: 32px;
  }
}

@media screen and (max-width: 576px) {
  #breadcrumbs {
    margin-top: 20px;
  }
  #breadcrumbs h2 {
    margin-bottom: 16px;
    font-size: 26px;
  }
  .about_experience_overlay h2 {
    font-size: 30px !important;
    margin: 0px !important;
  }
}

/* Hero End */

/* About Start */
#about {
  padding: 80px 0;
  background: var(--bg-1);
}

.about_img_wrapper {
  position: relative;
  padding-right: 30px;
}

.about_img {
  position: relative;
}

.about_img::after {
  content: "";
  position: absolute;
  width: 35px;
  height: 35px;
  background-color: transparent;
  right: calc(36% - 20px);
  top: 0px;
  border-radius: 50%;
  box-shadow: 13px -13px #fff;
}

.about_img::before {
  content: "";
  position: absolute;
  width: 35px;
  height: 35px;
  background-color: transparent;
  top: calc(36% - 20px);
  right: 0px;
  border-radius: 50%;
  box-shadow: 13px -13px #fff;
}

.about_img img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
}

.about_experience_img {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 36%;
  aspect-ratio: 1;
  border-radius: 0 0 0 32px;
  border-left: 20px solid #fff;
  border-bottom: 20px solid #fff;
}

.about_experience_img::after {
  content: "";
  position: absolute;
  width: 35px;
  height: 35px;
  background-color: transparent;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  box-shadow: -13px 13px #fff;
}

.about_experience_img img {
  width: 100%;
  height: 100%;
  border-radius: 16px !important;
}

.about_experience_overlay {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(15px);
  border-radius: 16px !important;
}

.about_experience_overlay h2 {
  font-size: 28px;
  font-weight: 600;
  font-family: var(--primary-font);
  color: var(--text-color-3);
}

.about_experience_overlay p {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  font-family: var(--secondary-font);
  color: var(--text-color-3);
  margin: 0;
}

#about .about-info {
  padding-left: 30px;
}

#about .about-info .border-wrapper {
  display: flex;
  justify-content: center;
}

#about .about-info .border {
  width: 300px;
  height: 1px;
  border-bottom: 2px solid var(--text-color-1) !important;
  margin-top: 30px;
}

#about .about-heading span {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--secondary-font);
  color: var(--text-color-1);
  background-color: var(--primary-color);
  padding: 8px 30px;
  border-radius: 30px;
}

#about .about-heading h2 {
  font-size: 34px;
  font-weight: bold;
  padding: 40px 0px 40px 0px;
  font-family: var(--primary-font);
  color: var(--text-color-1);
  margin: 0px !important;
}

#about .details p {
  font-size: 16px;
  font-family: var(--secondary-font);
  color: #7d7d7d;
  font-weight: 500;
  margin-bottom: 24px;
}

/* counter */
.counter-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}
.counter-section {
  display: flex;
  justify-content: center;
  text-align: center;
  width: 80%;
}

.counter {
  flex: 1;
  padding: 10px;
}

.counter h2 {
  font-size: 46px;
  font-family: var(--primary-font);
  font-weight: bold;
  margin: 0;
}

.counter p {
  color: var(--text-color-1);
  font-family: var(--secondary-font);
  font-weight: 500;
  white-space: nowrap;
  font-size: 1.1em;
  margin: 5px 0 0;
}

@media screen and (max-width: 992px) {
  #about .about-info {
    padding-left: 0px;
    padding-top: 50px;
  }
}

@media screen and (max-width: 768px) {
  .about_img_wrapper {
    padding: 0px 22px 0px 0px;
  }
  .counter-section {
    padding: 00px;
    width: 100%;
  }
  #about .about-heading h2 {
    font-size: 24px;
    font-weight: bold;
    padding: 30px 0px;
  }
}

@media screen and (max-width: 576px) {
  .about_experience_img {
    border-left: 14px solid #fff;
    border-bottom: 14px solid #fff;
  }

  .about_experience_img::after {
    box-shadow: -8px 8px #fff;
    bottom: -2px;
    left: -2px;
  }

  .counter h2 {
    font-size: 1.8em;
  }

  .about_experience_overlay h2 {
    font-size: 24px;
  }

  .about_experience_overlay p {
    font-size: 12px;
  }
}

/* About End */

/* Facilities Start */

#facilities {
  width: 100%;
  padding: 80px 0;
  background: var(--accent-v-2-golden-30, rgba(250, 180, 29, 0.3));
}

#facilities .facilities-heading {
  display: flex;
  justify-content: center;
  text-align: center;
}

#facilities .facilities-heading span {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--secondary-font);
  color: var(--text-color-1);
  background-color: var(--secondary-color);
  padding: 8px 30px;
  border-radius: 30px;
}

#facilities .facilities-heading h2 {
  max-width: 500px;
  font-size: 34px;
  font-weight: bold;
  padding: 40px 0px 40px 0px;
  font-family: var(--primary-font);
  color: var(--text-color-1);
}

#facilities .card-wrapper {
  width: 100%;
  overflow: hidden;
}

#facilities .swiper-container {
  width: 100%;
}

#facilities .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--bg-1);
  border-radius: 10px;
  border: 1px solid rgba(201, 201, 201, 1);
  font-size: 1.2rem;
  height: 220px;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 23px !important;
}

#facilities .swiper-slide .icon {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
  border-radius: 50%;
}

#facilities .swiper-slide .icon img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
  border-radius: 50%;
}

#facilities .swiper-slide-content {
  display: flex;
  gap: 10px;
  justify-content: first baseline;
}

#facilities .swiper-slide h3 {
  margin: 0px 0px 10px 0px;
  font-size: 22px;
  font-family: var(--primary-font);
  font-weight: 600;
}

#facilities .swiper-slide p {
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  color: var(--text-color-2);
  font-family: var(--secondary-font);
}

@media screen and (max-width: 768px) {
  #facilities .facilities-heading h2 {
    max-width: 430px;
    font-size: 24px;
  }
}

/* Facilities End */

/* Resort Gallery Start */
#resort-gallery {
  padding-top: 80px;
  background: var(--bg-1);
}

#resort-gallery .heading {
  display: flex;
  justify-content: center;
  text-align: center;
}

#resort-gallery .heading p {
  max-width: 830px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  font-family: var(--secondary-font);
  color: var(--text-color-2);
  margin-bottom: 40px;
}

#resort-gallery .heading h2 {
  font-size: 34px;
  text-align: center;
  padding-bottom: 40px;
  margin: 0px;
  font-weight: bold;
  font-family: var(--primary-font);
  color: var(--text-color-1);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.gallery-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 16 / 12;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

#resort-gallery .button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

#resort-gallery .button .view-more {
  display: block;
  font-size: 16px;
  color: var(--text-color-1);
  background: transparent;
  border: 1px solid var(--secondary-color);
  font-family: var(--secondary-font);
  font-weight: 600;
  padding: 8px 30px;
  border-radius: 30px;
  transition: 0.4s;
}

#resort-gallery .button .view-more:hover {
  background: var(--secondary-color);
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  #resort-gallery .heading h1 {
    font-size: 24px;
  }

  #resort-gallery .heading h2 {
    font-size: 24px;
    text-align: center;
    padding-bottom: 20px;
  }

  #resort-gallery .button .view-more {
    font-size: 15px;
  }
}

/* Resort Gallery End */

/* Reviews Start */
#reviews {
  width: 100%;
  padding: 80px 0;
  background: var(--bg-1);
}

#reviews .reviews-heading span {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--secondary-font);
  color: var(--text-color-1);
  background-color: var(--primary-color);
  padding: 8px 30px;
  border-radius: 30px;
}

#reviews .reviews-heading h2 {
  font-size: 34px;
  font-weight: bold;
  padding: 40px 0px 40px 0px;
  font-family: var(--primary-font);
  color: var(--text-color-1);
}

#reviews .customer-slider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 250px;
}

#reviews .customer-content {
  position: relative;
  width: 100%;
  text-align: left;
  margin: 0px 10px;
}

#reviews .customer-content .content-icon {
  position: absolute;
  top: 0px;
  right: 0px;
}

#reviews .customer-content .content-icon img {
  width: 40px;
  height: 50px;
}

#reviews .customer-content h3 {
  font-size: 26px;
  font-weight: 600;
  color: var(--text-color-1);
  font-family: var(--primary-font);
}

#reviews .customer-content p {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color-2);
  font-family: var(--secondary-font);
}

#reviews .customer-content p:nth-last-child(1) {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

#reviews .customer-content .content {
  display: none;
}

#reviews .customer-content .content.active {
  display: block;
}

#reviews .navigation {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#reviews .navigation button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: background-color 0.4s ease;
}

#reviews .navigation button i {
  color: var(--bg-2) !important;
  font-size: 20px;
}

#reviews .navigation button:hover {
  background-color: var(--btn-hover);
}

#reviews .customer-profiles {
  display: flex;
  gap: 10px;
}

#reviews .customer-profiles .profile {
  display: block;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--text-color-3);
  cursor: pointer;
  transition: border 0.3s ease;
}

#reviews .customer-profiles .profile:nth-child(1),
#reviews .customer-profiles .profile:nth-child(3) {
  margin-top: -40px;
}

#reviews .customer-profiles .profile.active {
  border-top: 8px solid var(--secondary-color);
  border-left: 1px solid var(--secondary-color);
  border-right: 1px solid var(--secondary-color);
  border-bottom: 1px solid var(--secondary-color);
}

#reviews .customer-profiles .profile.active img {
  border-top: 3px solid var(--bg-1) !important;
  border-left: 2px solid var(--bg-1) !important;
  border-right: 2px solid var(--bg-1) !important;
}

#reviews .customer-profiles .profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  width: 100%;
}

#reviews .left-section {
  width: 100%;
  gap: 20px;
  display: flex;
  align-items: center;
}

#reviews .right-section {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 45px;
}

@media (max-width: 992px) {
  #reviews .left-section {
    margin-top: 30px;
  }

  #reviews .right-section {
    justify-content: center;
  }
  #reviews .customer-slider {
    height: auto;
  }

  #reviews .customer-profiles .profile {
    width: 55px;
    height: 55px;
  }

  #reviews .reviews-heading h2 {
    font-size: 24px;
    padding: 30px 0;
  }

  #reviews .customer-content h3 {
    font-size: 20px;
    margin-bottom: 0;
  }

  #reviews .navigation button {
    display: block;
    width: 33px;
    height: 33px;
  }

  #reviews .navigation button i {
    font-size: 16px;
  }

  #reviews .customer-content .content-icon img {
    width: 25px;
    height: 30px;
  }

  #reviews .customer-content p {
    margin-bottom: 10px;
  }
}
/* Reviews End */

/* News Latter Start */
#news-latter {
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.1) 100%
    ),
    url(../img/news-latter-bg.webp) no-repeat center center / cover;
}

#news-latter .item {
  text-align: center;
}

#news-latter .item span {
  color: var(--text-color-1);
  background: var(--bg-1);
  font-size: 16px;
  font-family: var(--secondary-font);
  font-weight: 500;
  padding: 6px 20px;
  border-radius: 30px;
}

#news-latter .item .title {
  margin: 20px 0;
}

#news-latter .item h2 {
  color: var(--text-color-3);
  font-size: 30px;
  font-family: var(--primary-font);
  line-height: 35px;
  font-weight: bold;
  margin: 0px;
}

#news-latter .item .button {
  display: flex;
  gap: 12px;
  justify-content: center;
}

#news-latter .item .get-in {
  color: var(--text-color-1);
  font-size: 14px;
  font-family: var(--secondary-font);
  font-weight: 500;
  background: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  padding: 10px 40px;
  border-radius: 30px;
  transition: 0.4s;
}

#news-latter .item .get-in:hover {
  background: transparent;
  border-color: var(--secondary-color);
  color: var(--text-color-3);
}

#news-latter .item .book-now {
  color: var(--text-color-3);
  font-size: 14px;
  font-family: var(--secondary-font);
  font-weight: 500;
  background: transparent;
  border: 1px solid var(--secondary-color);
  padding: 10px 40px;
  border-radius: 30px;
  transition: 0.4s;
}

#news-latter .item .book-now:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--text-color-1);
}

@media (max-width: 768px) {
  #news-latter .item h2 {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  #news-latter .item h1 {
    font-size: 22px;
  }
  #news-latter .item {
    padding: 0px 10px;
  }
}

/* News Latter End */
