/* style.css */

.room-section {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.room-section img {
  width: 100%;
  border-radius: 10px;
}

.room-card {
  position: absolute;
  top: 20%;
  left: 5%;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
  width: 280px;
}

.room-card h3 {
  margin: 0 0 10px;
}

.room-card p {
  font-size: 14px;
  color: #555;
}

.features {
  display: flex;
  justify-content: space-between;
  margin: 15px 0;
}

.feature {
  text-align: center;
  font-size: 14px;
}

.feature i {
  font-size: 20px;
  display: block;
  margin-bottom: 5px;
}

.btn {
  display: block;
  background: #333;
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.btn:hover {
  background: #555;
}