@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;700&display=swap');

body {
    font-family: "poppinsMedium", serif;
}

.tinos-regular {
  font-family: "Tinos", serif;
  font-weight: 400;
  font-style: normal;
}

.tinos-bold {
  font-family: "Tinos", serif;
  font-weight: 700;
  font-style: normal;
}

.tinos-regular-italic {
  font-family: "Tinos", serif;
  font-weight: 400;
  font-style: italic;
}

.tinos-bold-italic {
  font-family: "Tinos", serif;
  font-weight: 700;
  font-style: italic;
}

.banners-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff !important;
}

.swiper-pagination-bullet {
  background: #fff !important;
}

.swiper-pagination-bullet-active {
  background: #fff !important;
}

/* make sure the swiper container allows the arrows to show outside */
.swiper.banners-slider,
.swiper-wrapper {
  overflow: visible !important;
}

/* force arrows to display on all breakpoints */
.swiper-button-next,
.swiper-button-prev {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 20 !important;         /* above slides */
}

/* reposition if they’ve been pushed off-screen */
.swiper-button-next {
  right: 10px;                     /* tweak as needed */
}
.swiper-button-prev {
  left: 10px;                      /* tweak as needed */
}

/* if Understrap or your theme has media-queries hiding buttons >768px */
@media (min-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: block !important;
  }
}

/* Copy Code Button */
.copy-code-btn {
  z-index: 1030;
  position: absolute;
  top: 50px;
  right: 50px;
  background-color: transparent;
  color: white;
  font-size: 15px;
  font-weight: bold;
  padding: 5px 10px;
  border: 2px solid #fff;
  border-radius: 28px;
  cursor: pointer;
  transition: background 0.3s;
}

.copy-code-btn:hover {
  background-color: #bea058;
}

/* GENERAL NAVBAR STYLES */
#main-nav {
  background: #002c50;
  background: #002c50;
  backdrop-filter: blur( 8px );
  -webkit-backdrop-filter: blur( 8px );
  z-index: 1000;
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.5s ease-in-out;
}

/* Custom background color navigation for other templates 
.page-template-contact-us #main-nav,
.page-template-bar-page #main-nav,
.page-template-our-rooms-page #main-nav,
.page-template-our-shops-page #main-nav,
.page-template-news-page #main-nav,
.page-template-global-template #main-nav,
.archive #main-nav {
  background: #4b3f36;
}
*/

@media (min-width: 768px) {
	.bar-info-box-container {
	  position: absolute;
	  bottom: 0;
	}
	.dining-info-box-container {
	  bottom: 17rem;
  	  position: absolute;
	}
}

/* Black Navbar on Scroll */
#main-nav.navbar-dark {
  background: #002c50;
}

/* NAVBAR FLEX CONTAINER */
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* LOGO CONTAINERS - Ensure Each Has a Fixed Width */
.navbar-logo-left {
  width: 250px;
  display: flex;
  justify-content: flex-start;
}

.navbar-logo-right {
  width: 250px;
  display: flex;
  justify-content: flex-end;
}

/* LEFT LOGO */
.navbar-logo-left img {
  width: 200px;
  height: 130px;
  object-fit: contain;
  margin-top: 35%;
}

/* RIGHT LOGO */
.navbar-logo-right img {
  width: 400px;
  height: 20px;
  object-fit: contain;
}

/* CENTER MENU */
.navbar-nav {
  flex-grow: 1;
  justify-content: center;
  /*gap: 20px;*/
}

.navbar-nav .nav-link {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: white;
  text-transform: uppercase;
  transition: font-size 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
  color: #f3d096;
}

#main-nav a {
  text-transform: uppercase;
}

#hamburger-6 {
  transform-origin: center center;
  display: inline-block;
}

#hamburger-6.is-active {
  transition: all 0.3s ease-in-out;
  transition-delay: 0.6s;
  transform: rotate(45deg);
}

#hamburger-6 .line{
  width: 35px;
  height: 5px;
  background-color: #ecf0f1;
  display: block;
  margin: 8px auto;
  transition: all 0.3s ease-in-out;
}

#hamburger-6.is-active .line:nth-child(2){
  width: 0;
}

#hamburger-6.is-active .line:nth-child(1),
#hamburger-6.is-active .line:nth-child(3){
  transition-delay: 0.3s;
}

#hamburger-6.is-active .line:nth-child(1){
  transform: translateY(13px);
}

#hamburger-6.is-active .line:nth-child(3){
  transform: translateY(-13px) rotate(90deg);
}

/* MOBILE STYLING */
@media (max-width: 768px) {
  #main-nav {
    height: 60px;
  }

  /* Hide Left Logo on Mobile */
  .navbar-logo-left {
    display: none;
  }

  /* MOBILE LOGOS */
  .navbar-mobile-right-logo {
    height: 40px !important;
    width: auto;
    object-fit: contain;
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }

  .navbar-mobile-left-logo {
    height: 40px !important;
    width: auto;
    object-fit: contain;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
  }

  /* HAMBURGER MENU */
  .navbar-toggler {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
  }
	
  #hamburger-6.is-active {
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.3s ease-in-out;
    transition-delay: 0.6s;
  }

  /* MOBILE MENU STYLING */
  .navbar-collapse {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    text-align: center;
    padding: 20px 0;
    display: none;
  }

  .navbar-collapse.show {
    display: flex !important;
    flex-direction: column;
    align-items: center;
  }

  .navbar-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .navbar-nav .nav-link {
    font-size: 1.2rem;
  }
	
  .navbar .container {
    justify-content: center !important;
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .navbar-logo-left,
  .navbar-logo-right {
    width: auto; /* Allow flexibility */
    display: flex;
    align-items: center;
  }

  .navbar-logo-left img,
  .navbar-logo-right img {
    height: 40px; /* Ensure equal height */
    width: 80%;
    object-fit: contain;
  }
}

.nav-dl-text {
  vertical-align: middle;
  display: inline;
  font-size: clamp(1.25rem, 1.5vw, 1.5rem);
  color: #fff;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

.dl-mobile {
	color: unset;
}

@media (min-width: 768px) {
	.dl-mobile {
		display: none;
	}
}

/* ============================== */
/*          HERO BANNER           */
/* ============================== */

.hero-banner {
  background: no-repeat center center / cover;
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Overlay Effect for Transparent Navigation */
.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background-color: rgba(0, 0, 0, 0.2);*/
  z-index: 1;
}

/* Centered Content */
.hero-banner .container {
  z-index: 2;
  position: relative;
  text-align: center;
}

.hero-banner h3, .hero-banner h1, .hero-banner h2, .hero-banner p {
  margin: 0;
}

.hero-banner .hero-subtitle {
  font-size: clamp(1.2rem, 2vw, 1.5rem); /* Responsive font size */
  letter-spacing: 0.2rem;
}

.hero-banner .hero-title {
  font-size: clamp(4vw, 5vw, 8vw);
  line-height: 1.2; /* Adjust line spacing */
}

.hero-banner .hero-location {
  font-size: clamp(1.8rem, 3vw, 2rem);
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .hero-description-container {
    position: absolute;
    bottom: 6.2rem;
    left:   0rem;
    display: inline-block; 
    padding: 0.75rem 1.5rem;
    z-index: 1;
  }
  .hero-description {
    position: relative;
    margin: 0;
    font-size: clamp(6px, 84px, 20px);
    color: #fff;
    z-index: 1;
  }
}

@media (max-width: 768px) {
	.hero-description-container {
	  position: absolute;
	  top: 12.2rem;
	  left:   0rem;
	  display: inline-block; 
	  padding: 0.35rem 1.5rem;
	  z-index: 1;
	  max-width: 325px;
	}
	.hero-description {
	  position: relative;
	  margin: 0;
	  font-size: clamp(6px, 84px, 20px);
	  color: #fff;
	  z-index: 1;
	}
}

.hero-description-container::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  clip-path: polygon(
     0%   0%,
     calc(100% - 1rem) 0%,
     100% 50%,
     calc(100% - 1rem) 100%,
     0%   100%
  );
  z-index: 0;
}

/* Left Bottom Text */
.left-bottom-text {
  position: absolute;
  bottom: 100px;
  left: 100px;
  max-width: 700px;
  font-size: clamp(0.8rem, 1.5vw, 2rem);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 25px;
}

/* Stack TripAdvisor content vertically */
.tripadvisor-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: clamp(16px, 3.5vw, 20px);
  font-weight: bold;
}

/* Google and TripAdvisor logo adjustments */
.google-logo {
  height: clamp(120px, 1vw, 1vw);
}

.tripadvisor-logo {
  height: clamp(40px, 4vw, 55px);
}

