/* room-details.css - Custom styles for room detail pages */

.price-tag {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 24px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 20px;
}

.book-now-btn {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s;
  text-transform: uppercase;
  margin-top: 20px;
  width: 100%;
  text-align: center;
}

.book-now-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.room-availability {
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 20px;
  padding: 8px 12px;
  border-radius: 4px;
  display: inline-block;
}

.available {
  background-color: rgba(25, 135, 84, 0.15);
  color: #198754;
}

.limited {
  background-color: rgba(255, 193, 7, 0.15);
  color: #ffc107;
}

.features-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.features-list i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 18px;
}

.room-gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.room-gallery-thumbs img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

.room-gallery-thumbs img:hover {
  opacity: 0.7;
}

/* Responsive styles */
@media (max-width: 768px) {
  .portfolio-info {
    margin-top: 30px;
  }
  
  .price-tag {
    margin-top: 20px;
    font-size: 20px;
  }
}

/* Related rooms section */
.related-rooms .card {
  transition: 0.3s;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.related-rooms .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.related-rooms .card-img-top {
  height: 200px;
  object-fit: cover;
}
