/* rooms.css */
.room-price {
  font-size: 1.5rem;
  font-family: 'Cinzel', serif;
  color: var(--saffron);
  margin: 10px 0;
  font-weight: 700;
}

.room-card img {
  height: 240px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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