@media (max-width: 768px) {
  .left-bottom-text {
    bottom: auto;
    left: 0;
    text-align: center;
    width: 100%;
    padding: 1rem;
    flex-direction: column;
    align-items: center;
    font-size: clamp(1rem, 3vw, 1.3rem);
	  justify-content: center;
  }
  .google-logo {
    height: clamp(95px, 1vw, 1vw);
  }
}

/* Right Bottom Content */
.right-bottom-content {
  position: absolute;
  bottom: 3.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  z-index: 3;
}

.right-bottom-content p {
  margin: 10px 0 0 0;
  font-size: clamp(0.8rem, 1.5vw, 1.2rem);
}

.right-bottom-content .tripadvisor-logo {
  height: clamp(20px, 4vw, 55px); /* Adjust logo size dynamically */
}

/* Book Now Button */
.right-bottom-content .btn-room {
  font-size: clamp(6px, 84px, 20px);
  border: 2px solid white;
  padding: 0.8rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 250px;
  margin: 0 auto;
  font-weight: bold;
  background-color: #fff;
  color: #000;
  border-radius: 7px;
  text-decoration: none;
  text-wrap: nowrap;
}

.right-bottom-content .btn-room:hover {
  background-color: #bea058;
  color: #fff;
  border: 2px solid #bea058;
}

.right-bottom-content .btn-table {
  font-size: clamp(6px, 84px, 20px);
  border: 2px solid white;
  padding: 0.8rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 250px;
  margin: 0 auto;
  font-weight: bold;
  background-color: #fff;
  color: #000;
  border-radius: 7px;
  text-decoration: none;
  text-wrap: nowrap;
  margin-top: 10px;
}

.right-bottom-content .btn-table:hover {
  background-color: #bea058;
  color: #fff;
  border: 2px solid #bea058;
}

.right-bottom-content .btn i {
  font-size: 1.2rem;
}


/* Sticky Book Buttons Container */
.sticky-book-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Sticky Buttons Style */
.sticky-book-buttons .btn-sticky {
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  color: #000;
  background: #fff;
  transition: all 0.3s ease;
}

.sticky-book-buttons .btn-sticky:hover {
  background: #bea058;
  color: #fff;
  border-color: #bea058;
}

/* Mobile: Buttons side-by-side and slimmer */
@media (max-width: 768px) {
  .sticky-book-buttons {
    bottom: 0;
    right: 0;
    left: 0;
    flex-direction: row;
    justify-content: center;
    gap: 0;
    border-radius: 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.7);
  }
  
  .sticky-book-buttons .btn-sticky {
    flex: 1;
    margin: 0 5px;
    padding: 0.5rem 0;
    font-size: 14px;
    border: none;
    background: #4b3f36;
    color: #fff;
    border-radius: 6px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
	.hero-banner .container {
	padding: 2rem 1rem;
	top: -39%;
	}
	.left-bottom-text {
	order: 1;
	position: static;
	text-align: center;
	padding-bottom: 2rem;
	bottom: 6%;
	}
	.right-bottom-content {
	order: 2;
	position: static;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 2rem;
	left: -2%;
	bottom: 10%;
	}
	.right-bottom-content .tripadvisor-logo {
	height: 35px;
	}
	.right-bottom-content .btn {
	width: 100%;
	max-width: 250px;
	text-align: center;
	}
	.right-bottom-content p {
	font-size: 1.5rem;
	margin-top: 0.5rem;
	}
	.right-bottom-content p i {
	margin-right: 5px;
	}
	.hero-banner .hero-title {
	font-size: 45px;
	}
	.hero-banner .hero-subtitle {
	display: none;
	}
	.hero-banner .hero-location {
	  margin-top: 0rem;
	}
	.right-bottom-content .btn-room {
	  padding: 0.5rem 8rem;
	}
	.right-bottom-content .btn-table {
	  padding: 0.5rem 8rem;
	}
}

@media (min-width: 768px) {
  .hero-banner .container {
    padding: 2rem 1rem;
	top: -4%;
  }
}

/* Section Styling */
.our-rooms {
  background-color: #f7f4f1;
  padding: 3rem 0;
}

.section-title {
  font-size: 2.5rem;
  color: #4b3f36;
  margin-bottom: 2rem;
}

.card {
  border: 1px solid #e2dcd5;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: #f7f4f1;
}

.card-title {
  font-size: 1.25rem;
  color: #4b3f36;
  font-weight: bold;
}

.card-text {
  font-size: 1rem;
  color: #6c645b;
  margin-top: 0.5rem;
}

.card-price {
  font-size: 1.1rem;
  font-weight: bold;
  color: #4b3f36;
  margin-top: 1rem;
}

.card-body {
  text-align: left;
  color: #6c645b;
  margin-top: 0.5rem;
}

.card-img-top {
	height: 15rem;
}

.offer-banner {
  margin-top: 3rem;
}

.offer-text {
  font-size: 1.2rem;
  color: #000;
  margin-bottom: 1rem;
}

.offer-banner .btn {
  font-size: 1.1rem;
  padding: clamp(0.50rem, 1vw, 0.70rem) 4rem;
  border: 2px solid #4b3f36;
  color: #4b3f36;
  border-radius: 15px;
}

.offer-banner .btn:hover {
  background-color: #bea058;
  color: #fff;
}

.banner-item {
	padding: 25px;
}

.banner-item img {
	border-radius: 28px !important;
}

/* ============================== */
/*          THE BAR & DINING SECTION       */
/* ============================== */

.bar-dining-merged {
  width: 100%;
}

.bar-dining-merged .bar-block,
.bar-dining-merged .dining-block {
  height: 70vh;
  overflow: hidden;
}

.bar-dining-merged img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.overlay-title-box {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
}

.section-overlay-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  position: relative;
  z-index: 3;
  margin: 0;
  padding: 0 1rem;
}

/* Flag arrow style background */
.flag-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 220px;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
  z-index: 1;
}

@media (max-width: 767.98px) {
  .bar-dining-merged .bar-block,
  .bar-dining-merged .dining-block {
    height: 60vh;
  }

  .section-overlay-title {
    font-size: 1.8rem;
  }

  .flag-bg {
    width: 180px;
  }
}


/* Our Ratings Section */
.our-ratings {
  background-color: #bea058;
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

/* Slider Container */
.slider-container {
  display: flex;
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* Slider Track */
.slider-track {
  display: flex;
  animation: slide 25s linear infinite;
  width: calc(200px * 10);
}

/* Rating Card Styles */
.rating-card {
  position: relative;
  height: 420px;
  border-radius: 1rem;
  overflow: hidden;
  background-color: #000;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.rating-card:hover {
  transform: perspective(800px) rotateY(8deg) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.rating-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  z-index: 1;
}

.rating-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 10;
  margin-top: -100px;
  padding: 0 10px 0 10px;
}

.rating-logo {
  height: 100%;
  max-width: 200px;
  margin: 0 auto;
  object-fit: contain;
}

.rating-score {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.rating-source {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.9;
  color: #fff;
}

.rating-btn {
  display: inline-block;
  padding: 6px 14px;
  background: #fff;
  color: #000;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s;
}
.rating-btn:hover {
  background: #bea058;
  color: #fff;
}

/* Animation Keyframes */
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .rating-card {
    width: 220px;
    height: 360px;
  }

  .rating-score {
    font-size: 2.25rem;
  }

  .rating-logo {
    max-width: 120px;
  }

  .rating-btn {
    font-size: 0.8rem;
    padding: 5px 12px;
  }
}

/* Mobile: Shrink further */
@media (max-width: 768px) {
  .rating-card {
    width: 180px;
    height: 320px;
  }

  .rating-score {
    font-size: 1.9rem;
  }

  .rating-source {
    font-size: 0.95rem;
  }

  .rating-logo {
    max-width: 100px;
  }

  .rating-btn {
    font-size: 0.75rem;
    padding: 5px 10px;
  }
}

/* Very small screens */
@media (max-width: 480px) {
  .rating-card {
    width: 140px;
    height: 280px;
  }

  .rating-score {
    font-size: 1.6rem;
  }

  .rating-logo {
    max-width: 80px;
  }

  .rating-source {
    font-size: 0.9rem;
  }

  .rating-btn {
    font-size: 0.7rem;
    padding: 4px 8px;
  }
}


/* ============================== */
/*          REVIEW SECTION        */
/* ============================== */
.customer-reviews-section {
	background-color: #002c50;
}

.customer-reviews-title {
	color: #fff;
}


/* ============================== */
/*          DINING SECTION        */
/* ============================== */

.dining-section {
  width: 100%;
  display: flex;
  overflow: hidden;
}

.dining-section .row {
  margin: 0;
}

/* Restored Padding Removal */
.dining-section .col-lg-8, .dining-section .col-lg-4 {
  padding: 0;
}

.dining-image-wrapper {
  position: relative;
  height: 100%;
  overflow: hidden;
}
/*
.dining-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
*/
.dining-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
}

