body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f9f9f9;
  color: #333;
}

.section {
  padding: 40px 20px;
  text-align: center;
}

.section-title {
  font-size: 28px;
  margin-bottom: 40px;
}

.room-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.room-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 300px;
  padding: 20px;
  text-align: left;
}

.room-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.room-price {
  font-size: 22px;
  color: #e74c3c;
  margin-bottom: 10px;
}

.room-price span {
  font-size: 14px;
  color: #555;
}

.room-features {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.room-features li {
  padding: 5px 0;
  border-bottom: 1px solid #eee;
}

.room-button {
  display: inline-block;
  background: #27ae60;
  color: white;
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
  margin-bottom: 8px;
}

.room-button:hover {
  background: #219150;
}

.room-info {
  font-size: 12px;
  color: #777;
}

.carousel {
  margin-top: 15px;
  overflow-x: scroll;
  display: flex;
  gap: 10px;
}

.carousel img {
  width: 100%;
  border-radius: 8px;
  max-width: 270px;
}
.section {
  padding: 40px 20px;
  background-color: #f9f9f9;
}
.section-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  color: #333;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.room-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.room-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.room-price {
  font-size: 18px;
  color: red;
  font-weight: bold;
  margin-bottom: 10px;
}

.room-price span {
  font-size: 14px;
  color: #555;
}

.room-features {
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
}
.room-features li {
  margin: 4px 0;
}

.room-button {
  display: inline-block;
  background: #27ae60;
  color: white;
  padding: 10px 20px;
  border-radius: 20px; /* lebih pendek dari kapsul penuh */
  text-decoration: none;
  text-align: center;
  margin: 8px 0;
  transition: background 0.3s ease, transform 0.2s ease;
}

.room-button:hover {
  background: #219150;
  transform: scale(1.05);
}

.room-info {
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
}

.carousel img {
  width: 100%;
  border-radius: 8px;
  margin-top: 10px;
}
.section {
  padding: 40px 20px;
  background-color: #f9f9f9;
  max-width: 1200px;
  margin: 0 auto; /* CENTER SECTION */
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  justify-content: center; /* CENTER GRID CONTENT */
}
.room-title {
  font-size: 20px;
  font-weight: bold;
  background-color: #2918c6;
  color: white;
  padding: 10px;
  border-radius: 8px;
  display: block;
  width: 100%;
  text-align: center;
}
