.rooms-section {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.rooms-section h2 {
  font-size: 3.5rem;
  text-align: center;
  font-weight: bold;
  padding: 10px;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
  color: #2c3e50;
}

.room-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background: white;
  padding: 10px;
}

.room-card:hover {
  background: rgb(233, 228, 228);
}

.room-price {
  color: #215992;
  font-size: 1.3rem;
}

.card-img-top {
  height: 300px;
  padding: 8px;
}

.btn-view-details {
  background-color: #1f86ec;
  font-weight: 600;
  color: white;
  font-size: 1.2rem;
  padding: 5px 15px;
  border-radius: 5px;
}

.btn-view-details:hover {
  background-color: #2c3e50;
  color: white;
}

.btn-view-all-rooms {
  background-color: #ffcc00;
  border-color: black;
  color: #2c3e50;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-learn-rooms:hover {
  background-color: #2c3e50;
  color: white;
  transform: translateY(-2px);
}

.btn-view-all-rooms {
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-view-all-rooms:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.3);
}
