body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

header .logo-box {
  width: 35px;
  height: 35px;
  border: 2px solid #fff;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  height: 100vh;
}

.carousel-caption {
  bottom: 20%;
}

.booking-section {
  background: linear-gradient(135deg, #000000, #1a1a1a);
}

.service-box:hover {
  background-color: #ffe5cc;
  transition: 0.3s;
}

.about-images img {
  width: 300px;
  height: 300px;
  object-fit: cover;
}

#scrollTopBtn {
  display: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}
#rooms .room-item:hover {
  border-color: goldenrod;
  transition: border-color 0.3s ease;
}

#rooms button.btn-warning {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

#rooms button.btn-warning:hover {
  background-color: goldenrod;
}
/* Amenities Section Styles */
.amenity-card {
  transition: all 0.3s ease;
  cursor: pointer;
}

.amenity-card:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.amenity-card i {
  transition: transform 0.3s ease;
}

.amenity-card:hover i {
  transform: scale(1.15);
}
/* Rooms Gallery Section Styles */
#rooms-gallery .card {
  background-color: #1e1e1e;
  border: none;
  transition: all 0.3s ease;
}

#rooms-gallery .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(255, 165, 0, 0.25);
}

#rooms-gallery .card img {
  transition: transform 0.5s ease;
}

#rooms-gallery .card:hover img {
  transform: scale(1.1);
}

.badge-custom {
  background-color: #ff8800;
  color: white;
  font-weight: 500;
}

.price-tag {
  background: rgba(0, 0, 0, 0.75);
  padding: 4px 10px;
  border-radius: 4px;
}

.text-gray {
  color: #aaa;
}
/* Gradient Background */
.bg-gradient {
  background: linear-gradient(to bottom, #ffffff, #fff3e0);
}

/* Activity Section Styles */
.activity-card {
  transition: all 0.3s ease;
  cursor: pointer;
}

.activity-card:hover {
  box-shadow: 0 8px 25px rgba(255, 165, 0, 0.25);
  transform: translateY(-4px);
}

.activity-card .icon-box {
  width: 60px;
  height: 60px;
  background-color: #fff5e5;
  color: #ff8800;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.activity-card:hover .icon-box {
  background-color: #ff8800;
  color: #fff;
}

.activity-card a:hover {
  color: #e06f00;
}
/* Footer Styling */
.footer-link {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ff9800;
}

.gallery-img {
  transition: transform 0.4s ease;
}

.gallery-img:hover {
  transform: scale(1.1);
}

/* Logo box */
.logo-box {
  width: 40px;
  height: 40px;
}

/* Scroll-to-top button */
#scrollTopBtn {
  width: 50px;
  height: 50px;
  display: none;
  transition: background-color 0.3s ease;
}

#scrollTopBtn:hover {
  background-color: #e67e00;
}
/* Restaurant Section */
#restaurant .restaurant-img {
  border-radius: 15px;
  transition: transform 0.5s ease;
}

#restaurant .restaurant-img:hover {
  transform: scale(1.03);
}

#restaurant .rounded-top-right {
  border-top-right-radius: 10px;
}

#restaurant i {
  transition: transform 0.3s ease;
}

#restaurant i:hover {
  transform: scale(1.2);
}
/* Contact hero matches site theme */
.contact-hero {
  height: 45vh;
  padding-top: 96px; /* avoid header overlap */
  background: linear-gradient(180deg, rgba(0,0,0,.65), rgba(0,0,0,.4)),
              url('https://images.unsplash.com/photo-1551776235-dde6d4829808?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

/* Icon pill and cards */
.icon-pill {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 20px;
}

.contact-card {
  transition: transform .25s ease, box-shadow .25s ease;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(255, 165, 0, 0.20);
}

/* Map wrapper fixed height */
.map-wrapper {
  min-height: 380px;
}

/* Breadcrumb tweak for contrast */
.contact-hero .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,.6);
}
.rooms-hero {
  height: 45vh;
  padding-top: 96px;
  background: linear-gradient(180deg, rgba(0,0,0,.65), rgba(0,0,0,.45)),
              url('https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.room-list .room-item:hover h4 {
  color: goldenrod;
  transition: color 0.3s ease;
}

.card img {
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover img {
  transform: scale(1.05);
}

.card {
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 25px rgba(255, 165, 0, 0.2);
}
/* Amenity Card Base */
.amenity-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  transition: all 0.4s ease;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transform: translateY(0);
}

/* Hover Effects */
.amenity-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 30px rgba(255, 193, 7, 0.3);
}

/* Gradient glow border on hover */
.amenity-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, goldenrod, goldenrod, goldenrod);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.amenity-card:hover::before {
  opacity: 1;
}

/* Icon animations */
.amenity-card i {
  transition: transform 0.4s ease, color 0.3s ease;
}

.amenity-card:hover i {
  transform: scale(1.2) rotate(5deg);
  color: goldenrod;
}

/* Text animation */
.amenity-card p {
  transition: color 0.3s ease, transform 0.3s ease;
}

.amenity-card:hover p {
  color: #333;
  transform: translateY(3px);
}

/* Optional: Subtle glowing background pulse */
@keyframes glowPulse {
  0% {
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
  }
  100% {
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.2);
  }
}

.amenity-card:hover {
  animation: glowPulse 1.5s infinite alternate;
}

