/* Hero Slider Setup */
.hero-slider .carousel-item {
  height: 60vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Contrast Overlay for Carousel Text */
.hero-slider .carousel-caption {
  background: rgba(0, 0, 0, 0.65);
  padding: 2rem;
  border-radius: 8px;
  bottom: 20%;
  color: #ffffff !important;
}

.hero-slider .carousel-caption h1,
.hero-slider .carousel-caption p {
  color: #ffffff !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* Sub-page Header Banners */
.page-hero {
  height: 35vh;
  min-height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.page-hero .hero-title {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.room-card img {
  height: 220px;
  object-fit: cover;
}
/* Centered Header Logo */
.main-header-logo {
  height: 110px;
  width: auto;
  object-fit: contain;
  transition: transform 0.2s ease-in-out;
}

.main-header-logo:hover {
  transform: scale(1.03);
}

/* Hero Section Logo */
.hero-logo {
  height: 120px;
  width: auto;
  filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.7));
}

/* Footer Logo */
.footer-logo {
  height: 80px;
  width: auto;
  display: block;
}