@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);
}
.container {
  max-width: 1340px !important;
}

/*====================
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/room-suites/hero-image.jpg) lightgray 50% / cover no-repeat;
}

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

#breadcrumbs h2 {
  font-size: 46px;
  margin-bottom: 24px;
  color: var(--text-color-3);
  font-family: var(--primary-font);
  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) {
  #breadcrumbs {
    margin-top: 20px;
  }

  .room-suites-hero {
    height: 300px;
  }

  #breadcrumbs h2 {
    font-size: 26px;
    margin-bottom: 16px;
  }

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

/* Hero End */

/* Facilities Start */

#facilities {
  width: 100%;
  padding-top: 80px;
  background: var(--bg-1);
}

#facilities .facilities-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;
}

#facilities .facilities-heading h2 {
  max-width: 430px;
  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-size: 16px;
  font-weight: 500;
  color: var(--text-color-2);
  font-family: var(--secondary-font);
}

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

/* Facilities End */

/* Rooms & Suites Start */
#rooms-suites {
  width: 100%;
  background: var(--bg-1);
  padding-top: 80px;
  padding-bottom: 80px;
}

#rooms-suites .service-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

#rooms-suites .header .tag {
  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;
}

#rooms-suites .header h3 {
  max-width: 100%;
  font-size: 34px;
  font-weight: bold;
  padding: 40px 0px 40px 0px;
  font-family: var(--primary-font);
  color: var(--text-color-1);
  margin: 0;
}

.recommended-rooms .section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.recommended-rooms .room-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.card {
  flex: 1 1 calc(33.333% - 20px);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: none !important;
}

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

.card-img {
  overflow: hidden;
}

.card-img img {
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 24px;
  transition: 0.4s;
}

.recommended-rooms .card-content {
  padding: 15px 0;
  box-shadow: none !important;
}

.recommended-rooms .card-content h3 {
  font-size: 28px;
  margin: 20px 0;
  font-family: var(--primary-font);
  font-weight: 600;
}

.recommended-rooms .card-content .price-and-button {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.recommended-rooms .rating {
  display: flex;
  align-items: baseline;
  color: var(--text-color-2);
  font-family: var(--secondary-font);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.recommended-rooms .rating .calender {
  margin: 0px 5px;
}

.recommended-rooms .rating i {
  color: var(--text-color-1);
  font-size: 0.9rem;
  margin-right: 5px;
  margin-bottom: 10px;
}

.recommended-rooms .price {
  font-size: 28px;
  font-family: var(--primary-font);
  font-weight: 600;
  color: var(--text-color-1);
}

.recommended-rooms .price span {
  font-size: 16px;
  font-weight: normal;
  font-family: var(--secondary-font);
  color: var(--text-color-2);
  vertical-align: super;
}

.recommended-rooms p {
  color: var(--text-color-2);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0px !important;
  font-family: var(--secondary-font);
}

.recommended-rooms .price-and-button .view-room-btn {
  width: 100%;
  display: block;
  background: transparent;
  border: 1px solid var(--secondary-color) !important;
  border: none;
  padding: 8px 20px;
  font-family: var(--secondary-font);
  font-weight: 500 !important;
  color: var(--text-color-1);
  border-radius: 30px;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.recommended-rooms .price-and-button .view-room-btn:hover {
  background-color: var(--secondary-color);
}

#rooms-suites .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

#rooms-suites .pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
}

#rooms-suites .pagination ul a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-family: var(--secondary-font);
  background: var(--bg-1);
  color: var(--text-color-1);
  border: 1px solid var(--secondary-color);
  padding: 10px 40px;
  border-radius: 30px;
  font-weight: 500;
  transition: 0.4s;
}

#rooms-suites .pagination ul a:hover {
  background: var(--secondary-color);
  color: var(--text-color-1);
  border: 1px solid var(--secondary-color);
}

#rooms-suites .pagination ul .active {
  background: var(--secondary-color);
  color: var(--text-color-1);
  border: 1px solid var(--secondary-color);
}

#rooms-suites .pagination ul .disable {
  background: var(--bg-1);
  color: var(--text-color-2);
  border: 1px solid var(--text-color-2);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  #rooms-suites.card {
    flex: 1 1 calc(50% - 15px);
  }
}

@media (max-width: 992px) {
  .card {
    flex: 1 1 calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  #rooms-suites .pagination {
    width: 100%;
    justify-content: center;
  }

  #rooms-suites .pagination ul {
    width: 100%;
    justify-content: space-between !important;
  }

  #rooms-suites .pagination ul a {
    font-size: 12px;
    padding: 6px 16px;
  }

  .card {
    flex: 1 1 calc(100% - 15px);
  }
  .recommended-rooms .card-content h3 {
    font-size: 24px !important;
  }

  .recommended-rooms .price {
    font-size: 1.1rem;
  }

  .recommended-rooms .view-room-btn {
    font-size: 0.9rem;
  }

  #rooms-suites .header h3 {
    width: 100%;
    font-size: 28px !important;
    padding: 30px 0px 30px 0px;
  }

  .recommended-rooms .price span {
    font-size: 14px;
  }

  .recommended-rooms .price {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  #rooms-suites .pagination ul {
    gap: 6px;
  }
}

@media (max-width: 480px) {
  #rooms-suites .news-item {
    flex: 1 1 100%;
  }
}
/* Rooms & Suites 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: 14px;
  font-family: var(--secondary-font);
  font-weight: 500;
  padding: 8px 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 */