/* Left-aligned Content */
.dining-content {
  position: absolute;
  top: 50%;
  left: 100px;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Left-Aligned Title */
.home-dining-title {
  font-size: clamp(3rem, 8vw, 3rem);
  color: #fff;
  margin-bottom: 1rem;
  text-align: left;
}

/* Scrollable Description Box */
.dining-description-box {
  width: 400px;
  height: 300px;
  background: rgba(0, 0, 0, 0.7);
  color: #ddd;
  padding: 15px;
  overflow-y: auto;
  font-size: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.5;
  border-radius: 10px;
}

/* Renamed Description */
.home-dining-description {
  color: #ddd;
}

/* Learn More Button */
.dining-learn-more {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 40px;
  border: 2px solid #fff;
  border-radius: 7px;
  transition: all 0.3s ease-in-out;
  width: 250px;
  text-align: center;
  margin-top: 25px;
  color: #fff;
  text-decoration: none;
  background-color: #fff;
  color: #000;
}

.dining-learn-more:hover {
  background-color: #bea058;
  color: #fff;
  border: 2px solid #bea058;
}

@media (min-width: 768px) {
	.dining-right-grid {
	  height: 112vh;
	}
}
/* Responsive Adjustments */
@media (max-width: 768px) {
  .dining-content {
	left: auto;
    padding: 5rem 1rem;
  }

  .dining-description-box {
    width: 100%;
    height: auto;
    max-height: 250px;
  }

  .dining-learn-more {
    width: 250px;
  }
}

/* Right Column: Vertical Stack of Images */
.dining-right-grid {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-height: 100%;
  gap: 5px;
  background-color: black;
  padding: 5px;
}

.grid-image {
  flex: 1; /* Equal height for all images */
  overflow: hidden;
  position: relative;
}

.grid-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Maintain aspect ratio */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .dining-section .row {
    flex-direction: column;
  }

  .dining-right-grid {
    height: auto; /* Allow images to flow naturally */
    gap: 10px; /* Increase gap slightly for smaller screens */
  }

  .dining-main-img {
    height: 100%;
    object-fit: cover;
  }

  .grid-image {
    flex: none; /* Allow natural size on small screens */
    max-height: none;
  }

  .dining-title {
    font-size: 2rem;
  }

  .dining-description {
    font-size: 1rem;
  }
	
	.dining-text-overlay .btn {
		display: none;
	}
	.dining-text-overlay {
	  left: unset;
	  max-width: 100%;
	  padding: 20px;
	}
  .dining-slider-mobile .item {
    height: 300px;
    overflow: hidden;
  }

  .dining-slider-mobile .item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
	border-radius: 7px;
  }
	.dining-image-wrapper {
		margin-bottom: 2vh;
	}
	.dining-image-wrapper {
	  height: 100vh;
	}
}



/* Footer Subscribe Section */
.footer-subscribe {
  background-color: #f7f4f1; /* Light beige background */
  color: #4b3f36; /* Brown text color */
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
  border-top: 2px solid #e2dcd5;
}

.footer-subscribe-title {
  font-size: 2.5rem;
  font-weight: bold;
}

.footer-subscribe-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-subscribe-form .form-control {
  border-radius: 50px;
  border: 2px solid #4b3f36;
}

.footer-subscribe-form .btn {
  font-size: 1rem;
  padding: 0.5rem 2rem;
  border-radius: 50px;
  background-color: #274d38; /* Dark green */
  color: #fff;
  transition: background-color 0.3s ease-in-out;
}

.footer-subscribe-form .btn:hover {
  background-color: #1e3d2c; /* Darker green on hover */
}

.footer-social-icons a {
  color: #4b3f36;
  font-size: 1.5rem;
  transition: color 0.3s ease-in-out;
}

.footer-social-icons a:hover {
  color: #274d38;
}


/* Footer Certifications Section */
.footer-certifications {
  background-color: #fff; /* White background */
  border-top: 2px solid #e2dcd5; /* Light beige border to separate sections */
}

.footer-cert-logo {
  max-height: 110px;
  margin: 10px 0;
  object-fit: contain;
}

@media (max-width: 768px) {
  .footer-certifications .row {
    flex-direction: column; /* Stack images vertically on small screens */
  }
	.footer-subscribe-description {
		margin-top: 2rem;
	}
	.footer-cert-logo {
	  max-height: 80px;
	  margin: auto;
	  max-width: 100%;
	}
}


.footer-main {
  background-color: #000; /* Black background */
  color: #fff; /* White text */
}

.footer-main h5 {
  font-size: 20px;
  line-height: 25px;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-main a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.footer-main a:hover {
  color: #cfcfcf;
}

.footer-main p , li{
    font-size: 20px;
    line-height: 25px;
}

.footer-logo {
  max-height: 150px;
  text-align: center;
  display: flex;
}

.list-unstyled {
  padding-left: 0;
}

.list-unstyled li {
  margin-bottom: 0.5rem;
}

.footer-main .fab, .footer-main .fas {
  font-size: 1.5rem;
  color: #fff;
  transition: color 0.3s ease-in-out;
}

.footer-main .fab:hover, .footer-main .fas:hover {
  color: #cfcfcf;
}

.footer-main li {
  list-style-type: none !important;
}

.footer-main ul {
  padding-left: unset !important;
}

.footer-copyright {
  font-size: 0.9rem;
  color: #cfcfcf;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .footer-main {
    text-align: center;
  }

  .footer-main .row > div {
    margin-bottom: 2rem;
  }
}

.fa-x-twitter{
	font-size: 24px;
}

.custom-hours-table {
    max-width: 225px;
    width: 100%;
}
.table-wrapper {
    justify-content: center;
}
@media (max-width: 768px) {
    .table-wrapper {
        justify-content: center;
        display: flex;
    }
    .custom-hours-table {
        margin: 0 auto;
    }
}

/* ============================== */
/*       CONTACT HERO SECTION     */
/* ============================== */

.contact-hero {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Reuse global overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 1rem;
  text-align: center;
}

/* Title Box Styling (shared) */
.hero-title-box-border {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 2px solid #fff;
  z-index: 1;
}

.hero-title-box {
  position: relative;
  background: transparent;
  border: 2px solid #fff;
  margin-top: 1rem;
}

.hero-title-inner-box {
  background: rgba(255, 255, 255, 0.15);
  padding: 1.5rem;
}

/* Title Styling */
.contact-title {
  font-size: clamp(2rem, 3vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  z-index: 10;
  position: relative;
}

.find-us-info p a{
  color: #fff !important;
}

/* Description Block */
.contact-description-block {
  color: #4b3f36;
  background-color: #f7f4f1;
  text-align: center;
  padding-top: 6rem;
  padding-bottom: 6rem;
  width: 100%;
}

/* Centered Description Text */
.contact-description-block .contact-description {
  font-size: clamp(1.2rem, 3vw, 2rem);
  line-height: 1.5;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 1rem;
}

/* Contact Info Section */
.contact-info {
  background-color: #f7f4f1; /* Light beige background */
  padding: 0rem 0 4rem 0 !important; /* Add padding top and bottom */
}

.contact-info img {
  border-radius: 8px; /* Smooth rounded corners for the image */
}

.contact-info .section-title {
  font-size: clamp(1.8rem, 3vw, 1.5rem); /* Responsive title size */
  color: #4b3f36; /* Elegant brown color */
  line-height: 1.3;
}

.contact-info .section-text {
  font-size: clamp(1rem, 2.5vw, 1.25rem); /* Responsive font size */
  color: #6c645b; /* Subtle text color */
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .contact-info .row {
    flex-direction: column; /* Stack the image and text */
  }
}

/* Contact Bar Section */
.contact-bar-section {
  position: relative;
  padding: 6rem 0;
  color: #fff;
}

/* Background Image and Overlay */
.contact-bar-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.contact-bar-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-bar-bg .dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Dark opacity overlay */
  z-index: 2;
}

/* Content Styling */
.contact-bar-section .container {
  position: relative;
  z-index: 3;
}

.find-us-title {
  font-size: clamp(2rem, 6vw, 6rem); /* Responsive font size */
  margin-bottom: 1rem;
}

.find-us-info {
  font-size: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.find-us-link {
  text-decoration: underline;
  color: #fff;
  transition: color 0.3s ease-in-out;
}

.find-us-link:hover {
  color: #ccc; /* Hover effect */
}

/* Contact Form Styling */
.contact-page-contact-form {
  background-color: transparent; /* Fully transparent form */
  padding: 2rem;
  border-radius: 8px;
}

/* WPForms Inputs */
.contact-page-contact-form input,
.contact-page-contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 2px solid #fff; /* Bottom border only, white */
  padding: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  background-color: transparent; /* Transparent input background */
  color: #fff; /* White text */
  transition: border-color 0.3s ease-in-out;
}

