.hero-section {
  height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: white;
  z-index: 10;
  max-width: 800px;
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.9;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.room-showcase {
  position: relative;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  margin: 50px auto;
  max-width: 80%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  z-index: 0;
  margin-top: 10%;
}

.carousel {
  height: 100%;
}

.carousel-inner {
  height: 100%;
  border-radius: 20px;
}

.carousel-item {
  height: 100%;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-overlay {
  position: relative;
  bottom: 200px;
  left: 15%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 15px;
  width: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.price-tag {
  font-size: 0.8rem;
  color: #978667;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  margin-bottom: 8px;
}

.room-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.2;
}

.room-description {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.amenities-list {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #666;
}

.amenity-icon {
  width: 20px;
  height: 20px;
  background: #f8f9fa;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #666;
}

.action-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.book-now-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #978667;
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
}

.book-now-btn:hover {
  background: #645842;
  color: white;
  text-decoration: none;
  transform: translateX(2px);
}

.carousel-indicators {
  bottom: 20px;
  left: 20px;
  right: auto;
  margin: 0;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  margin: 0 3px;
}

.carousel-indicators [data-bs-target].active {
  background: rgba(255, 255, 255, 0.9);
}

.map {
  margin-top: -5%;
}
@media (max-width: 768px) {
  .room-showcase {
    height: 400px;
    margin: 30px 15px;
    border-radius: 15px;
    max-width: 100%;
    margin-top: 20%;
  }

  .room-overlay {
    position: static;
    width: 100%;
    margin-top: -80px;
    margin-left: 15px;
    margin-right: 15px;
    width: calc(100% - 30px);
    border-radius: 15px 15px 0 0;
    margin-bottom: 30%;
  }

  .room-title {
    font-size: 1.5rem;
  }

  .amenities-list {
    gap: 15px;
  }

  .action-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }

  .book-now-btn {
    justify-content: center;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
    margin-top: 20%;
  }
}

@media (max-width: 576px) {
  .section-title h2 {
    font-size: 2rem;
  }

  .section-description {
    font-size: 1rem;
  }
  .section-title::before {
    display: none;
  }

  .room-showcase {
    height: 350px;
  }

  .room-overlay {
    padding: 20px;
  }

  .amenities-list {
    flex-direction: column;
    gap: 10px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
    margin-top: 30%;
  }
}

@media screen and (min-width: 1600px) {
  .hero-section {
    margin-bottom: 5%;
  }
  .map {
    margin-top: -5%;
  }
}
@media screen and (min-width: 3000px) {
  .hero-section {
    margin-bottom: 5%;
  }
  .map {
    margin-top: -5%;
  }
}
