/* ✅ Amenities Info Overlay */
.amenities-info {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: rgba(91, 140, 231, 0.85);
  color: #000;
  padding-right: 1.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 80px;
  width: 700px;
  height: 100%;
  z-index: 2;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

/* ✅ Amenities Info Overlay */
.amenities-info {
    background-image: url(../images/note-white.png);
    background-size: 850px auto; /* example width */
    background-repeat: no-repeat;
    background-position: left 0 bottom 1rem;
}
.amenities-info h1{
    line-height: 3.5rem;
    margin-bottom: 1rem;
}
.amenities-info p {
  font-size: 1rem;
  line-height: 1.5;
}

.amenities-info ul {
  list-style: disc;
  margin-top: 1rem;
  padding-left: 1.5rem;
}

.amenities-info li {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  list-style: none;
}

.carousel {
  flex: 1;
  position: relative;
  height: 100vh;
  background: #000;
  overflow: hidden;
}

 .slide {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     opacity: 0;
     transition: opacity 1s ease-in-out;
     z-index: 0;
 }

 .slide img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .slide.active {
     opacity: 1;
     z-index: 1;
 }

 .controls {
     position: absolute;
     bottom: 50px;
     right: 8rem;
     display: flex;
     gap: 10px;
     z-index: 2;
 }

 .arrow {
     background: rgba(0, 0, 0, 0.6);
     color: white;
     border: none;
     font-size: 1.5rem;
     padding: 10px 16px;
     cursor: pointer;
     border-radius: 5px;
     transition: background 0.3s ease;
 }

 .arrow:hover {
     background: rgba(0, 0, 0, 0.9);
 }

 /* Responsive adjustments */
@media (max-width: 768px) {
  .amenities-info h1{
    font-size: 2rem;
    width: 420px;
  }

  .amenities-info li {
    margin-bottom: 0.3rem;
    font-size: 1rem;
  }
}