/* Image banner */
.image-banner {
  position: relative;
  display: flex;
  height: 90vh;
  width: 100%;
}
.image-banner img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  flex-shrink: 0;
}
.rooms {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  padding: 30px 14%;
  position: relative;
  overflow: hidden;
}
.rooms-container {
  align-items: center;
  z-index: 2;
}
.rooms-container h1,
h3,
p {
  margin-bottom: 24px;
}
.rooms-container h2 {
  color: var(--primary-colour);
}

.background {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    width: 100%;
    height: 100%;
    opacity: 10%;
  }
  .background img {
    object-fit: cover;
    flex-shrink: 0;
  }
  .palm-leaves-right {
    position: absolute;
    pointer-events: none;
    right: -8%;
    width: 600px;
    bottom: 0;
  }
  .palm-leaves-left {
    position: absolute;
    pointer-events: none;
    left: -8%;
    transform: scaleX(-1);
    width: 600px;
    bottom: 0;
  }
  
