/* ==========================================================
   ROOMS & SUITES BY ADDBLOOM — MASTER STYLESHEET
   ==========================================================
   Sections:
   1. Carousel (Homepage)
   2. Room Details Section
   3. Buttons & Utilities
   4. Amenities / Facilities Lists
   5. Responsive Adjustments
   6. RTL Support
   7. Full-width Hero Banner
   8. Room Gallery (Single Page)
   9. Other Rooms & Suites Section
   ========================================================== */

/* ==========================================================
   1. CAROUSEL (HOMEPAGE)
   ========================================================== */

.rooms-carousel .room-slide {
  position: relative;
  background: transparent;
  transition: transform 0.4s ease;
}

.rooms-carousel .room-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 0;
}

/* --- Title, Description, and Link --- */
.room-title {
  font-size: 24px;
font-family: var(--wd-title-font);
  margin-bottom: 8px;
  color: #162431;
  text-transform: capitalize;
}

@media only screen and (min-width: 600px) {

.room-desc {
  font-size: 16px;
  color: #162431;
  line-height: 1.6;
  margin-bottom: 10px;
	 display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
}


.room-link {
  font-family: var(--wd-title-font);
  text-decoration: none;
  color: #162431;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
	 display: flex;
  align-items: center;
	gap:10px;
	 transition: transform 0.7s ease;
}

.room-link:hover  {
  transform: translateX(7px); /* ✅ arrow slides right */
	 transition: transform 0.7s ease;
}


.room-link .wd-btn-icon img {
  transition: transform 0.3s ease;
}

.room-link:hover .wd-btn-icon img {
  transform: translateX(4px); /* ✅ arrow slides right */
}



/* --- Text Box Visibility Logic --- */

/* Hide text by default for all slides */
.rooms-carousel .room-textbox {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
}

/* ✅ Show text only on the center (active) slide */
.rooms-carousel .owl-item.center .room-textbox {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
	text-align:left;
	padding:20px;
	height:170px;
}


@media only screen and (max-width: 600px) {
.rooms-carousel .owl-item.center .room-textbox {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
	text-align:left;
	padding:20px;
	height:300px;
}

}

/* Dim side slides */
.rooms-carousel .owl-item:not(.center) .room-img img {
  opacity: 0.5;
  transform: scale(1);
  transition: all 0.4s ease;
}

.rooms-carousel .owl-item.center .room-img img {
  opacity: 1;
  transform: scale(1);
}

/* --- Navigation & Dots Layout --- */
.rooms-carousel-wrap {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
}

/* --- Dots --- */
.rooms-carousel .owl-dots {
  display: flex;
  gap: 5px;
	padding-left: calc((100vw - 1200px - var(--wd-sticky-nav-w) - var(--wd-scroll-w)) / 2);
	position:absolute;
}

@media only screen and (max-width: 600px) {
.rooms-carousel .owl-dots {
margin-left:15px;
}
}

.rooms-carousel .owl-dot {
  width: 10px;
  height: 10px;
  border: 1px solid #000;
  border-radius: 50%;
  background: transparent;
  transition: all 0.3s ease;
}


.home .owl-stage-outer .active{
  background: white;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 0;
}


/* ==========================================================
   2. ROOM DETAILS SECTION (META ICONS & INFO)
   ========================================================== */

.room-description {
  text-align: center;
  max-width: 800px;
  margin: 40px auto 20px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.room-meta-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 80px;
  justify-items: start;
  margin: 40px auto;
  max-width: 800px;
}


@media (max-width: 768px) {
  .room-meta-icons {
    grid-template-columns: 1fr !important;
    gap: 20px; /* smaller gap for mobile */
    justify-items: start;
  }
}


.room-meta-icons .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #001122;
}

.room-meta-icons .feature-item span{
text-transform:uppercase;
}

.room-meta-icons .feature-item img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}


/* ===== Rooms & Suites Card Zoom-In Inside Effect ===== */
.rs-card {
  overflow: hidden;
  position: relative;
}

