#banner {
  padding-top: 0;
  position: relative;
  text-align: center;
  color: white;
}

#banner img {
  width: 100%;
  height: 60vh;
  filter: brightness(70%);
}

#banner form {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}

#search {
  width: 100%;
  padding: 15px;
  font-size: 18px;
  border: none;
  border-radius: 5px;
}

.main-hotels {
  padding: 20px;
}

.title1 {
  color: rgb(78, 75, 75);
}

.main-paragraph {
  font-size: 16px;
  color: gray;
  text-align: left;
  padding-left: 30px;
  margin-bottom: 20px;
}

#hotels {
  text-align: center;
}

.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.col {
  flex-basis: 48%;
}

#hotels img {
  width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#hotels img:hover {
  transform: scale(1.1);
}

#hotel-list {
  max-width: auto;
  margin: auto;
  padding: 20px;
  font-family: "Roboto", sans-serif;
}

.title2 {
  text-align: center;
  margin-bottom: 20px;
  color: rgb(78, 75, 75);
}

.title3 {
  text-align: left;
  color: rgb(78, 75, 75);
  padding-left: 30px;
}

.hotel-details {
  font-size: 16px;
  color: gray;
  text-align: left;
  padding-left: 30px;
  margin-bottom: 20px;
}

.hotel-row {
  display: flex;
  align-items: flex-start;
  /* Aligns items at the start to leave space for the button */
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.hotel-image {
  flex: 0 0 300px;
  /* Fixed width for image */
  margin-right: 15px;
  /* Space between image and text */
}

.hotel-image img {
  max-width: 100%;
  /* Responsive image size */
  border-radius: 5px;
}

.hotel-info {
  flex: 1;
  text-align: left;
  /* Left-aligns the text */
}

.rating {
  flex: 0 0 150px;
  /* Fixed width for ratings section */
  text-align: center;
  /* Center-aligns the ratings */
}

.rating p {
  margin: 5px 0;
  /* Space above and below rating */
  color: rgb(78, 75, 75);
}

.button {
  margin: 10px;
  text-align: left;
}

.button button {
  background-color: black;
  border-radius: 20px;
  margin: 5px;
  /* Space above the button */
  text-align: center;
  /* Align text in the button to the left */
  border: none;
  color: white;
  /* Text color */
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  /* Font family */
  cursor: pointer;
  /* Changes cursor to pointer on hover */
  padding: 10px 20px;
  /* Add padding for better size */
}

.button a {
  color: white;
}
.button button:hover {
  background-color: rgba(199, 198, 198, 0.904);
  color: black;
}
.button a:hover {
  color: black;
}
