@media (max-width: 767px) {
  .excursion-list .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
/* Excursion card: consistent height for all cards in a row */
.excursion-list .row {
  display: flex;
  flex-wrap: wrap;
}
.excursion-list .col-md-6 {
  display: flex;
}
.excursion-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
/* Excursion image: fixed size and ratio for all cards */
/* Excursion image: aspect-ratio using padding-top and absolute positioning */
.excursion-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 48%;
  overflow: hidden;
  background: #f8f8f8;
}
.excursion-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Excursion Card Styles */
.excursion-list {
  margin-top: 40px;
  margin-bottom: 40px;
}
.excursion-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.2s;
}
.excursion-card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
}
/* Excursion image: fixed size and ratio */
.excursion-img-wrapper {
  width: 100%;
  max-width: 100%;
  height: 240px;
  overflow: hidden;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.excursion-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.excursion-info {
  padding: 20px 18px 18px 18px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.excursion-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}
.excursion-desc {
  font-size: 1rem;
  color: #555;
}
@media (max-width: 991px) {
  .excursion-list .col-md-6 {
    margin-bottom: 30px;
  }
}
/* Room Types Section Styles */
.room-types-section {
  padding: 60px 0 30px 0;
}
.room-type-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}
.room-type-row.flex-row {
  flex-direction: row;
}
.room-type-row.flex-row-reverse {
  flex-direction: row-reverse;
}
.room-slider-col, .room-info-col {
  padding: 0 15px;
}
.room-slider {
  width: 100%;
  margin: 0 auto;
}
.room-slider .slides img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.room-category {
  font-size: 2rem;
  margin: 0 0 15px 0;
}
.room-desc {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.room-features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 25px;
  margin-bottom: 20px;
}
.room-features-grid .feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  min-width: 120px;
}
.room-features-grid .feature i {
  font-size: 1.4em;
  color: #3c8dbc;
}
@media (max-width: 991px) {
  .room-type-row {
    flex-direction: column !important;
    text-align: center;
  }
  .room-slider {
    max-width: 100%;
  }
  .room-features-grid {
    justify-content: center;
  }

  .room-slider-col, .room-info-col {
  padding: 20px 15px;
}

}
/* Rooms page banner override */
.rooms-banner-bg {
  background-image: url('img/slider_1.jpg') !important;
}
/* About page banner refactor */
.about-banner-section {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  padding: 0;
}
.banner-bg {
  position: relative;
  width: 100%;
  min-height: 350px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(34,34,34,0.4); /* overlay color */
  z-index: 1;
}
.banner-bg .container,
.banner-bg .about-banner-text {
  position: relative;

  z-index: 2;
}

.banner-bg h1{
  color: #fff;
}

/* Dining section: responsive images with fixed aspect ratio */
.dining-row .probootstrap-block-image-text figure {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  margin: 0;
}
.dining-row .probootstrap-block-image-text img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Excursion section: equal height boxes and fixed-ratio images */
@media (min-width: 768px) {
  .owl-carousel-carousel {
    display: flex;
    flex-wrap: wrap;
  }
  .excursion-item {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .excursion-item .probootstrap-room {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .excursion-item .excursion-img-wrapper {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
  }
  .excursion-item .excursion-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .excursion-item .text {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
}
/* Equal height for home page rooms section */
@media (min-width: 992px) {
  .home-rooms-row {
    display: flex;
    flex-wrap: wrap;
  }
  .home-rooms-row > .col-md-6 {
    display: flex;
    flex-direction: column;
  }
  .home-rooms-row .probootstrap-block-image-text {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
  }
}
/* Your custom css code goes here */

@media (min-width: 992px) { /* Medium devices and up */
  .dining-row {
    display: flex;
    align-items: center;
  }
}