.contact-page-contact-form input::placeholder,
.contact-page-contact-form textarea::placeholder {
  color: #ddd; /* Light gray placeholders */
}

/* Input Focus State */
.contact-page-contact-form input:focus,
.contact-page-contact-form textarea:focus {
  outline: none;
  border-bottom-color: #274d38; /* Dark green on focus */
}

/* Submit Button */
.contact-page-contact-form-btn {
  display: inline-block;
  background-color: #274d38; /* Dark green */
  color: #fff;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 50px;
  border: 2px solid #274d38;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.contact-page-contact-form-btn:hover {
  background-color: transparent;
  color: #274d38;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .contact-bar-section {
    padding: 4rem 1rem;
  }

  .find-us-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
  }

  .contact-page-contact-form {
    padding: 1.5rem;
  }
}

.wpforms-field-medium {
	background-color: transparent !important;
	border-top: unset !important;
	border-left: unset !important;
	border-right: unset !important;
	border-bottom: 1px #fff solid !important;
}
.wpforms-field-label {
	color: #fff !important;
}

.contact-page-contact-form-btn {
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  padding: clamp(0.50rem, 1vw, 0.0rem) 5rem !important;
  border: 2px solid #fff !important;
  border-radius: 7px !important;
  transition: all 0.3s ease-in-out !important;
	background-color: transparent  !important;
}

.contact-page-contact-form label {
	font-size: clamp(1.5rem, 1vw, 1rem) !important;
}

.contact-page-contact-form input,
.contact-page-contact-form textarea {
	color: #fff !important;
	font-size: clamp(1.5rem, 1vw, 1rem) !important;
}

.contact-hero .hero-title-box {
	margin-top: 10rem;
}

/* For Chrome, Edge, and Safari */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* For Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

/* Bar Hours Section */
.bar-hours-section {
  background-color: #f9f7f0; /* Light beige background */
}

.section-title {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

/* Bar Hours Wrapper */
.bar-hours-wrapper {
  position: relative;
  max-width: 600px; /* Keep the wider width for layout consistency */
}

.bar-hours-border {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 2px solid #bea058;
  z-index: 1;
}

.bar-hours-box {
  background-color: #002c50;
  padding: 2rem;
  z-index: 2;
  position: relative;
}

/* Bar Hours Table */
.bar-hours-table {
  width: 100%;
   /* Match the footer style */
  border-collapse: collapse;
  color: #fff; /* White text like the original list */
  margin: 0 auto; /* Center align on smaller screens */
}

/* Table Row and Cell Styling */
.bar-hours-table td {
  padding: 5px 15px;
  font-size: clamp(1rem, 1vw, 2rem); /* Keep the original responsive font size */
   /* Maintain original line height */
  text-align: left;
}

/* First Column: Day Names (Bold) */
.bar-hours-table td:first-child {
  font-weight: bold;
}

/* Border Styling for Table Rows */
.bar-hours-table tr {
  /*! border-bottom: 1px solid rgba(255, 255, 255, 0.5); */ /* Subtle divider */
}

/* Responsive: Center the table on mobile */
@media (max-width: 768px) {
  .bar-hours-box {
    display: flex;
    justify-content: center;
  }

  .bar-hours-table {
    margin: 0 auto;
    text-align: center;
  }

  .bar-hours-table td {
    text-align: center; /* Center text in both columns */
  }
}


/* Google Map Styling */
.google-map {
  width: 100%;
  height: 100%;
  border: none; /* Removed border */
}

.col-lg-6.d-flex {
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}

/* Responsive Design */
@media (max-width: 768px) {
  .bar-hours-section {
    padding: 3rem 1rem;
  }

  .google-map {
    height: 300px; /* Ensures reasonable height on smaller screens */
  }

  .bar-hours-wrapper {
    margin: 0 auto; /* Center align on smaller screens */
    max-width: 300px; /* Reduce size for smaller screens */
  }

  .bar-hours-box {
    padding: 1.5rem; /* Adjust padding for smaller screens */
  }

  .bar-hours-list li {
    font-size: clamp(1.2rem, 4vw, 1.5rem); /* Responsive font size for li */
  }
}


/* The Bar Hero Section */
.bar-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Dark Overlay */
.bar-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Dark opacity */
  z-index: 1;
}

/* Hero Content */
.bar-hero .hero-content {
  z-index: 2;
  max-width: 800px;
  padding: 0 1rem;
}

/* Bar Description Block Below Hero */
.bar-description-block {
  color: #fff;
  background-color: #002c50;
  text-align: center;
  padding-top: 6rem;
  padding-bottom: 6rem;
  width: 100%;
}

/* Centered Description Text with Max Width */
.bar-description-block .bar-description {
  font-size: clamp(1.2rem, 3vw, 2rem);
  line-height: 1.5;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 1rem;
}

.hero-title-box-border {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border:
2px solid #fff;
  z-index: 1;
}

.hero-title-box {
  position: relative;
  background:
transparent;
  border:
2px solid #fff;
  margin-top: 1rem;
}

.hero-title-inner-box {
  background:
rgba(255, 255, 255, 0.15);
  padding:
1.5rem;
}

