body {
    background-color: #f8f9fa;
}

.navbar-brand {
    font-weight: bold;
}

footer {
    position: relative;
    bottom: 0;
    width: 100%;
}
.slider-img {
    height: 420px;
    object-fit: cover;
    filter: brightness(70%);
}

.carousel-caption {
    bottom: 35%;
}

.carousel-caption h1 {
    font-size: 3rem;
    font-weight: bold;
}

.carousel-caption p {
    font-size: 1.3rem;
}

.counter {
    font-size: 3rem;
    font-weight: bold;
    color: #0d6efd;
}
/* ===== HERO SLIDER IMAGE FIX ===== */
.slider-img {
    width: 100%;
    height: 450px;          /* SAME HEIGHT FOR ALL */
    object-fit: cover;      /* Crop image without stretching */
    object-position: center;
    filter: brightness(70%);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .slider-img {
        height: 260px;
    }
}


.hotel-footer {
    background: #0b1c2d;
    color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    padding: 50px 10%;
}

.footer-box h3 {
    color: #f5c46b;
    margin-bottom: 15px;
}

.footer-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #ddd;
}

.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box ul li {
    margin-bottom: 10px;
}

.footer-box ul li a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.footer-box ul li a:hover {
    color: #f5c46b;
}

.social-links a {
    display: inline-block;
    font-size: 20px;
    margin-right: 10px;
    color: #f5c46b;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    background: #071421;
    text-align: center;
    padding: 15px;
    font-size: 13px;
    color: #aaa;
}

h1, h4 {
    color: #0b1c2d;
}

.btn-primary {
    background-color: #0b1c2d;
    border: none;
}

.btn-primary:hover {
    background-color: #f5c46b;
    color: #000;
}

a {
    text-decoration: none;
}
.room-img {
    height: 250px;          /* same height for all */
    width: 100%;
    object-fit: cover;      /* crop properly */
}

.review-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.review-card .card-body {
    position: relative;
    padding: 25px;
}

.review-card .card-title {
    color: #0b1c2d;
    font-weight: 600;
    margin: 10px 0;
}

.review-card .blockquote-footer {
    margin-top: 15px;
    font-size: 0.9rem;
}

.review-card .text-warning {
    text-shadow: 0 2px 4px rgba(255,215,0,0.2);
}

@media (max-width: 768px) {
    .review-card {
        margin-bottom: 20px;
    }
    
    .btn-lg {
        width: 100%;
        margin: 5px 0 !important;
    }
}

.swiper {
  padding: 40px 10px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.review-card {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 15px;
  width: 100%;
  max-width: 350px;
  min-height: 220px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-text {
  margin: 15px 0;
  font-size: 14px;
  color: #555;
}

/* Arrow color fix */
.swiper-button-next,
.swiper-button-prev {
  color: #000;
}

/* Pagination color */
.swiper-pagination-bullet-active {
  background: #000;
}

.reviewSwiper {
  width: 100%;
  padding-bottom: 40px;
}

.review-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  height: 100%;
}

.swiper-slide {
  height: auto;
}

/* ===== Booking Style Search ===== */

.booking-search-wrapper {
  position: sticky;
  top: 60px;
  z-index: 999;
  
  padding: 15px 0;
}

.booking-search-box {
  display: flex;
  align-items: center;
  background: #bed1e5fa; /* Booking yellow */
  border-radius: 12px;
  padding: 8px;
  gap: 8px;
}

/* ===== Base Search Item ===== */
.search-item {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  flex: 1;
  min-height: 48px;
}

.search-item i {
  margin-right: 8px;
  color: #555;
  font-size: 14px;
}

.search-item input,
.search-item select {
  border: none !important;
  box-shadow: none !important;
  font-size: 14px;
  width: 100%;
  background: transparent;
}

/* ============================= */
/* 📱 MOBILE RESPONSIVE STYLE */
/* ============================= */

@media (max-width: 767px) {
  .booking-search-wrapper {
    position: static;   /* Remove fixed */
    top: auto;
  }
}

  .search-item {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
  }

  .search-item input,
  .search-item select {
    font-size: 15px;
  }

  .search-btn {
    width: 100%;
  }

  .search-btn button {
    height: 50px;
    font-size: 16px;
    border-radius: 12px;
  }
}


/* ============================= */
/* 💻 DESKTOP STYLE */
/* ============================= */

@media (min-width: 992px) {

  .booking-search-box {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .search-item {
    flex: 1;
  }

  .search-btn {
    flex: 0.6;
  }

}

.search-btn {
  flex: 0.5;
}

.search-btn .btn {
  border-radius: 8px;
  font-weight: 600;
  height: 100%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .booking-search-box {
    flex-direction: column;
  }

  .search-btn {
    width: 100%;
  }
}

