/* Responsive and Improved Styling */
.header {
  height: 10vh;
}

.roomsdetails {
  min-height: 80vh;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.roomsdetails .roomimage {
  padding-top: 2rem;
  display: flex;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.mainimage {
  flex-grow: 1;
  text-align: center;
}

.roomsdetails .roomimage .mainimage img {
  max-height: 60vh;
  max-width: 100%;
  height: auto;
  width: auto;
}

.otherimage {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.roomsdetails .roomimage .otherimage img {
  max-height: 20vh;
  max-width: 100%;
  height: auto;
  width: auto;
  margin: 1rem;
}

.roomvideo {
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.roomvideo video {
  max-height: 50vh;
  max-width: 100%;
  height: auto;
  width: auto;
}

.roomaboutdetails {
  text-align: center;
  min-height: 20vh;
  margin: auto;
  width: 93%;
}

.mainheader p {
  font-size: 1.5rem;
  line-height: 1.8;
  padding: 1.5rem 0;
}

.mainheader h1 {
  letter-spacing: 0.1rem;
  font-size: 3rem;
  text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .roomsdetails {
    padding: 1rem;
  }

  .roomsdetails .roomimage {
    flex-direction: column;
    align-items: center;
  }

  .mainimage img {
    max-height: 40vh;
  }

  .roomsdetails .roomimage .otherimage img {
    max-height: 15vh;
    margin: 0.5rem;
  }

  .roomvideo video {
    max-height: 40vh;
  }

  .mainheader h1 {
    font-size: 3rem;
  }

  .mainheader p {
    font-size: 1.8rem;
  }
}
