/* Hotel Management System - Public Styles */

/* Rooms Grid */
.hms-rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.hms-room-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.hms-room-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hms-room-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.hms-room-content {
  padding: 1.5rem;
}

.hms-room-title {
  margin: 0 0 1rem;
  font-size: 1.5rem;
}

.hms-room-excerpt {
  color: #666;
  margin-bottom: 1rem;
}

.hms-room-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.hms-room-price {
  font-weight: 600;
  color: #2271b1;
}

.hms-room-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #2271b1;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
}

.hms-room-link:hover {
  background: #135e96;
}

/* Menu Items */
.hms-menu-items {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.hms-menu-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.hms-menu-image {
  flex-shrink: 0;
}

.hms-menu-image img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
}

.hms-menu-content {
  flex: 1;
}

.hms-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.hms-menu-title {
  margin: 0;
  font-size: 1.25rem;
}

.hms-menu-price {
  font-weight: 600;
  color: #2271b1;
  font-size: 1.1rem;
}

.hms-menu-description {
  color: #666;
  margin-bottom: 0.5rem;
}

.hms-menu-info {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: #999;
}

.hms-dietary-info {
  color: #46b450;
}