/* Title & Description Styling */
.bar-title {
  font-size: clamp(2rem, 3vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  z-index: 10;
  position: relative;
}

.bar-description {
  font-size: clamp(1.2rem, 3vw, 2rem);
  line-height: 1.5;
}


/* Bar Whisky Section */
.bar-whisky-section {
  padding: 6rem 0;
  background-color: #002c50;
}

/* Section Title */
.bar-section-title {
  font-size: clamp(2rem, 5vw, 4rem);
  color: #fff;
  margin-bottom: 1rem;
}

/* Section Text */
.bar-section-text {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  line-height: 1.6;
  color: #fff;
  margin-bottom: 1rem;
}

/* Whisky Button */
.bar-whisky-btn {
  display: inline-block;
  font-size: clamp(1rem, 2vw, 1.2rem);
  padding: 0.75rem 2rem;
  border: 2px solid #4b3f36;
  border-radius: 12px;
  color: #fff;
  background-color: #bea058;
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.bar-whisky-btn:hover {
  background-color: #002c50;
  color: #fff;
}

/* Whisky Image Grid */
.whisky-image-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.whisky-grid-row {
  display: flex;
  gap: 1rem;
}

/* Image Styling */
.whisky-img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Define Image Sizes */
.large-img {
  flex: 2;
  height: 250px;
}

.small-img {
  flex: 1;
  height: 250px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .whisky-image-grid {
    flex-direction: column;
  }

  .whisky-grid-row {
    flex-direction: column;
  }

  .large-img,
  .small-img {
    height: auto;
  }
}


/* ============================== */
/*  FIXED: BAR WINE & COCKTAILS   */
/* ============================== */
.bar-wine-cocktail-section {
  padding: 6rem 0;
  background-color: #bea058;
}

/* Wine & Cocktail Title */
.bar-wine-title {
  font-size: clamp(2rem, 5vw, 4rem);
  color: #fff;
  margin-bottom: 1rem;
}

/* Wine & Cocktail Text */
.bar-wine-text {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  line-height: 1.6;
  color: #fff;
  margin-bottom: 1rem;
}

/* Wine & Cocktail Button Group */
.button-group {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* Styled Buttons */
.bar-button {
  display: inline-block;
  font-size: clamp(1rem, 2vw, 1.2rem);
  padding: 0.75rem 2rem;
  border: 2px solid #4b3f36;
  border-radius: 12px;
  color: #fff;
  background-color: #002c50;
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.bar-button:hover {
  background-color: #bea058;
  color: #fff;
}

/* Wine & Cocktail Image Grid */
.wine-image-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Stacked Wine Images */
.wine-stacked-images {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 40%;
}

/* Wine Image Styling */
.wine-img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Define Image Sizes */
.wine-small-img {
  height: 217px;
}

.wine-large-img {
  max-width: 60%;
  height: 450px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .wine-image-grid {
    flex-direction: column;
    align-items: center;
  }

  .wine-stacked-images {
    max-width: 100%;
    flex-direction: row;
  }

  .wine-small-img {
    height: auto;
    width: 48%;
  }

  .wine-large-img {
    max-width: 100%;
    height: auto;
  }

  .button-group {
    flex-direction: column;
    align-items: center;
  }

  .bar-button {
    width: 100%;
    text-align: center;
  }
}


/* ============================== */
/*        FIND US SECTION         */
/* ============================== */
.bar-find-us-section {
  width: 100%;
  margin-bottom: -7px;
}

/* Left Column: Background Image */
.find-us-left {
  position: relative;
  overflow: hidden;
}

/* Ensure image covers the new height */
.find-us-bg {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}

/* Overlay Content */
.find-us-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background-color: rgba(0, 0, 0, 0.3);  Dark opacity */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

/* Find Us Title */
.find-us-title {
  font-size: clamp(3rem, 5vw, 5rem);
  margin-bottom: 1rem;
}

.find-us-box-border {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 2px solid #fff;
  z-index: 1;
}

/* Offset Box */
.find-us-box {
  position: relative;
  width: 300px;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.22);
  border: 2px solid #fff;
  margin-top: 1rem;
}

.find-us-inner-box {
  padding: 1.5rem;
}

/* Address Text */
.find-us-box p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  line-height: 1.6;
  color: #fff;
  margin: 0;
  z-index: 2;
  position: relative;
}

/* Ensure the map matches the new height */
.find-us-map {
  width: 100%;
  height: 50vh; /* Half viewport height */
  border: none;
}

.find-us-left,
.find-us-map {
  height: 50vh; /* Half viewport height */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .find-us-box {
    width: 90%;
  }

  .find-us-map {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .bar-wine-cocktail-section .row {
    flex-direction: column-reverse;
  }
}

@media (max-width: 768px) {
  .bar-whisky-btn,
  .bar-button {
    margin-bottom: 2rem;
  }

  .button-group {
    gap: 1rem;
  }
}


/* ============================== */
/*       OUR ROOMS SECTION        */
/* ============================== */

.our-rooms-hero {
  background: url('/wp-content/themes/understrap-child-1.2.0/assets/images/room-2.jpg') no-repeat center center / cover;
  height: 100vh; /* Full viewport height */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Dark Overlay */
.our-rooms-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Hero Content */
.our-rooms-hero .hero-content {
  z-index: 2;
  max-width: 1200px;
  padding: 0 1rem;
}

/* Title */
.our-rooms-title {
  font-size: clamp(2rem, 3vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  z-index: 10;
  position: relative;
}

/* Our Rooms Description Block Below Hero */
.our-rooms-description-block {
  color: #fff;
  background-color: #002c50;
  text-align: center;
  padding-top: 6rem;
  padding-bottom: 6rem;
  width: 100%;
}

/* Centered Description Text with Max Width */
.our-rooms-description-block .our-rooms-description {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  line-height: 1.5;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 1rem;
}

/* Description */
.our-rooms-description {
  font-size: clamp(1.2rem, 3vw, 2rem);
  line-height: 1.5;
  margin: 0 auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .our-rooms-description {
    font-size: clamp(1rem, 4vw, 1.5rem);
  }
}


/* Our Rooms Section */
.our-rooms-section {
  background-color: #002c50;
  padding: 6rem 0;
}

/* Room Card Styling */
.room-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  height: 100%;
}

/* Force All Columns to be the Same Height */
.row {
  display: flex;
  flex-wrap: wrap;
}

.col-md-4 {
  display: flex;
  flex-direction: column;
}

/* Image Wrapper with Offset Border */
.room-image-frame {
  position: relative;
  width: 100%;
  max-width: 350px;
  aspect-ratio: 4 / 3; /* Adjust to match your frame */
  background-color: #002c50;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.room-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('https://sandbox006.magicsandbox.co.uk/wp-content/uploads/2025/05/ornament-image-frame.png') no-repeat center center;
  background-size: contain;
  z-index: 2;
  pointer-events: none;
}

/* Shrink image slightly to fit inside transparent area of frame */
.room-image-inside {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  object-fit: cover;
  border-radius: 6px;
  z-index: 1;
}




.room-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  border-radius: 5px;
}

/* Room Content Box*/
.room-content {
  border: 1px groove #bea058;
  padding: 2rem;
  width: 90%;
  max-width: 315px;
  margin: 0 auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #002c50;
}

/* Room Title */
.room-title {
  font-size: clamp(1.5rem, 3vw, 1.5rem);
  color: #f2dc81;
  margin-bottom: 1rem;
}

/* Room Description */
.room-description {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.6;
  color: #fff;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Book Now Button */
.room-btn {
  position: relative;
  display: inline-block;
  font-size: clamp(1rem, 2vw, 1.2rem);
  padding: 0.75rem 2rem;
  border: 2px solid #bea058;
  border-radius: 12px;
  color: #fff;
  background-color: transparent;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease-in-out;
}

.room-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #f2dc81;
  z-index: -1;
  transition: width 0.4s ease-in-out;
}

.room-btn:hover::before {
  width: 100%;
}

.room-btn span {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease-in-out;
}

.room-btn:hover {
  color: #000;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .room-card {
    max-width: 100%;
  }

  .room-image-wrapper {
    max-width: 100%;
    height: 200px;
  }

  .room-image-frame {
    max-width: 100%;
  }

  .room-content {
    max-width: 90%;
    width: 90%;
    padding: 1.5rem;
  }

  .room-image-inside {
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
  }
}

/* New */
.room-ornament {
  width: 60px;
  height: auto;
  margin-bottom: 0.5rem;
}

/* ============================== */
/*       OUR ROOMS - FIND US      */
/* ============================== */
.rooms-find-us-section {
  width: 100%;
}

/* Left Column: Background Image */
.rooms-find-us-left {
  position: relative;
  overflow: hidden;
}

.rooms-find-us-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay Content */
.rooms-find-us-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

/* Find Us Title */
.rooms-find-us-title {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: bold;
  margin-bottom: 1rem;
}

/* Offset Box */
.rooms-find-us-box {
  position: relative;
  width: 300px;
  padding: 2rem;
  background: transparent;
  border: 2px solid #fff;
  margin-top: 1rem;
}

.rooms-find-us-inner-box {
  background: rgba(255, 255, 255, 0.15);
  padding: 1.5rem;
}

/* Address Text */
.rooms-find-us-box p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  line-height: 1.6;
  color: #fff;
  margin: 0;
}

/* Google Map Styling */
.rooms-find-us-map {
  width: 100%;
  height: 50vh;
  border: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .rooms-find-us-box {
    width: 90%;
  }

  .rooms-find-us-map {
    height: 400px;
  }
}

.rooms-find-us-left,
.rooms-find-us-map {
  height: 50vh;
}

/* ============================== */
/*            NEWS PAGE           */
/* ============================== */

.news-hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.news-slider {
  position: relative;
  width: 100%;
  height: 100vh;
}

.news-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease-in-out;
  opacity: 0;
  z-index: 1;
}

/* Ensure first slide is visible */
.news-slide:first-child {
  opacity: 1;
  z-index: 2;
}


.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.news-content {
  position: absolute;
  bottom: 10%;
  left: 5%;
  color: white;
}

.news-category {
  background: rgba(255, 255, 255, 0.3);
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.9rem;
}

/* Position news-author on desktop */
.news-author {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  z-index: 10;
  bottom: 7.4%;
  right: 5%;
}

.news-author img {
  width: 50px;
  height: 70px;
}

/* Author Image */
.news-inner-author img {
  width: 50px;
  height: 70px;
  border-radius: 50%;
  object-fit: contain;
}

/* Ensuring `news-author-info` aligns with the image */
.news-author-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Mobile Adjustment: Stack Author Below Content */
@media (max-width: 768px) {
  .news-author {
    position: absolute;
    bottom: auto;
    right: auto;
    text-align: left;
    margin-top: 1rem;
    top: 53%;
    left: 3%;
    display: none;
  }

  .news-author img {
    width: 50px; /* Slightly smaller for mobile */
    height: 50px;
  }
}

@media (min-width: 768px) and (max-width: 1369px) {
  .news-author {
    position: absolute;
    bottom: auto;
    text-align: left;
    margin-top: 1rem;
    top: 82%;
    right: 3%;
  }
}



.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 5%;  /* Aligns with news-content */
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
  opacity: 0.5;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.slider-dot.active {
  opacity: 1;
  transform: scale(1.2);
}


/* ============================== */
/*         NEWS BELOW PAGE        */
/* ============================== */
.news-below-section {
  padding: 6rem 0;
}

.news-below-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #6c645b;
}

/* News Categories */
.news-below-categories {
  margin-top: 1rem;
  display: flex;
  gap: 10px;
}

