.rooms-section {
  background: #ffffff;
  margin-top: 5%;
}

/* HEADINGS */
.section-title {
  font-size: 42px;
  font-weight: 700;
   color: #6e2611;
}

.section-subtitle {
  max-width: 720px;
  margin: 12px auto 0;
  font-size: 16px;
  color: #6c7a89;
}

/* IMAGE */
.room-image {
  border-radius: 28px;
  overflow: hidden;
}

.room-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.zoom-effect {
  transition: all 0.5s ease-in-out;
}
.zoom-effect:hover {
  transform: scale(1.1);
}

/* ROOM TEXT */
.room-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #6e2611;
}

.room-desc {
  font-size: 15px;
  color: #6c7a89;
  max-width: 480px;
}

/* FEATURES */
.room-features ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.room-features li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #0b1320;
}

.room-features i {
  color: #6e2611;
  margin-right: 8px;
}

/* PRICE */
.price span {
  font-size: 12px;
  color: #8a94a6;
  letter-spacing: 1px;
}

.price h4 {
  color: #0aa36c;
  font-size: 32px;
  font-weight: 700;
  margin: 0;
}

.price small {
  font-size: 14px;
  font-weight: 400;
  color: #6c7a89;
}

/* BUTTON */
.book-btn {
  background: #0aa36c;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

.book-btn:hover {
  background: #08915f;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .section-title {
    font-size: 34px;
  }

  .room-title {
    font-size: 26px;
  }
}
