.special-package-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Arial', sans-serif;
}

.special-package-container h1 {
  font-size: 32px;
  margin-bottom: 10px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 5px;
}

.package-content {
  margin-bottom: 30px;
  line-height: 1.6;
}

.available-rooms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.room-card {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
  background-color: #fafafa;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}
.room-card-header {
  height: 180px;
  background-size: cover;
  background-position: center center;
  border-radius: 8px 8px 0 0;
  margin: -20px -20px 20px -20px;
}

.room-description {
  margin-top: 10px;
  color: #444;
  font-size: 15px;
  line-height: 1.5;
}
.room-capacity {
  margin-top: 10px;
  color: #444;
  font-size: 15px;
  line-height: 1.5;
}
.room-price {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.5;
}
.room-card:hover {
  transform: translateY(-3px);
}

.room-thumbnail img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.room-card h4 {
  font-size: 20px;
  margin-top: -30px;
  margin-bottom: 8px;
  background-color: #fafafa;
  text-align: center;
}

.room-card p {
  margin: 6px 0;
  color: #555;
}

.book-now-button {
  /* background-color: #0073aa; */
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 12px;
  transition: background 0.3s;
}

.book-now-button:hover {
  /* background-color: #005e8a; */
}

.unavailable-text {
  color: red;
  font-weight: bold;
  margin-top: 15px;
  display: block;
}