.news-below-category-btn {
  background: transparent;
  border: 2px solid #4b3f36;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 1rem;
  color: #4b3f36;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.news-below-category-btn.active, 
.news-below-category-btn:hover {
  background-color: #bea058;
  color: #fff;
}

/* Sort Dropdown */
.news-below-sort-label {
  font-weight: bold;
  margin-right: 10px;
}

.news-below-sort-dropdown {
  padding: 5px 10px;
  border-radius: 5px;
  border: 2px solid #4b3f36;
  background-color: #fff;
}

/* News Card */
.news-below-card {
  position: relative;
  background-color: #fff;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

.news-below-card:hover {
  transform: translateY(-5px);
}

/* News Image */
.news-below-image {
  width: 100%;
  border-radius: 12px;
  max-height: 200px;
  object-fit: cover;
}

/* News Category */
.news-below-category {
  position: absolute;
  top: 25px;
  left: 25px;
  background: rgba(255, 255, 255, 0.5);
  padding: 5px 10px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: bold;
}

/* News Info */
.news-below-info {
  padding: 1rem 0;
}

.news-below-meta {
  font-size: 0.9rem;
  color: #6c645b;
}

.news-below-title a {
  font-size: clamp(1rem, 5vw, 1rem);
  color: #4b3f36;
  font-weight: bold;
  margin-top: 5px;
  text-decoration: none;
}

.news-below-excerpt {
  font-size: 1rem;
  color: #6c645b;
  margin-top: 5px;
}

/* News Author */
.news-below-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 1rem;
}

.news-below-author-image {
  width: 30px;
  height: 40px;
  border-radius: 50%;
}

.news-below-author-name {
  font-size: 1rem;
  font-weight: bold;
  color: #4b3f36;
}

.news-read-more-btn {
  font-size: 1.1rem;
  padding: clamp(0.50rem, 1vw, 0.70rem) 4rem;
  border: 2px solid white;
  border-radius: 15px;
  transition: all 0.3s ease-in-out;
  color: #fff;
  text-decoration: none;
}

.news-read-more-btn:hover {
  background-color: #fff;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .news-below-categories {
    flex-wrap: wrap;
  }

  .news-below-category-btn {
    font-size: 0.9rem;
  }

  .news-below-card {
    margin-bottom: 1.5rem;
  }
}


/* ============================== */
/*        OUR SHOPS PAGE          */
/* ============================== */

/* Hero Section */
.our-shops-hero {
  background: no-repeat center center / cover;
  height: 50vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  color: #fff;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: bold;
}

.our-shops-hero .hero-description {
  font-size: clamp(2rem, 8vw, 3rem);
}

/* Dominique London Section */
.dominique-london-section {
  padding: 6rem 0;
  text-align: center;
  background-color: #f9f7f0;
}

.dominique-logo {
  width: 250px;
  margin-bottom: 2rem;
}

.dominique-text {
  font-size: clamp(18px, 1.2vw, 24px);
  line-height: 26px;
  color: #4b3f36;
  margin: 0 auto;
  text-align: center;
}

.dominique-text p {
  margin-bottom: 1rem;
}

.dominique-text a {
  color: #8b5e3c;
  text-decoration: underline;
  font-weight: bold;
}

.dominique-text a:hover {
  color: #6c645b;
}

/* ============================== */
/*        SHOP LOCATIONS          */
/* ============================== */

.our-shops-locations {
  padding: 6rem 0;
  background-color: #bea058;
}

/* Each shop location container */
.shop-location {
  display: flex;
  align-items: stretch;
  background: #fff;
  margin-bottom: 3rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

/* Shop Address (20%) */
.shop-address {
  width: 20%;
  background: #002c50;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: bold;
  color: #fff;
}

/* Shop Info (50%) */
.shop-info {
  width: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  color: white;
}

/* Background Image */
.shop-info img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Dark Overlay
.shop-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
*/

/* Text Content */
.shop-details {
  position: relative;
  z-index: 3;
  text-align: left;
}

.shop-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: bold;
  margin-bottom: 1rem;
}

/* Shop Map (30%) */
.shop-map {
  width: 30%;
  position: relative;
}

.google-map {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: none;
}

/* ============================== */
/*        RESPONSIVE DESIGN       */
/* ============================== */

@media (max-width: 768px) {
  .shop-location {
    flex-direction: column;
  }

  .shop-address,
  .shop-info,
  .shop-map {
    width: 100%;
    height: auto;
  }

  .shop-address {
    padding: 1.5rem;
  }

  .shop-info {
    padding: 8rem 1.5rem;
  }

  .google-map {
    height: 250px;
  }
}

/* ============================== */
/*     DOMINIQUE LONDON SECTION   */
/* ============================== */

.dominique-london-section {
  padding: 2rem 0rem 1rem;
  background-color: #002c50;
}

.dominique-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-direction: row;
}

.dominique-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
}

.dominique-logo {
  width: 250px;
}

/* Adjusted Font Size */
.dominique-text {
  flex: 1;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  color: #fff;
  text-align: left;
}

/* Responsive */
@media (max-width: 768px) {
  .dominique-flex {
    flex-direction: column;
    text-align: center;
	gap: 0rem;
  }

  .dominique-text {
    text-align: center;
  }

	.dominique-logo {
	  margin-bottom: 0rem;
	}
	.dominique-london-section {
	  padding: 1rem 0 1rem;
	}
}



/* ============================== */
/*        GLOBAL HERO SECTION     */
/* ============================== */

.global-hero {
  background: url('/wp-content/themes/understrap-child-1.2.0/assets/images/the-mash-tun-global-img.jpg') no-repeat center center / cover;
  height: 70vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  padding: 0 1rem;
}

/* Title */
.global-hero-title {
  font-size: clamp(2rem, 3vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  z-index: 10;
  position: relative;
}

.global-hero-description {
	font-size: clamp(1.5rem, 3vw, 2rem);
}

/* Title Box Styling */
.hero-title-box-border {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 2px solid #fff;
  z-index: 1;
  background: rgba( 255, 255, 255, 0.05 );
}

.hero-title-box {
  position: relative;
  background: transparent;
  border: 2px solid #fff;
  margin-top: 1rem;
}

.hero-title-inner-box {
  background: rgba( 255, 255, 255, 0.05 );
  backdrop-filter: blur( 8px );
  -webkit-backdrop-filter: blur( 8px );
  padding: 1.5rem;
}

/* Description Block Below Hero */
.global-hero-description-block {
  color: #fff;
  background-color: #002c50;
  text-align: center;
  padding-top: 6rem;
  padding-bottom: 6rem;
  width: 100%;
}

/* Description Text Centered */
.global-hero-description-block .global-hero-description {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  line-height: 1.5;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 1rem;
}

.text-only-section {
	font-size: clamp(1.2rem, 3vw, 2rem);
	background-color: #002c50;
  	color: #fff;
}

/* ============================== */
/*    FEATURED CONTENT SECTION    */
/* ============================== */

/* Restrict height when a slider is used */
.global-slider-container {
  height: 100%;
  max-height: 650px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.global-image-slider,
.global-slide {
  height: 100%;
}

.global-slide img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

/* Flex behavior for image/text alignment */
.featured-content-section .col-md-12 {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
}

.featured-box-container,
.image-wrapper {
  flex: 1;
  min-height: 620px;
}

.featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.object-fit-cover {
  object-fit: cover;
}

/* Override old absolute positioning */
.image-wrapper.right-image,
.image-wrapper.left-image {
  position: relative !important;
  top: auto;
  left: auto;
  right: 50px;
  transform: none;
  /*max-width: 100%;*/
  z-index: 10;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* Responsive behavior */
@media (max-width: 1199px) {
  .featured-content-section .col-md-12 {
    flex-direction: column;
  }

  .featured-box-container,
  .image-wrapper {
    min-height: auto;
  }

  .featured-image {
    height: auto;
  }
}


.featured-content-section {
  padding: 3rem 0 4rem 0;
  background: #bea058;
  position: relative;
}

/* General Box Styling */
.featured-box-container {
  max-width: 700px;
  background: #002c50;
  color: #fff;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  min-height: 620px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1199px) {
	.featured-box-container {
		min-height: unset;
	}
	.image-wrapper.right-image,
	.image-wrapper.left-image {
	  left: 0;
	  right: 0;
	  padding-top: 0;
	}
}

/* Featured Box Text */
.featured-box small {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  display: block;
}

.featured-box h3 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: bold;
  margin-bottom: 1rem;
}

.featured-box p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
}

/* ===== Row 1: Image Left, Text Right ===== */
.left-image {
  position: absolute;
  top: 50%;
  left: 3%;
  transform: translateY(-50%);
  max-width: 600px;
  z-index: 2;
}

.left-text {
  margin-left: auto;
  margin-right: 0;
}

/* ===== Row 2: Image Right, Text Left ===== */
.right-image {
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
  max-width: 600px;
  z-index: 2;
}

.right-text {
  margin-right: auto;
  margin-left: 0;
}

/* Responsive Mobile Adjustments */
@media (max-width: 1199px) {
  .featured-box-container {
    max-width: 100%;
    padding: 2rem;
    text-align: center;
  }

  .image-wrapper {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    max-width: 100%;
    margin-bottom: -3rem;
  }

  .featured-image {
    width: 100%;
    max-width: 100%;
  }

  .featured-box-container {
    margin-left: 0%;
  }

  /* Reduce spacing on mobile */
  .row-spacing {
    margin-top: 30px;
  }
}

@media screen and (max-width: 1399px) and (min-width: 1199px) {
  .image-wrapper .left-image {
    position: absolute;
    top: 50%;
    left: -7%;
    transform: translateY(-50%);
    max-width: 520px;
    z-index: 2;
  }
  .image-wrapper .right-image {
    position: absolute;
    top: 50%;
    right: -7%;
    transform: translateY(-50%);
    max-width: 520px;
    z-index: 2;
  }
  .featured-box-container {
    max-width: 570px;
  }
}

/* Featured Section Button */
.featured-box .btn {
  font-size: 1.1rem;
  padding: clamp(0.50rem, 1vw, 0.70rem) 4rem;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 15px;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  margin-top: 1.5rem;
}

/* Button Hover Effect */
.featured-box .btn:hover {
  background-color: #bea058;
  color: #fff;
}

/* ============================== */
/*            READ MORE           */
/* ============================== */

.short-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.3s ease-out;
}