.rs-card .rs-img-link {
  display: block;
  overflow: hidden;
  position: relative;
}

.rs-card .rs-img-link img {
  width: 100%;
  height: auto;
  display: block;
  transform-origin: center center;
  transform: scale(1);
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

/* On hover: subtle zoom into the image (stays inside frame) */
.rs-card:hover .rs-img-link img {
  transform: scale(1.1);
}

/* Optional: smooth lift and shadow */
.rs-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}



/* ==========================================================
   3. BUTTONS & UTILITIES
   ========================================================== */

.btn-check {
  display: inline-block;
  background: #162431;
  color: #fff;
  padding: 12px 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.3s;
}

.btn-check:hover {
  background: #ccc;
}

.check-availability {
  text-align: center;
}


/* ==========================================================
   4. AMENITIES / FACILITIES LISTS
   ========================================================== */

.room-lists {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;
  margin-top: 60px;
}

.room-list-col h3 {
  text-transform: uppercase;
  margin-bottom: 20px;
	font-size:32px;
	font-family: var(--wd-title-font);
}

@media only screen and (max-width: 1024px) {
.room-list-col h3 {
	font-size:24px;
}
}

.room-list-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.room-list-col li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 16px;
}

.room-list-col img.icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
}


   5. RESPONSIVE ADJUSTMENTS
   ========================================================== */

@media (max-width: 1400px) {
  .rooms-carousel .room-slide { min-height:auto; }
  .room-textbox { padding: 20px; }
  .room-title { font-size: 20px; }
}

@media (max-width: 991px) {
  .rooms-carousel .room-slide { min-height: auto;  }
  .room-textbox { min-height: auto; }
  .rooms-nav { bottom: 15px; right: 20px; }
  .rooms-nav button { font-size: 24px; }
}

@media (max-width: 767px) {
  .rooms-carousel .room-slide { min-height:auto; }
  .room-textbox { padding: 20px; }
  .room-title { font-size: 18px; }
}


/* ==========================================================
   6. RTL SUPPORT
   ========================================================== */

html[dir="rtl"] .room-textbox { text-align: right; }
html[dir="rtl"] .rooms-nav { right: auto; left: 40px; flex-direction: row-reverse; }
html[dir="rtl"] .rooms-nav button { transform: scaleX(-1); }


/* ==========================================================
   7. FULL-WIDTH HERO BANNER (Single Room Top Image)
   ========================================================== */

.room-hero-banner {
  position: relative;
  width: 100vw;
  height: 40vw;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  left: 50%;
  margin-left: -50vw;
  overflow: hidden;
  margin-bottom: 50px;
}

@media only screen and (max-width: 600px) {
.room-hero-banner {
	height:40vh;

}

}

.room-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.room-hero-content {
  position: absolute;
  bottom: 35%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
}

.room-hero-content h1 {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
  color: #fff;
  margin: 0;
}



/* ==========================================================
   8. SINGLE ROOM GALLERY — FULL WIDTH CENTERED CAROUSEL
   ========================================================== */

.single-gallery {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  background: #fff;
	padding-top:50px;
}

.single-gallery .rooms-carousel {
  width: 100%;
  position: relative;
}

.single-gallery .room-img {
  width: 100%;
  overflow: hidden;
}

.single-gallery .room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* show partial side slides (same as homepage) */
.single-gallery .owl-stage-outer {
  overflow: visible;
}

.single-gallery .owl-item {
  transition: transform 0.4s ease, opacity 0.4s ease;
}


/* Dim side slides */
.single-gallery .owl-item:not(.center) .room-img img {
  transform: scale(1);
  opacity: 0.5;
}

/* Dots + Arrows */
.single-gallery .rooms-nav {
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 10px;
  margin-top: 0px;
}

.single-gallery .rooms-prev,
.single-gallery .rooms-next {
background-color:transparent !important;
  border: none;
  width: 36px;
  height: 36px;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: opacity 0.3s ease;
	 transition: transform 0.4s ease, opacity 0.4s ease;
}

.single-gallery .rooms-prev {
	 background-image: url('https://legray.com/wp-content/uploads/2025/10/arrow-r.svg');

}

