.btn-outline-gold {
  color: var(--bs-gold);
  background-color: transparent;
  border: 1px solid var(--bs-gold);
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  background-color: rgba(184, 134, 11, 0.1);
  color: var(--bs-gold);
  box-shadow: 0 0 15px rgba(184, 134, 11, 0.2);
  border-color: var(--bs-gold);
}

.title-stars {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-left: .6rem;
  vertical-align: middle;
  line-height: 1;
}

.title-stars i, .title-stars svg {
  display: block;
  width: 18px;
  height: 18px;
  font-size: 18px;
}

/* Sticky must not be inside an overflow/transform context */

@media (min-width: 992px) {
  #bookingCol, #bookingCardWrap {
    overflow: visible !important;
    transform: none !important;
  }
}

/* Real sticky behavior: sticks, then releases when parent ends */

@media (min-width: 992px) {
  #bookingCard {
    position: sticky;
    top: 100px;
    z-index: 5;
    will-change: transform;
    backface-visibility: hidden;
    transform: translate3d(0,0,0);
  }
}

@media (max-width: 991.98px) {
  #bookingCard {
    transform: none !important;
  }
}

.btn-phone-gold {
  transition: all .22s ease;
}

.btn-phone-gold:hover, .btn-phone-gold:focus {
  background: rgba(184,134,11,.06);
  border: 1px solid rgba(184,134,11,.95);
  color: rgba(184,134,11,1) !important;
  box-shadow: 0 0 0 1px rgba(184,134,11,.25), 0 0 26px rgba(184,134,11,.28);
}

.btn-phone-gold:focus {
  outline: none;
}

.rooms-hero {
  position: relative;
  overflow: hidden;
}

.rooms-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  animation: heroKenBurns 14s ease-in-out infinite alternate;
  will-change: transform;
}

.rooms-hero-overlay {
  position: absolute;
  inset: 0;
}

.rooms-hero-content {
  position: relative;
  z-index: 2;
}

@keyframes heroKenBurns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  .rooms-hero-bg {
    animation: none !important;
    transform: none !important;
  }
}