/* Scrollable content when short_content exceeds 255 characters */
.short-content.scrollable {
    max-height: 150px; /* Limit height when scrolling is needed */
    overflow-y: auto;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
}

/* Expand the featured box dynamically */
.featured-box.expanded {
    transition: padding 0.3s ease-out;
    padding-bottom: 20px;
}

.read-more-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    background: #fff;
    color: #5a4b3e;
    border: 2px solid #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.read-more-btn:hover {
    background: #4b3f36;
    color: #fff;
}








/* ============================== */
/*      CLEAN GLOBAL SLIDER      */
/* ============================== */
.global-slider-container {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  height: 100%;
  background-color: #000;
  border: 1px solid #000;
  padding: 0;
}

.global-image-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  height: 100%;
}

.global-slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.global-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Slider Controls */
.global-slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 10;
}

.global-prev-slide,
.global-next-slide {
  background: rgba(255, 255, 255, 0.5);
  color: white;
  padding: 10px;
  cursor: pointer;
  font-size: 24px;
}

/* Slider Dots */
.global-slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.3);
  padding: 5px 10px;
  border-radius: 20px;
}

.global-slider-dot {
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
  opacity: 0.5;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.global-slider-dot.active {
  opacity: 1;
  transform: scale(1.3);
}


@media (max-width: 768px) {
	.global-slider-container {
		min-height: 0px;
	}
}

/* ============================== */
/*         NEWS INNER PAGE        */
/* ============================== */

.news-inner-wrapper {
  background-color: #f5e5d7;  /* Light Beige Background */
  padding: 12rem 0 6rem 0;
}

/* Content Wrapper (White Background) */
.news-content-wrapper {
  background-color: #fff;
  padding: 4rem 0 4rem 0;
  border-radius: 12px;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 1rem;
  color: #6c645b;
  margin-bottom: 1rem;
  gap: 5px;
}

.breadcrumb a {
  color: #4b3f36;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 5px;
    color: #6c645b;
}

/* Header */
.news-inner-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 1.5rem;
}

/* Text Content */
.news-inner-content {
  max-width: 50%;
}

.news-inner-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #4b3f36;
}

.news-inner-excerpt {
  font-size: 1.2rem;
  color: #6c645b;
}

/* Author Section */
.news-author-single {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  z-index: 10;
}

.news-author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}

.news-author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 1rem;
  font-weight: bold;
}

.author-meta {
  font-size: 0.9rem;
  color: #6c645b;
}

/* Image */
.news-inner-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
}

/* Content Styling */
.news-inner-body {
  font-size: 1.2rem;
  color: #4b3f36;
  line-height: 1.6;
}

.news-inner-body p {
  margin-bottom: 0px;
}

/* Responsive */
@media (max-width: 768px) {
  .news-inner-header {
    flex-direction: column;
  }
  
  .news-inner-content {
    max-width: 100%;
  }

  .news-inner-wrapper {
    padding: 4rem 0;
  }
}

@media (max-width: 768px) {
  .news-author-single {
	position: relative;
    bottom: auto;
    right: auto;
    text-align: left;
    margin-top: 1rem;
  }
}


/* FAQ Archive Grid */
.faq-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.faq-category-card {
  background: white;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.faq-category-card h2 {
  color: #333;
  font-size: 1.5rem;
}

/* ============================== */
/*         FAQ Single Page        */
/* ============================== */
.faq-single-wrapper {
  background: #f5f5f5;
  padding: 40px 0;
}

.faq-title {
  font-size: 2rem;
  color: #333;
}

.faq-accordion {
  margin-top: 20px;
}

.faq-item {
  background: white;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-size: 1.2rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toggle-icon {
  font-size: 1.5rem;
}

.faq-answer {
  display: none;
  padding-top: 10px;
}

.faq-answer.open {
  display: block;
}


/* ============================== */
/*         FAQ ARCHIVE PAGE       */
/* ============================== */
.faq-archive-wrapper {
  padding: 6rem 0;
}

/* FAQ Category Grid */
.faq-category-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* FAQ Category Card */
.faq-category-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  text-align: center;
  width: 300px;
  transition: transform 0.3s ease-in-out;
}

.faq-category-card:hover {
  transform: translateY(-5px);
}

/* FontAwesome Icons */
.faq-category-card i {
  font-size: 2rem;
  color: #4b3f36;
  margin-bottom: 10px;
}

/* FAQ Category Title */
.faq-category-card h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

/* Remove Blue Link Styling */
.faq-category-card h2 a {
  text-decoration: none;
  color: #2d333f;
}

.faq-category-card h2 a:hover {
  color: #da3743;
}

/* FAQ Category Description */
.faq-category-card p {
  font-size: 1rem;
  color: #6c645b;
}


/* ============================== */
/*        FAQ CATEGORY PAGE       */
/* ============================== */

/* Page Wrapper */
.faq-category-wrapper {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

/* Page Title */
.faq-category-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #4b3f36;
    margin-bottom: 1.5rem;
}

/* FAQ Category Description */
.faq-category-description {
    font-size: 1.2rem;
    color: #6c645b;
    max-width: 800px;
}

/* Accordion Styling */
.faq-accordion {
    max-width: 800px;
}

/* Accordion Items */
.accordion-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
    background-color: #fff;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
}

/* Accordion Header */
.accordion-header {
    background: #fff;
}

/* Accordion Buttons */
.accordion-button {
    background-color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    color: #4b3f36;
    padding: 1rem;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    outline: none;
    transition: background 0.3s ease-in-out;
}

.accordion-button:hover,
.accordion-button:focus {
    background-color: #f5e5d7;
}

/* Active State for Opened Accordions */
.accordion-button:not(.collapsed) {
    background-color: #e1cbb5;
    color: #4b3f36;
    box-shadow: none;
}

/* Accordion Content */
.accordion-collapse {
    border-top: 1px solid #ddd;
}

.accordion-body {
    padding: 1rem;
    font-size: 1rem;
    color: #6c645b;
    line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-category-title {
        font-size: 2rem;
    }

    .faq-category-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .accordion-button {
        font-size: 1rem;
        padding: 0.8rem;
    }
}

/* ============================== */
/*      OWL CAROUSEL BANNERS      */
/* ============================== */
.banners-slider-section .container {
  max-width: 100%;
  /*margin: 0px 5px 0px 0px;*/
}

.banners-slider {
  width: 100%;
  height: 100%;
}

.banner-item {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

.banners-img {
  width: 100%;
  object-fit: cover;
  pointer-events: none;
}


/* Fix dot position */
.owl-dots {
  margin-top: 10px !important;
  text-align: center;
}

.owl-dot span {
  width: 10px;
  height: 10px;
  background-color: #b0b0b0;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  transition: transform 0.3s ease-in-out, background-color 0.3s;
}

.owl-dot.active span {
  transform: scale(1.3);
  background-color: #555; /* Dark gray for active dot */
}

/* Navigation Arrows */
.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.owl-prev,
.owl-next {
  background: rgba(255, 255, 255, 0.7);
  color: black;
  padding: 12px;
  cursor: pointer;
  font-size: 24px;
  border-radius: 50%;
  transition: background 0.3s;
}

.owl-prev:hover,
.owl-next:hover {
  background: rgba(255, 255, 255, 1);
}

@media (max-width: 768px) {
	.banners-slider-section .container {
	  max-width: 100%;
	  padding: 0;
	  margin: 0;
	}
}

/* Book a table */
.page-template-book-a-table .global-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 4rem 1rem;
}