.single-gallery .rooms-next {
   background-image: url('https://legray.com/wp-content/uploads/2025/10/arrow-l.svg');
}

.single-gallery .rooms-prev:hover,
.single-gallery .rooms-next:hover {
  opacity: 1;
	background-color:transparent !important;
}


.single-gallery .owl-stage-outer {
  overflow: visible;
}
.single-gallery .owl-item {
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.single-gallery .owl-item.center .room-img img {
  transform: scale(1);
  opacity: 1;
}
.single-gallery .owl-item:not(.center) .room-img img {
  transform: scale(1);
  opacity: 0.5;
}


/* ==========================================================
   9. OTHER ROOMS & SUITES SECTION (Bottom Grid)
   ========================================================== */

.other-rooms {
	  margin-top: 80px;

  margin-bottom: 80px;
  text-align: center;
}

.other-rooms .section-title {
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

@media only screen and (max-width: 1024px) {
.other-rooms .section-title {
  font-size: 24px;
}
}

.other-rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  text-align: left;
}

/* Make 3rd room full-width */
.other-rooms-grid .other-room-item:nth-child(3) {
  grid-column: 1 / -1;
}

/* Adjust 3rd room height */
.other-rooms-grid .other-room-item:nth-child(3) .room-img img {
  height: auto;
}

@media (max-width: 991px) {
  .other-rooms-grid { grid-template-columns: 1fr; }
  .other-rooms-grid .other-room-item:nth-child(3) .room-img img { height: 250px; }
}

/* Item Card Styling */
.other-room-item {
  background: #fff;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.other-room-item:hover {
  transform: translateY(-4px);
}

.other-room-item .room-img img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.other-room-item .room-info { padding:0px; }

.other-room-item .room-title {
  font-size: 24px;
  margin: 10px 0 5px;
	font-family: var(--wd-title-font);
}

@media only screen and (max-width: 1024px) {
.other-room-item .room-title {
  font-size: 18px;
}

}

.other-room-item .room-size {
  font-size: 16px;
  color: #162431;
  margin-bottom: 10px;
}

.other-room-item .room-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #162431;
  margin-bottom: 15px;
}

.other-room-item .room-link {
  display: inline-block;
font-family: var(--wd-title-font);
  text-decoration: none;
    color: #162431;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
	 transition: transform 0.3s ease, box-shadow 0.3s ease;
}



@media (max-width: 767px) {
  .other-room-item .room-img img { height: 200px; }
}


/* ==========================================================
   10. CUSTOM ARROWS (LEFT & RIGHT ICONS)
   ========================================================== */

.rooms-prev,
.rooms-next,
.gallery-nav button.rooms-prev,
.gallery-nav button.rooms-next {
  width: 42px;
  height: 42px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
  text-indent: -9999px; /* hide text if any */
  display: inline-block;
	background-color:transparent !important;
}
/* === Hover Motion + Active Styling === */
.rooms-prev:hover {
  transform: translateX(-4px);   /* ✅ moves left arrow slightly left */
  opacity: 0.8;                  /* optional subtle fade */
}

.rooms-next:hover {
  transform: translateX(4px);    /* ✅ moves right arrow slightly right */
  opacity: 0.8;
}

.rooms-prev,
.rooms-next {
  transition: transform 0.3s ease, opacity 0.3s ease; /* ✅ smooth animation */
}




/* --- Left Arrow --- */
.rooms-prev,
.gallery-nav button.rooms-prev {
	background-image: url('https://legray.com/wp-content/uploads/2025/10/arrow-r.svg');

}

/* --- Right Arrow --- */
.rooms-next,
.gallery-nav button.rooms-next {
    background-image: url('https://legray.com/wp-content/uploads/2025/10/arrow-l.svg');
}


/* Counter text styling (optional aesthetic alignment) */
.rooms-count {
  font-size: 16px;
  font-weight: 500;
  color: #162431;
	font-family: var(--wd-title-font);
}

.rooms-nav .button:hover{
background-color:transparent;
}



