/* Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Section Titles */
.section-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #7a4e2f;
}

/* Room Intro */
.intro-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.intro-text {
  flex: 1;
  min-width: 280px;
}

.intro-image {
  flex: 1;
  min-width: 280px;
}

.image-frame {
  border: 5px solid #d3b67d;
  border-radius: 10px;
  overflow: hidden;
}

/* Room Categories */
.room-category {
  margin-bottom: 3rem;
}

.category-title {
  font-size: 1.8rem;
  color: #4b2e1d;
  margin-bottom: 1rem;
}

.room-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.room-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.room-card:hover {
  transform: translateY(-5px);
}

.room-details {
  padding: 1rem;
}

.room-name {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.room-desc {
  margin-bottom: 0.75rem;
  color: #555;
}

.room-features {
  list-style: disc inside;
  color: #444;
  margin-bottom: 0.75rem;
}

.room-price {
  font-weight: bold;
  color: #b8860b;
  margin-bottom: 0.5rem;
}

.gold-button {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background-color: #c4a000;
  color: #fff;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s;
}

.gold-button:hover {
  background-color: #a98900;
}

/* Amenities Section */
.amenities-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.amenity-card {
  background: #f4f0e6;
  padding: 1.5rem;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.amenity-icon img {
  width: 50px;
  margin-bottom: 1rem;
}

.amenity-title {
  font-size: 1.2rem;
  color: #593e2f;
  margin-bottom: 0.5rem;
}
/* Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Section Titles */
.section-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #7a4e2f;
}

/* Room Intro */
.intro-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.intro-text {
  flex: 1;
  min-width: 280px;
}

.intro-image {
  flex: 1;
  min-width: 280px;
}

.image-frame {
  border: 5px solid #d3b67d;
  border-radius: 10px;
  overflow: hidden;
}

/* Room Categories */
.room-category {
  margin-bottom: 3rem;
}

.category-title {
  font-size: 1.8rem;
  color: #4b2e1d;
  margin-bottom: 1rem;
}

.room-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.room-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.room-card:hover {
  transform: translateY(-5px);
}

.room-details {
  padding: 1rem;
}

.room-name {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.room-desc {
  margin-bottom: 0.75rem;
  color: #555;
}

.room-features {
  list-style: disc inside;
  color: #444;
  margin-bottom: 0.75rem;
}

.room-price {
  font-weight: bold;
  color: #b8860b;
  margin-bottom: 0.5rem;
}

.gold-button {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background-color: #c4a000;
  color: #fff;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s;
}

.gold-button:hover {
  background-color: #a98900;
}

/* Amenities Section */
.amenities-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.amenity-card {
  background: #f4f0e6;
  padding: 1.5rem;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.amenity-icon img {
  width: 50px;
  margin-bottom: 1rem;
}

.amenity-title {
  font-size: 1.2rem;
  color: #593e2f;
  margin-bottom: 0.5rem;
}

/* Booking CTA */
.booking-cta {
  background-color: #d8c49c;
  padding: 3rem 1rem;
  text-align: center;
}

.cta-content h2 {
  font-size: 2rem;
  color: #2e2e2e;
  margin-bottom: 1rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.cta-button {
  background: #b8860b;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: bold;
}

.cta-button:hover {
  background: #a67400;
}