.page-template-book-a-table .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1;
}

.page-template-book-a-table .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

.page-template-book-a-table .global-hero-title {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 700;
  margin-bottom: 2rem;
  color: #fff;
}

.page-template-book-a-table .hero-widget-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.banners-section {
	background-color: #002c50;
}

/* =============================
   Slideout Menu & Overlay
============================= */

.navbar-toggler:focus {
	box-shadow: unset;
}

/* Style dropdown items in level 3 submenu */
#main-menu .dropdown-submenu .dropdown-toggle {
  padding-left: 30px !important;
}
#main-menu .dropdown-submenu li {
padding-left: 40px;
}
#main-menu .dropdown-submenu .dropdown-toggle .submenu-icon {
  position: absolute;
  right: 1.9rem;
  z-index: 1030;
  top: 9px;
}

@media (min-width: 768px) {
  .navbar-expand-md .navbar-nav .nav-link {
    padding-left: unset;
  }
}

/* Overlay */
#slideout-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background-color: rgba(190, 160, 88, 0.5);
  z-index: 1049;
  transition: all 0.4s ease;
  pointer-events: none;
}

#slideout-overlay.active {
  left: 0;
}

/* Menu container */
.slideout-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 90%;
  height: 100vh;
  background-color: #002c50;
  color: white;
  transition: all 0.4s ease;
  z-index: 1050;
  overflow-y: auto;
  padding-top: 60px;
}

@media (min-width: 768px) and (max-width: 1200px) {
  .slideout-menu {
    width: 40%;
  }
  #slideout-overlay {
    width: 45%;
  }
}

@media (min-width: 1201px) and (max-width: 1500px) {
  .slideout-menu {
    width: 30%;
  }
  #slideout-overlay {
    width: 33%;
  }
}

@media (min-width: 1501px) {
  .slideout-menu {
    width: 20%;
  }
  #slideout-overlay {
    width: 23%;
  }
}

.slideout-menu.open {
  left: 0;
}

/* =============================
   Navigation & Submenu Styles
============================= */

.slideout-menu .navbar-nav {
  flex-direction: column;
  padding: 0 30px;
}

.slideout-menu .nav-link {
  color: white !important;
  padding: 10px 0;
  font-size: 1.2rem;
}

/* Menu items with children */
.slideout-menu .menu-item-has-children > .dropdown-toggle {
  all: unset;
  display: block;
  color: white;
  padding: 10px 0px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  position: relative;
  text-transform: uppercase;
}

.slideout-menu .menu-item-has-children > .dropdown-toggle::after {
  display: none;
}

/* Submenu container */
.slideout-menu .dropdown-menu {
  position: static !important;
  display: block !important;
  background-color: transparent !important;
  color: white !important;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 10px;
  border: unset;
  border-radius: 0;
  box-shadow: none !important;
  display: block;
  pointer-events: none;
}

.menu-item-has-children.open > .dropdown-menu {
  max-height: 1000px;
  pointer-events: auto;
}

.slideout-menu .dropdown-menu {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.menu-item-has-children.open > .dropdown-menu {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

@media (max-width: 768px) {
	/* =============================
	   Slide-out Scroll Arrows on Mobile Only
	   ============================= */

	/* 1) Container & positioning inside the slide-out */
	#slideout-menu #slideout-scroll-arrows {
	  width: 40px;
	  height: 72px;
	  position: absolute;
	  left: 50%;
	  bottom: 5rem;
	  margin-left: 0px;
	  transform-origin: center center;
	  transition:
		transform 0.3s ease,
		top 0.3s ease,
		bottom 0.3s ease;
	  pointer-events: none;
	  z-index: 1060;
	}

	/* 2) When at bottom: flip & pin to top */
	#slideout-menu #slideout-scroll-arrows.at-bottom {
	  top: 20px;
	  bottom: auto;
	  transform: rotate(180deg);
	}

	/* 3) Stroke animation on the <path>s */
	#slideout-menu #slideout-scroll-arrows path {
	  stroke: #bea058;
	  fill: transparent;
	  stroke-width: 1px;
	  animation: slideout-arrow 2s infinite;
	}

	/* 4) Stagger each arrow in turn */
	#slideout-menu #slideout-scroll-arrows path.a1 { animation-delay: -1s; }
	#slideout-menu #slideout-scroll-arrows path.a2 { animation-delay: -0.5s; }
	#slideout-menu #slideout-scroll-arrows path.a3 { animation-delay:  0s; }

	/* 5) Keyframes */
	@keyframes slideout-arrow {
	  0%   { opacity: 0; }
	  40%  { opacity: 1; }
	  80%  { opacity: 0; }
	 100%  { opacity: 0; }
	}
}

@media (min-width: 768px) {
	#slideout-menu #slideout-scroll-arrows {
		display: none !important;
	}
}

/* Arrow icon behavior */
.menu-item-has-children > .dropdown-toggle::after {
  display: none;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  font-size: 1.1rem;
  transition: transform 0.8s ease;
}

.menu-item-has-children.open > .dropdown-toggle::after {
  transform: translateY(-50%) rotate(180deg);
}

.submenu-icon {
  float: right;
  margin-top: 5px;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.menu-item-has-children > .dropdown-toggle .submenu-icon {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.menu-item-has-children.open > .dropdown-toggle .submenu-icon {
  transform: rotate(180deg);
}

.menu-item-has-children.rotating .submenu-icon {
  transform: rotate(0deg);
}

/* Maintain layout when open (JS handles height) */
.slideout-menu .menu-item-has-children.open > .dropdown-menu {
  display: block;
}

/* Submenu links */
.slideout-menu .dropdown-item {
  background-color: transparent !important;
  color: white !important;
  padding: 5px 0 5px 10px;
  font-size: 1.2rem;
}

.slideout-menu .dropdown-item:hover {
  color: #bea058 !important;
}

/* =============================
   Utility & Close Button
============================= */

body.menu-open {
  overflow: hidden;
}

.close-slideout {
  position: absolute;
  top: -20px;
  right: 16px;
  font-size: 4rem;
  color: white;
  background: none;
  border: none;
  font-weight: bold;
}

/* =============================
   Desktop Adjustments (Hamburger)
============================= */

@media (min-width: 768px) {
  .navbar-toggler i.fas.fa-bars {
    font-size: 1.8rem;
  }
}

/***/
.contact-links {
  flex-direction: column;
  gap: 0.5rem;
}
.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}
.contact-links a .fa-phone-alt,
.contact-links a .fa-envelope {
  font-size: 0.9rem;
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .contact-links {
    flex-direction: column;
  }
  .contact-links a {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-column-gap: 0.5rem;
    white-space: normal;
  }
  .contact-links a i {
    align-self: start;
  }
	.contact-links a .fa-phone-alt, .contact-links a .fa-envelope {
	  top: 5px;
	  position: relative;
	}
}

@media (min-width: 1200px) {
  .contact-links {
    flex-direction: row;
  }
  .contact-links a {
    white-space: nowrap;
  }
}

@media (max-width: 767.98px) {
  .contact-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  .contact-links a {
    margin-right: 0;
  }
}

.newsletter-heading-wrap {
  font-family: 'Georgia', serif;
  font-size: 2.5rem;
  color: #5c3726;
  font-weight: 500;
  line-height: 1.2;
}

.heading-line-1,
.heading-line-2 {
  display: block;
}

@media (max-width: 768px) {
  .newsletter-heading-wrap {
    font-size: 2.0rem;
    text-align: center;
  }
  .heading-line-1,
  .heading-line-2 {
    display: inline;
  }
	.newsletter-illustration {
	  display: block;
	  margin: 1.5rem auto 0 auto;
	}
}

.styled-mailchimp-form {
  max-width: 100%;
}

.styled-mailchimp-form .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.styled-mailchimp-form input[type="text"],
.styled-mailchimp-form input[type="email"] {
  flex: 1 1 calc(50% - 0.5rem);
  padding: 0.75rem 1rem;
  border: 1px solid #222;
  border-radius: 8px;
  background-color: #f3f3ea;
  font-family: 'Georgia', serif;
  font-size: 1rem;
}

.styled-mailchimp-form input[type="email"] {
  flex: 1 1 100%;
}

.styled-mailchimp-form input[type="submit"] {
  background-color: #123c2b;
  color: #fff;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  margin-top: 1rem;
}

.styled-mailchimp-form input[type="submit"]:hover {
  background-color: #0f2f22;
}

.newsletter-signup input[type="text"], .newsletter-signup input[type="email"] {
  text-align: left !important;
}