/* --- Hover Effect --- */
.rooms-prev:hover,
.rooms-next:hover,
.gallery-nav button.rooms-prev:hover,
.gallery-nav button.rooms-next:hover {
  opacity: 1;
	background-color:transparent !important;
}
.rooms-prev::before,
.rooms-next::before {
  background: none !important;
}

/* --- Optional: center align if inside nav wrappers --- */
.rooms-nav,
.gallery-nav {
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 15px;
	padding-right: calc((100vw - 1200px - var(--wd-sticky-nav-w) - var(--wd-scroll-w)) / 2);
}



@media only screen and (max-width: 1024px) {
.rooms-nav,
.gallery-nav {
margin-right: 20px;
}
}


}

/* ==========================================================
   HOMEPAGE DINING SECTION (FIXED LAYOUT + VIEW MENU BUTTON)
   ========================================================== */
.dining-section {
  text-align: left;
  max-width: 100vw;
}

.dining-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.dining-subtitle {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-bottom: 60px;
}

.dining-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}


.dining-list .reverse .dining-content{
padding-left: calc((100vw - 1200px - var(--wd-sticky-nav-w) - var(--wd-scroll-w)) / 2);
    padding-right:0;
}



.dining-list .dining-content{
    padding-right: calc((100vw - 1200px - var(--wd-sticky-nav-w) - var(--wd-scroll-w)) / 2);
}


@media screen and (min-device-width: 768px) and (max-device-width: 1100px) { 
  .dining-list .reverse .dining-content{
padding-left: calc((100vw - 1024px - var(--wd-sticky-nav-w) - var(--wd-scroll-w)) / 2);
    padding-right:0;
}



.dining-list .dining-content{
    padding-right: calc((100vw - 1024px - var(--wd-sticky-nav-w) - var(--wd-scroll-w)) / 2);
}

}


.dining-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

@media screen and (min-device-width: 768px) and (max-device-width: 1100px) { 
	.dining-item {
		margin:20px;
	}
}


.dining-item.reverse {
  flex-direction: row-reverse;
}

.dining-image,
.dining-content {
  flex: 1 1 50%;
}

.dining-image {
  overflow: hidden;
}

.dining-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform .4s ease;
  display: block;
}

.dining-item:hover .dining-image img {
  transform: scale(1.03);
}

.dining-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dining-content h3 {
  font-size: 24px;
font-family: var(--wd-title-font);
  margin-bottom: 15px;
  color: #162431;
	font-weight:500;
}


	@media (max-width:1024px) {
.dining-content h3 {
  font-size: 18px;
}
}

.dining-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #162431;
  margin-bottom: 25px;

}

/* --- View Menu Button (same as Check Availability) --- */
.btn-view-menu {
font-family: var(--wd-title-font);
  text-decoration: none;
  color: #162431;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
  display: flex;
  align-items:left;
  gap: 10px;
  transition: transform 0.7s ease;
}

.btn-view-menu:hover{
	  transform: translateX(7px); /* ✅ arrow slides right */
	 transition: transform 0.7s ease;
	
}


.btn-view-menu .wd-btn-icon img {
  transition: transform 0.3s ease;
}

.btn-view-menu:hover .wd-btn-icon img {
  transform: translateX(4px);       /* ✅ arrow slides right on hover */
}

.dining-split .btn-view-menu {
  display:inline;
  color: white;
  letter-spacing: 0.5px;
font-family: var(--wd-title-font);
  transition: all .3s ease;
  text-decoration: none;
	background-color:#162431;
	    padding: 10px 30px;
	
}


.btn-view-menu .arrow {
  margin-left: 5px;
  transition: transform .3s ease;
}

.btn-view-menu:hover .arrow {
  transform: translateX(4px);
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .dining-item,
  .dining-item.reverse {
    flex-direction: column;
  }

  .dining-image img {
    height: 320px;
  }

  .dining-content {
    text-align: center;
	  padding-left:15px;
	  padding-right:15px !important;
  }

  .btn-view-menu {
    margin: 0 auto;
  }
}


