#pageHeader {
  background: url("../img/event.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  /* margin-bottom: 100px; */
}

h2,
h3,
h1 {
  margin: 0;
  padding: 0;
  font-size: 40px;
}

.asec {
  background-color: #fff;
  padding: 10px 20px;
  text-align: center;
}

.highlight-text {
  color: rgb(15, 197, 204);
}

.section1,
.ideas-section {
  background-color: #fff;
  padding: 50px 20px;
  margin-bottom: 20px;
}

.header1 {
  margin-bottom: 20px;
}

.amenities {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.amenity {
  flex: 1;
  max-width: 200px;
  margin: 20px;
  text-align: center;
}

.amenity img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.ideas-section {
  background-color: #333;
  color: #fff;
  padding: 50px 20px;
}

.explore-ideas {
  margin-bottom: 20px;
}

.explore-ideas h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.explore-ideas p {
  line-height: 1.6;
  margin-bottom: 30px;
}

.host-btn,
.upcoming-link {
  display: inline-block;
  padding: 15px 20px;
  background-color: orangered;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
  margin: 0 10px;
}

.host-btn:hover,
.upcoming-link:hover {
  background-color: rgb(239, 81, 23);
  color: #fff;
  transform: scale(1.1);
}

.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.upcoming-link {
  background-color: orangered;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
}

@media (max-width: 768px) {
  .amenities {
    flex-direction: column;
    align-items: center;
  }

  .amenity {
    max-width: 100%;
  }

  .button-container {
    flex-direction: column;
  }

  .host-btn,
  .upcoming-link {
    margin: 10px 0;
  }
}
