/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
  text-align: center;
}

.hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-content h1 {
  font-family: serif;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.5);
}

.scroll-indicator div {
  width: 1px;
  height: 3rem;
  margin: auto;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
}

/* About Section */
.about-img-wrapper {
  position: relative;
}

.about-img-wrapper .bg-block {
  position: absolute;
  width: 16rem;
  height: 16rem;
  background-color: #e5e5e5;
  border-radius: 1rem;
  bottom: -2rem;
  right: -2rem;
  z-index: -1;
  display: none;
}

@media(min-width:992px) {
  .about-img-wrapper .bg-block {
    display: block;
  }
}

/* Amenities */
.amenity-card {
  transition: transform 0.3s, background-color 0.3s;
}

.amenity-card:hover {
  transform: translateY(-5px);
  background-color: #f5f5f5;
}

/* Room Cards */
.room-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  transition: transform 0.7s;
}

.room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.room-card:hover img {
  transform: scale(1.1);
}

.room-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  transition: opacity 0.3s;
}

.room-card:hover .room-overlay {
  opacity: 1;
}

.story-hover:hover a {
  color: black !important;
}

.bgc {
  background-color: #1c1c1c;
}