/* ===== Dining Cards Hover Zoom-In Effect ===== */
.dining-card {
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dining-card .dining-img-link {
  display: block;
  overflow: hidden;
  position: relative;
}

.dining-card .dining-img-link img {
  width: 100%;
  height: auto;
  display: block;
  transform-origin: center center;
  transform: scale(1);
  transition: transform 0.7s ease-in-out;
  will-change: transform;
}

/* Zooms inward inside the frame (no overflow growth) */
.dining-card:hover .dining-img-link img {
  transform: scale(1.1);
}






/* ==========================================================
   SINGLE DINING PAGE
   ========================================================== */
.dining-hero {
position: relative;
  width: 100vw;
  height: 40vw;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  left: 50%;
  margin-left: -50vw;
  overflow: hidden;
  margin-bottom: 50px;
}

@media only screen and (max-width: 1024px) {
  .dining-hero {
    height: 40vh;
  }
}


.dining-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
}
.dining-hero-title {
  position: absolute;
  bottom: 35%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 42px;
  text-align: center;
}

.dining-flex {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-top: 60px;
}
.dining-gallery img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 20px;
}
.dining-text {
  flex: 1;

}



.btn-menu {
  display: inline-block;
  background:  #162431;
  color: #fff;
  padding: 12px 25px;
  text-transform: uppercase;
  border-radius: 4px;
  margin-top: 20px;
  text-decoration: none;
}
.btn-menu:hover {
  background: #ccc;
	color:var(--wd-text-color);
}

/* Other Restaurants */
.other-restaurants {
margin-top:100px;
  text-align: left;
	font-size:16px;
		color:#162431;
	background-color: #f3f4f4;
  position: relative;
  left: -355.5px;
  box-sizing: border-box;
  width: 1920px;
  max-width: 1903px;
  padding-left: 340.5px;
  padding-right: 340.5px;
	padding-top:50px;
	padding-bottom:50px;
	margin-top:60px;
}



.other-restaurants h2 {
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

@media only screen and (max-width:1024px) {
.other-restaurants h2 {
  font-size: 24px;

}
	
	.other-restaurants {
text-align: left;
  font-size: 16px;
  color: #162431;
  background-color: #f3f4f4;
  position: relative;
  left: -355.5px;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 50px;
  padding-bottom: 50px;
  margin-top: 60px;
}


	
	
}

.other-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.other-item img {
  width: 100%;
	border-radius:0;
}
.other-item h3 {
  font-size: 24px;
  margin: 15px 0 10px;
	text-align:left;
	color:#162431;
}
.view-details {
  text-decoration: none;
  color: #162431;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
font-family: var(--wd-title-font);

}

.other-restaurants .other-desc p:not(:first-child) {
  display: none;
}

.other-restaurants .other-desc p:first-child {
  display: -webkit-box;
  -webkit-line-clamp: 1;  /* only one line */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

/* ==========================================================
   SINGLE DINING PAGE — Sticky Text + Equal Height Columns
   ========================================================== */

.dining-single-wrap {
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.dining-split {
  display: flex;
  align-items: stretch; /* ✅ equal height columns */
  justify-content: space-between;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 20px;
	align-items: center;
}

/* ---------- LEFT COLUMN (images) ---------- */
.dining-gallery-side {
  flex: 1 1 50%;
  max-width: 50%;
  position: relative;
  overflow: hidden;
}

.gallery-img-wrap {
  margin-bottom: 20px;
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ---------- RIGHT COLUMN (sticky text) ---------- */
.dining-content-side {
  flex: 1 1 50%;
  max-width: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}



/* .dining-content-inner {
  position: sticky;
  top: 240px; /* adjust for header height */
  align-self: flex-start;
  height: fit-content;
  z-index: 2;
} */




/* ---------- TEXT STYLE ---------- */
.dining-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
  .dining-split {
  flex-direction: column-reverse;
    padding:0;
  }

  .dining-gallery-side,
  .dining-content-side {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .dining-content-inner {
    position: static;
  }
}
