/* Hero Section */
.hero-section {
  background-image: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470');
  background-size: cover;
  background-position: center;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  font-family: Georgia, serif;
}

.hero-section h1 {
  background: rgba(0,0,0,0.45);
  padding: 20px 40px;
  border-radius: 8px;
  font-size: 48px;
}

/* Booking Bar */
.booking-bar {
  background: #1b2b21;
  padding: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.booking-bar input,
.booking-bar select,
.booking-bar button {
  padding: 10px;
  border-radius: 4px;
  border: none;
}

.booking-bar button {
  background: #c8a96a;
  color: black;
  font-weight: bold;
  cursor: pointer;
}

/* Rooms Section */
.rooms-section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 30px;
  margin-top: 30px;
}

.room-card {
  background: #1b2b21;
  padding: 20px;
  border-radius: 8px;
  color: white;
}

.room-card img {
  width: 100%;
  border-radius: 6px;
}

/* Amenities Section */
.amenities-section {
  padding: 60px 20px;
  text-align: center;
}

.amenities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.amenity {
  background: #1b2b21;
  padding: 15px 25px;
  border-radius: 6px;
}