/* Global */

:root {
  --brand-olive: #3d3c1c;
  --brand-olive-medium: #5d5b2b;
  --brand-olive-accent: #77733a;
  --brand-olive-soft: #c8c6a3;
  --brand-olive-pale: #e3e2ce;
  --brand-olive-cream: #f3f2e8;
  --brand-olive-overlay: rgb(61 60 28 / 29%);

  --tab-accent: var(--brand-olive-accent);
  --tab-line: #dcdcdc;
  --tab-num: #7a7a7a;
  --tab-text: var(--brand-olive-soft);
  --tab-text-active: var(--brand-olive);
}

/* =========================
   TAB STYLING (Desktop + Mobile)
   Targets: .js-tabbuttons [data-origin]
   Active class: .is-active (set by your JS)
   ========================= */

.wpcf7 form.sent .wpcf7-response-output {
  border-color: var(--brand-olive) !important;
}

.wpcf7 input[name="eventdate"]::-webkit-calendar-picker-indicator {
  filter: brightness(0) saturate(100%) invert(22%) sepia(17%) saturate(1125%) hue-rotate(19deg) brightness(90%) contrast(92%);
  cursor: pointer;
}

/* panels hidden by default */
.js-tabs .js-tabcontent .js-panel { display:none !important; }

/* only active panel shows */
.js-tabs .js-tabcontent .js-panel.is-active { display:block !important; }
/* cursor */
.js-tabbuttons [data-origin],
.js-tabbuttons [data-origin] *{ cursor:pointer !important; }

/* LEFT column: center the whole list vertically */
.js-tabbuttons{
display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;    /* vertical centering if the column is tall */
}
/* ACTIVE: button + anything inside it */
.js-tabbtn.is-active,
.js-tabbtn.is-active *{
  color:var(--brand-olive) !important;
}

/* HOVER: button + anything inside it */
.js-tabbtn:hover,
.js-tabbtn:hover *,
.js-tabbtn:focus-visible,
.js-tabbtn:focus-visible *{
  color:var(--brand-olive) !important;
  font-weight:700 !important;
}


/* The list wrapper (IMPORTANT: put js-tablist on the wrapper around the repeater items) */
.js-tablist{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:18px !important;
  counter-reset: tabnum;
  width: fit-content;      /* makes line only as tall as content */
  padding-left: 0;
}

/* grey line: exactly matches content height */
.js-tablist::before{
  content:"";
  position:absolute;
  left: 52px;              /* line position */
  top: -20px;
  bottom: -20px;
  width:1px;
  background:var(--tab-line);
}

/* each tab row */
.js-tablist [data-origin]{
  position:relative;
  display:flex;
  align-items:center;
  font-size:20px;
  font-weight:500;
  text-transform:none;     /* your screenshot is not uppercase */
  letter-spacing:0;
  color:var(--tab-text);
  gap:0;                   /* we control spacing manually */
  padding: 10px 0;
  cursor:pointer !important;
}

/* number column */
.js-tablist [data-origin]::before{
  counter-increment: tabnum;
    content: counter(tabnum, decimal-leading-zero);
    width: 13px;
    text-align: right;
    margin-right: 36px;
    font-size: 22px;
    font-weight: 600;
    color: var(--tab-num);
}

/* label spacing: space between line and label */
.js-tablist [data-origin]{
  padding-left: 18px;      /* space between line and label */
}

/* active label */
.js-tablist [data-origin].is-active{
  color:var(--tab-text-active);
  font-weight:700;
}

/* active olive bar on the grey line */
.js-tablist [data-origin].is-active::after{
  content:"";
  position:absolute;
  left: 52px;              /* MUST match js-tablist::before left */
  top: 50%;
  transform: translate(-50%,-50%);
  width:3px;
  height:50px;
  background:var(--tab-accent);
  border-radius:2px;
}

/* Make active panel participate in layout normally */
.js-tabs .js-tabcontent .js-panel.is-active{
  display:block !important;
  height:auto !important;
}

/* Ensure images / sliders inside panels can define height */
.js-tabs .js-tabcontent .js-panel.is-active img{
  display:block;
  width:100%;
  height:auto;
}

/* If your panel uses a background image or absolutely-positioned inner wrapper */
.js-tabs .js-tabcontent .js-panel{
  overflow:hidden;
}
/* make panel positioning context */
.js-tabcontent .js-panel{
  position: relative;
}

/* arrows base */
.js-tabprev,
.js-tabnext{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:15px;
  height:44px;
  border:0;
  background:#ffffff00;
  color:#666;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:2px;
  cursor:pointer;
  z-index:5;
}

/* left arrow */
.js-tabprev{
  left:12px;   /* move closer/further from edge */
}

/* right arrow */
.js-tabnext{
  right:12px;
}



.button-atom {
	border-radius:8px !important;
}

/* width */
.container-width
{
		max-width: 1440px !important;
        margin: 0px auto;
        padding-left: 150px !important;
        padding-right: 150px !important;
        background: #fffffff2 !important;
        z-index: 9  !important;
        width: 94%  !important;
}

.container-width-no-padding
{
		max-width: 1440px !important;
        margin: 0px auto;
        background: #ffffff00 !important;
        z-index: 9  !important;
        width: 94%  !important;
}
.width-footer
{
	max-width: 1440px !important;
    margin: 0px auto;
	width: 94%  !important;
}
.content-center-horizontally
{
	display:flex !important;
   flex-direction: column !important;
  justify-content: center !important;
  align-items:center !important;

}


.content-center-veryically,
.content-center-vertically
{
	display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;

}
.button-right-homepage-col
{
	display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
}

.content-center-responsive
{
	display:flex !important;
   flex-direction: column !important;
  justify-content: center !important;
  align-items:center !important;
}

.center-on-mobile
{
  display:flex !important;
  flex-direction:column !important;
  justify-content:flex-start !important;
  align-items:flex-start !important;
}

.image-border
{
	border-radius:8px;
	height:500px !important;
}

.private-events-text
{
	padding-top:30px;
	padding-bottom:50px;
}

a
{
	text-decoration:none !important;
}
html {
    scrollbar-gutter: stable;
}


/* Header Menu Settings */
.header {
    border-radius: 0 0 20px 20px;
    background: var(--brand-olive) !important;
	transition: background 250ms ease, backdrop-filter 250ms ease;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;

    padding-left: 20px;
    padding-right: 0px;

    z-index: 999;

    max-width: 1440px;
    width: 90%;

    /* Center properly without transform */
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;

    /* Performance smoothing */
    transform: none !important;
    backface-visibility: hidden;
}



/* After scrolling */

.header.is-scrolled{ background: var(--brand-olive) !important; }
/* Dropdown menu background (TOP = transparent) */
/* Smooth transition */
.header,
.header .breakdance-dropdown-floater,
.header .breakdance-dropdown-body {
  transition: background 250ms ease, background-color 250ms ease;
}

/* TOP: dropdown transparent */
.header .breakdance-dropdown-floater,
.header .breakdance-dropdown-body,
.header .breakdance-dropdown-section,
.header .breakdance-dropdown-links {
  background: var(--brand-olive-overlay) !important;
}
/* Dropdown link hover color */
/* Smooth transition */
.breakdance-dropdown-item {
    transition: background 200ms ease;
}

/* Full-row hover and keyboard-focus states */
.header .breakdance-dropdown-item:hover,
.header .breakdance-dropdown-item:focus-within {
  background: var(--brand-olive-medium) !important;
}

/* Keep link text readable against the olive background */
.header .breakdance-dropdown-item:hover .breakdance-dropdown-link__text,
.header .breakdance-dropdown-item:focus-within .breakdance-dropdown-link__text {
  color: var(--brand-olive-cream) !important;
}

/* SCROLLED: dropdown solid */
.header.is-scrolled .breakdance-dropdown-floater,
.header.is-scrolled .breakdance-dropdown-body,
.header.is-scrolled .breakdance-dropdown-section,
.header.is-scrolled .breakdance-dropdown-links {
  background: var(--brand-olive) !important;
}

/* Make sure individual rows don't force a different bg */
.header .breakdance-dropdown-item,
.header .breakdance-dropdown-link {
  background: transparent !important;
}

.mobile-header
{
	position: fixed !important;
    top: 0px;
	z-index: 999;
}


/* Ninja pro table settings */

.semantic_ui .ui.table td {
    padding: 10px;
}
/* Home page Settings */
/* Eat And Drink Section */
.eat-drink-column {
    margin-top: -250px !important;
    background: linear-gradient(180deg, rgb(255 255 255 / 30%) 0%, rgba(255, 255, 255, 1) 22%) !important;
    z-index: 999;
    border-radius: 8px 8px 0px 0px;
    box-shadow: 1px 0px 8px -7px rgb(223 223 223 / 84%);
    -webkit-box-shadow: 1px 0px 8px -7px rgb(223 223 223 / 84%);
    -moz-box-shadow: 1px 0px 8px -7px rgb(223 223 223 / 84%);
	padding-top:150px;
	padding-bottom:150px;
}

.menu-tab-mobile {
    display: none !important;
}

.breakdance .bde-advanced-tabs-158-110 {
    align-items: center !important;
}

.menu-column
{
	width:100% !important;
	height:500px !important;
	border-radius:20px !important;
}

/* Private Events Section*/

.private-events-image
{
	border-radius:20px !important;
	height: 100%;
    object-fit: cover;
}

/* Chef Section & Buttons Section */
.chef-section
{
	background-blend-mode: overlay;
    background-image: url(https://maestro.overtake.co.nz/wp-content/uploads/2026/02/261-IHG-Geelong.webp), linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.15) 18%, rgba(255, 255, 255, 0.4) 19%, #ffffff 100%) !important;
		padding-top:100px;
	   margin-top: -100px;
	padding-bottom: 100px;
}
.chef-column
{
	padding-bottom:150px;
	margin-bottom:100px;
	padding-top:150px;
	border-radius: 0px 0px 20px 20px;
}

.button-column
{
	padding-bottom:60px;
	background-color: #FFF0 !important;
	
}

/* Reviews */

.reviews-section
{
	margin-top: -2px !important;
}
.review-text
{
	align-items:center;
	text-align: center;
}


/* Whats On Section */
.whatson-section
{
	background-blend-mode: overlay;
    background-image: url(https://maestro.overtake.co.nz/wp-content/uploads/2026/02/138-IHG-Geelong.webp), linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 24%, rgba(249, 253, 253, 0.03) 26%, #ffffff 100%) !important;
	padding-top:0px;
	padding-bottom:100px;
}
.whatson-column
{
	background-color:#ffffff00 !important;
}

/* Smooth hover/focus transition */
.whatson{
  transition: all .3s ease;
}

/* Card hover and keyboard-focus states */
.whatson:hover,
.whatson:focus-within {
  background:var(--brand-olive) !important;
}

/* Keep all card content readable */
.whatson:hover,
.whatson:hover *,
.whatson:focus-within,
.whatson:focus-within * {
  color:var(--brand-olive-pale) !important;
}

.whatson-btn{
  border:1px solid transparent;
  transition:all .3s ease;
}

/* Button state when the button or its card is interactive */
.whatson-btn:hover,
.whatson-btn:focus-visible,
.whatson:hover .whatson-btn,
.whatson:focus-within .whatson-btn {
  border-color:var(--brand-olive-pale) !important;
  color:var(--brand-olive-cream) !important;
}

/* Heading Settings */
/* Apply to any heading you give the class "dash-heading" */
.dash-heading{
  display: flex;
  align-items: center;       /* <-- keeps the dash perfectly centered vertically */
  gap: 14px;                 /* space between dash and text */
}

/* The dash/line */
.dash-heading::before{
  content: "";
  width: 46px;               /* dash length */
  height: 2px;               /* dash thickness */
  background: var(--brand-olive-accent); /* dash color */
  flex: 0 0 auto;
}

/* Heading with dash on top */
.dash-heading-top{
  display: flex;
  flex-direction: column;
  align-items: center;   /* centers dash horizontally */
  gap: 12px;             /* space between dash and text */
}

/* The dash */
.dash-heading-top::before{
  content: "";
  width: 46px;           /* dash length */
  height: 2px;           /* dash thickness */
  background: var(--brand-olive-accent); /* dash color */
}



.breakdance-swiper-wrapper
{
	--swiper-padding-h: 0px !important;
}
/* Whats On Settings */

.breakdance .whatson .bde-column, .breakdance .whatson .bde-columns
 {
    position: relative;
    height: 100%;
}


.whatson-list .ee-posts-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}


.whatson-home-section {
	padding:150px 0px;
}
.whatson-btn {
    position: absolute;
    bottom: 20px;
	
}
/* Default: 2 columns */
.js-collapse-cols{
  --columnCount: 2;
}

.js-collapse-cols:not(:has(.js-gallery-col)) {
    --columnCount: 1 !important;
}


.whatson {
    display: block;
    position: relative;
    height: 100%;
	box-shadow: 0px 0px 8px 6px rgb(145 144 144 / 32%);
	border-radius: 22px;
}

.post-content{
	margin:20px 0px;
}
   
   
.blog-details-description{
position:relative; height:100%; padding: 20px;
}

.title-col{
  text-decoration:none;
}
.title-col:hover, .title-col:hover h2, .whatson-btn *{
  text-decoration:none;
}


.whatson-list article {
	   position: relative;  height:100%;              
    margin-bottom: 30px;
}
.whatson-list article > div {
	
	text-align:left;   
    padding-bottom: 42px;
}
.post-excerpt-1 * {
	padding:0px;
	margin-bottom:50px !important;
	margin-top: 0px !important;
}
.whatson .ct-column {
    width: 100%;
}
.whatson .columns .ct-column {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
}
.whatson .grid-image{
	height:350px;
    width: 100%;  
    object-fit: cover;margin-bottom:20px;
}

.post-title{
	text-align: left !important;
    font-size: 26px!important;font-weight:600;
    padding: 10px 0px 0px 0px !important;  line-height:33px;	

}
.post-excerpt-1{
	text-align: left;
    padding: 20px 0px !important;  
    font-weight: 400;
}

/* Private Events Template */

.section-featured-image {
    line-height: 0;
    padding: 0px;
    margin: 0px;
    width: 100% !important;
    display: block ;
	position: relative;
	height: 500px !important;
    object-fit: cover;
}
.section-featured-image .overlay h1 {
    color: #fff !important;
}

.section-featured-image img {
    width: 100%;
    height: 500px !important;
    display: block;
    object-fit: cover;
    object-position: center center;
}
.section-featured-image .overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(to bottom, rgb(0 0 0 / 18%), #0000002c);
}

/* Menu Main Page */
.menu-image
{
	padding-bottom:20px;
}
.menu-text{
	padding:20px 0 20px 0;
}

/* Contact Form */

.wpcf7 input[type="text"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="date"],
.wpcf7 input[type="email"],
.wpcf7 input[type="url"],
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
    background: transparent;
    padding: 12px;
    border: 1px solid var(--brand-olive);
    color: var(--brand-olive);
	border-radius: 4px;
	box-shadow: none !important;
	margin-bottom: 20px;
}

.wpcf7 input[type="date"] {
  color-scheme: light;
}

.wpcf7 form .wpcf7-form-control:not([type="submit"]) {
  min-height: 44px;
  box-shadow: none !important;
}

.wpcf7 form .wpcf7-form-control:not([type="submit"]):hover,
.wpcf7 form .wpcf7-form-control:not([type="submit"]):focus {
  box-shadow: none !important;
}

.eventform .wpcf7 input:-webkit-autofill,
.eventform .wpcf7 input:-webkit-autofill:focus,
.wpcf7 input:-webkit-autofill,
.wpcf7 input:-webkit-autofill:focus {
  -webkit-text-fill-color: inherit !important;
  background-color: inherit !important;
}

/* About Us Page Settings */
.about-us-section
{
	padding:150px 0 0px 0;
}

.about-us-col2
{
	padding:100px 0 100px 0;
}

.about-us-img
{
	height:600px !important;
	width: 100% !important;
    object-fit: cover;
    object-position: center center;
    border-radius: 22px;
}

.about-us-col3
{
	padding-bottom:100px;
}

.enquire-now-container
{
	background-color: var(--brand-olive);
}

.enquire-now-inner
{
	background-color: var(--brand-olive);
}

.enquire-now .wpcf7 input[type="text"],
.enquire-now .wpcf7 input[type="tel"],
.enquire-now .wpcf7 input[type="date"],
.enquire-now .wpcf7 input[type="email"],
.enquire-now .wpcf7 select,
.enquire-now .wpcf7 textarea {
    width: 100%;
    background: transparent;
    padding: 12px;
    border: 1px solid var(--brand-olive-pale);
    color: var(--brand-olive-pale);
}
.enquire-now-form-column
{

	padding: 70px 0px 100px 150px;
}

.enquire-now-img{
	height:100% !important;
}
.bde-icon-list-266-132 .bde-icon-list__text p {
    margin: 0;
    padding: 0;
}

/* Footer Section */
.footer-gallery-section
{
	padding : 150px 0 150px 0;
}

.footer-details-section
{
	background-color:var(--brand-olive) !important;
	padding:50px 0 50px 0;
}
.footer-logo
{
	max-width:250px !important;
	width:250px !important;
	height:auto;
}

 .social-media-loop {
    display: flex !important;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: row;
    padding: 0px;
}


 .backtotopmobile {
    position: fixed;
    right: 20px;
    bottom: 60px;
}

.footer-btn  {
    position: fixed;
    right: 0px;
    bottom: 0px;
}


.sticky-footer {
    z-index: 9;
    position: fixed !important;
    bottom: 0px;
    top: auto;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 100%;
}

    .backtotopmobile {
        display: block !important;
    }
.backtotopmobile i {
        background: var(--brand-olive);
        padding: 16px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        color: #fff;
    }
.footer-btn a{
	width:100%;border-radius:0px;
}

.enquire-now h4
{
	color:var(--brand-olive-soft) !important;
}

/* ================================
   OFFCANVAS MENU
================================ */

.hd-menu-section .breakdance-dropdown--wp .breakdance-dropdown-links {
  width: 100%;
  z-index: 9;
}

.hd-menu-section .breakdance-dropdown .breakdance-dropdown-link {
  z-index: 9;
  display: inline-block;
}

.hd-menu-section .breakdance-dropdown .breakdance-dropdown-section {
  gap: 0px;
  padding: 15px;
}

.offcanvasmenu .breakdance-dropdown--wp .breakdance-dropdown-links .menu-item {
  padding: 0;
}

.offcanvasmenu .breakdance-dropdown--wp .breakdance-dropdown-links .menu-item a {
  padding: 10px;
}

/* Dropdown visibility */
.offcanvasmenu .breakdance-dropdown.open .breakdance-dropdown-floater {
  display: block !important;
}

.offcanvasmenu .breakdance-dropdown .breakdance-dropdown-floater {
  display: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
}

.offcanvasmenu .breakdance-dropdown-caret {
  display: none !important;
}

.offcanvasmenu .breakdance-dropdown .breakdance-dropdown-floater .breakdance-dropdown-body {
  background: transparent !important;
}

.offcanvaes-contact-list .bde-icon-list__text p > a,
.offcanvas-contact-list .bde-icon-list__text p > a {
	color:var(--brand-olive-medium);
}

.offcanvaes-contact-list .bde-icon-list__text p,
.offcanvas-contact-list .bde-icon-list__text p {
	margin:0px !important;
}
/* ================================
   PANEL ANIMATION
================================ */

.hd-menu-section {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  min-height: 100vh;
  height: 100% !important;
  overflow-y: auto;
  overflow-x: hidden;
  background: #FFFDF5;
  padding: 10px 0 0 26px !important;
  z-index: 9999;

  transform: translateX(100%);
  transition: transform 0.4s ease;
}

.hd-menu-section.show-section {
  transform: translateX(0);
}

/* ================================
   MENU STRUCTURE
================================ */

.hd-menu-section .breakdance-menu-list {
  display: inline-block;
  width: 100%;
}

.hd-menu-section ul.breakdance-menu-list li {
  width: 100%;
  display: block;
  padding: 0;
  margin-bottom: 10px;
  line-height: 26px;
}

.hd-menu-section ul.breakdance-menu-list li.breakdance-menu-topbar {
  display: none;
}

/* ================================
   MENU LINK COLORS
================================ */

/* Default */
.hd-menu-section ul.breakdance-menu-list li > a,
.hd-menu-section ul.breakdance-menu-list li > button.breakdance-menu-link-arrow {
  color: var(--brand-olive) !important;
  transition: color 0.3s ease, background 0.3s ease;
}

/* Hover and keyboard-focus states */
.hd-menu-section ul.breakdance-menu-list li:hover > a,
.hd-menu-section ul.breakdance-menu-list li:hover > button.breakdance-menu-link-arrow,
.hd-menu-section ul.breakdance-menu-list li:focus-within > a,
.hd-menu-section ul.breakdance-menu-list li:focus-within > button.breakdance-menu-link-arrow,
.offcanvasmenu .breakdance-dropdown--wp .breakdance-dropdown-links .menu-item:hover > a,
.offcanvasmenu .breakdance-dropdown--wp .breakdance-dropdown-links .menu-item:focus-within > a,
.hd-menu-section ul.breakdance-menu-list li a:hover,
.hd-menu-section ul.breakdance-menu-list li a:focus-visible {
  background: var(--brand-olive) !important;
  color: var(--brand-olive-pale) !important;
}

.hd-menu-section ul.breakdance-menu-list li:hover > a,
.hd-menu-section ul.breakdance-menu-list li:hover > button.breakdance-menu-link-arrow,
.hd-menu-section ul.breakdance-menu-list li:focus-within > a,
.hd-menu-section ul.breakdance-menu-list li:focus-within > button.breakdance-menu-link-arrow {
	padding: 10px 0px 10px 10px !important;	
}

/* Active / Current */
.hd-menu-section ul.breakdance-menu-list li.current_page_item > a,
.hd-menu-section ul.breakdance-menu-list li.current-menu-item > a,
.hd-menu-section ul.breakdance-menu-list li.current_page_parent > a,
.hd-menu-section ul.breakdance-menu-list li.current-menu-parent > a {
  background: var(--brand-olive) !important;
  color: var(--brand-olive-pale) !important;
	
}
.hd-menu-section ul.breakdance-menu-list li.current_page_item > a, .hd-menu-section ul.breakdance-menu-list li.current-menu-item > a
{
	padding: 10px 0px 10px 10px !important;	
}
/* Dropdown open state */
.offcanvasmenu .breakdance-dropdown.open > .breakdance-dropdown-toggle > a,
.offcanvasmenu .breakdance-dropdown.open > .breakdance-dropdown-toggle > button {
  background: var(--brand-olive) !important;
  color: var(--brand-olive-pale) !important;
}

/* Remove previous black override */
.menu-col-block a:hover,
.menu-col-block a:focus-visible {
  color: var(--brand-olive-pale) !important;
}

.breakdance-menu-link 
{
	padding-top:20px !important;
	padding-bottom:20px !important;
}

.breakdance-dropdown-link
{
	padding-top:0px !important;
	padding-bottom:0px !important;	
}

/* Shared Mozzarella mobile-menu states; olive palette intentionally retained */
@media (max-width: 1119px) {
  .offcanvasmenu {
    display: block;
    z-index: 9999;
  }

  .offcanvasmenu .breakdance-menu-list > li.current_page_item,
  .offcanvasmenu .breakdance-menu-list > li.current-menu-item,
  .offcanvasmenu .breakdance-menu-list > li.current_page_parent,
  .offcanvasmenu .breakdance-menu-list > li.current-menu-parent,
  .offcanvasmenu .breakdance-menu-list > li.current_page_ancestor,
  .offcanvasmenu .breakdance-menu-list > li.current-menu-ancestor {
    background: var(--brand-olive) !important;
  }

  .offcanvasmenu .breakdance-menu-list > li.current_page_item > a,
  .offcanvasmenu .breakdance-menu-list > li.current-menu-item > a,
  .offcanvasmenu .breakdance-menu-list > li.current_page_item > a .breakdance-menu-link__text,
  .offcanvasmenu .breakdance-menu-list > li.current-menu-item > a .breakdance-menu-link__text,
  .offcanvasmenu .breakdance-menu-list > li.current_page_parent > .breakdance-dropdown-toggle .breakdance-menu-link,
  .offcanvasmenu .breakdance-menu-list > li.current-menu-parent > .breakdance-dropdown-toggle .breakdance-menu-link,
  .offcanvasmenu .breakdance-menu-list > li.current_page_ancestor > .breakdance-dropdown-toggle .breakdance-menu-link,
  .offcanvasmenu .breakdance-menu-list > li.current-menu-ancestor > .breakdance-dropdown-toggle .breakdance-menu-link,
  .offcanvasmenu .breakdance-menu-list > li.current_page_parent > .breakdance-dropdown-toggle .breakdance-menu-link__text,
  .offcanvasmenu .breakdance-menu-list > li.current-menu-parent > .breakdance-dropdown-toggle .breakdance-menu-link__text,
  .offcanvasmenu .breakdance-menu-list > li.current_page_ancestor > .breakdance-dropdown-toggle .breakdance-menu-link__text,
  .offcanvasmenu .breakdance-menu-list > li.current-menu-ancestor > .breakdance-dropdown-toggle .breakdance-menu-link__text,
  .offcanvasmenu .breakdance-menu-list > li.current_page_parent > .breakdance-dropdown-toggle .breakdance-menu-link-arrow,
  .offcanvasmenu .breakdance-menu-list > li.current-menu-parent > .breakdance-dropdown-toggle .breakdance-menu-link-arrow,
  .offcanvasmenu .breakdance-menu-list > li.current_page_ancestor > .breakdance-dropdown-toggle .breakdance-menu-link-arrow,
  .offcanvasmenu .breakdance-menu-list > li.current-menu-ancestor > .breakdance-dropdown-toggle .breakdance-menu-link-arrow {
    color: var(--brand-olive-pale) !important;
  }

  /* Keep nested dropdowns readable when their parent item is active. */
  .offcanvasmenu .breakdance-dropdown .breakdance-dropdown-floater .breakdance-dropdown-body,
  .offcanvasmenu .breakdance-dropdown-section,
  .offcanvasmenu .breakdance-dropdown-links {
    background: #FFFDF5 !important;
  }

  .offcanvasmenu .breakdance-dropdown-item,
  .offcanvasmenu .breakdance-dropdown-links .menu-item {
    background: transparent !important;
  }

  .offcanvasmenu .breakdance-dropdown-links .menu-item > a,
  .offcanvasmenu .breakdance-dropdown-links .menu-item > a .breakdance-dropdown-link__text {
    color: var(--brand-olive) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .offcanvasmenu .breakdance-dropdown-links .menu-item.current_page_item > a,
  .offcanvasmenu .breakdance-dropdown-links .menu-item.current-menu-item > a,
  .offcanvasmenu .breakdance-dropdown-links .menu-item.current_page_item > a .breakdance-dropdown-link__text,
  .offcanvasmenu .breakdance-dropdown-links .menu-item.current-menu-item > a .breakdance-dropdown-link__text {
    background: var(--brand-olive) !important;
    color: var(--brand-olive-pale) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .offcanvasmenu .breakdance-menu-list > li > a:hover,
  .offcanvasmenu .breakdance-menu-list > li > a:focus-visible,
  .offcanvasmenu .breakdance-dropdown-toggle > .breakdance-menu-link:hover,
  .offcanvasmenu .breakdance-dropdown-toggle > .breakdance-menu-link:focus-visible,
  .offcanvasmenu .breakdance-dropdown-links .menu-item > a:hover,
  .offcanvasmenu .breakdance-dropdown-links .menu-item > a:focus-visible {
    background: var(--brand-olive) !important;
    color: var(--brand-olive-pale) !important;
  }

  .offcanvasmenu .breakdance-menu-list > li > a:hover .breakdance-menu-link__text,
  .offcanvasmenu .breakdance-menu-list > li > a:focus-visible .breakdance-menu-link__text,
  .offcanvasmenu .breakdance-dropdown-toggle > .breakdance-menu-link:hover .breakdance-menu-link__text,
  .offcanvasmenu .breakdance-dropdown-toggle > .breakdance-menu-link:focus-visible .breakdance-menu-link__text,
  .offcanvasmenu .breakdance-dropdown-links .menu-item > a:hover .breakdance-dropdown-link__text,
  .offcanvasmenu .breakdance-dropdown-links .menu-item > a:focus-visible .breakdance-dropdown-link__text {
    color: var(--brand-olive-pale) !important;
  }
}

@media (min-width: 1120px) {
  .offcanvasmenu {
    display: none !important;
  }
}

/* ================================
   COLUMN BLOCKS
================================ */

.hd-menu-section .menu-col-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  padding: 20px;
  border-bottom: 1px solid #ccc;
  width: 100%;
}

.hd-menu-section .menu-col-block .bde-button {
  margin-bottom: 0px;
  width: 100% !important;
}

.hd-menu-section .menu-col-block .bde-button button {
  width: 100%;
}

/* ================================
   SOCIAL + OPENING HOURS
================================ */

.menu-hd-social-media {
  padding-left: 10px;
}

.hd-menu-section .menu-hd-social-media .bde-loop {
  display: flex;
  flex-direction: row;
  gap: 0;
  padding-bottom: 30px;
}

.hd-menu-section .menu-hd-social-media .bde-loop a {
  font-size: 32px;
}

.hd-menu-section .menu-hd-social-media .bde-loop-item {
  display: inline-block;
  position: relative;
  margin-left: 10px !important;
  margin-bottom: 8px;
  padding: 10px 0 !important;
}

.opening-hours {
  display: flex;
  flex-direction: column;
}

.menu-col-block .bde-loop-item {
  padding: 0 !important;
}

/* ================================
   CLOSE BUTTON
================================ */

.close-block {
  position: absolute;
  top: 20px;
  right: 20px;
}

.breakdance img.menu-close {
  max-width: 50px !important;
}



/* ================================
   Gift Voucher Page
================================ */

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

/* ================================
   FOOTER CLEANUP
================================ */

footer .social-media .bde-loop {
  display: flex !important;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
}

.social-media .bde-loop > div {
  border: none;
}

.social-media .bde-loop > div i {
  font-size: 32px;
}

.social-media .bde-loop .bde-loop-item {
  padding: 6px;
  gap: 0;
}

footer .subscribe-us p {
  padding: 0;
  margin: 0;
}

footer .cont-footer-details a {
  padding: 6px 0;
}

/* Private Events Template */

.private-events-shortcode
{
	width:100%;
}
.private-events-form-col
{
	background-color: var(--brand-olive);
	padding:100px;
}

/* Events Contact Form */

.eventform .formgroup {
    margin-bottom: -40px; /* space between rows */
}

.eventform input,
.eventform select,
.eventform textarea {
    width: 100%;
    padding: 14px;
    margin-top: 6px;
    border: 1px solid var(--brand-olive-pale);
    background: transparent;
    color: var(--brand-olive-pale);
}

.eventform textarea {
    min-height: 150px;
}
.eventform .row {
    display: flex;
    gap: 20px; /* space between two boxes */
}

.eventform .col50 {
    flex: 1;
}
@media (max-width: 768px) {
    .eventform .row {
        flex-direction: column;
    }
}
.eventform,
.eventform label,
.eventform h2,
.eventform input,
.eventform select,
.eventform textarea,
.eventform button {
    color: var(--brand-olive-pale);
}
.eventform input::placeholder,
.eventform textarea::placeholder {
    color: var(--brand-olive-pale);
    opacity: 1; /* prevents faded look */
}
/* Tablet Responsive */

@media (max-width: 1119px) {
	.mobile-header
	{
		display:block !important;
		visibility: visible !important;
	}
	.breakdance-menu-link 
{
	padding-top:10px !important;
	padding-bottom:10px !important;
}
	.eat-drink-column 
	{
	margin-top: -70px !important;
		padding-top: 75px;
    padding-bottom: 75px;
	}
	
	.chef-column {
    padding-bottom: 75px;
    margin-bottom: 0px;
    padding-top: 75px;
    border-radius: 0px 0px 20px 20px;
}
	.button-column {
		padding-top: 100px;
    padding-bottom: 0px;
}
	.reviews-section {
   margin-top: -2px !important;
}
	.whatson-section {
		padding-top: 75px;
		padding-bottom: 75px;
	}
	
	.footer-gallery-section {
    padding: 75px 0 75px 0;
}
	
	
	.breakdance .bde-menu-148-123 .breakdance-menu {
		        --mobile-offcanvas-width: 50% !important;
	}
	
	.container-width
		{
        padding-left: 50px !important;
        padding-right: 50px !important;
		}


	.private-events-image {
    border-radius: 20px !important;
    height: 500px !important;
    width: 100%;
    object-fit: cover;
		object-position: center top;
}
	.enquire-now-form-column {
    padding-left: 75px;
    padding-right: 75px;
    padding-bottom: 75px;
}
	.menu-tab-mobile {
    display: none !important;
}
		.about-us-section
{
	padding:75px 0 0px 0;
}

.about-us-col2
{
	padding:50px 0 50px 0;
}

.about-us-img
{
	height:400px !important;
	width: 100% !important;
    object-fit: cover;
    object-position: center center;
    border-radius: 22px;
}

.about-us-col3
{
	padding-bottom:50px;
}
	


  /* tabs row container */
  .js-tablist{
    display:flex !important;
    flex-direction:row !important;
    align-items:flex-end !important;
    gap:28px !important;
    width:100% !important;
    overflow-x:auto !important;
    padding:0 0 14px 0 !important;
    text-align:center !important;
  }

  /* remove desktop vertical line */
  .js-tablist::before{
    display:none !important;
  }

  /* each tab (DIV with data-origin) */
  .js-tablist .js-tabbtn{
    display:block !important;
    padding:0 4px 14px 4px !important;
    margin:0 !important;
    line-height:1 !important;
    height:auto !important;
    position:relative !important;
  }

  /* ✅ hide the label button/text on tablet */
  .js-tablist .js-tabbtn .bde-button__button{
    display:none !important;
  }

  /* number styling */
  .js-tablist .js-tabbtn::before{
    width:auto !important;
    margin:0 !important;
    font-size:16px !important;
    line-height:1 !important;
  }

  /* active underline */
  .js-tablist .js-tabbtn.is-active::after{
    content:"" !important;
    position:absolute !important;
    left:50% !important;
    bottom:-1px !important;
    top:auto !important;
    transform:translateX(-50%) !important;
    width:52px !important;
    height:3px !important;
    background:var(--brand-olive) !important;
    border-radius:2px !important;
  }

	/* The repeater list is the real container of items */
  .js-tablist .bde-loop-list,
  .js-tablist .bde-dynamic-repeater-list{
    display:flex !important;
    flex-direction:row !important;
    align-items:flex-end !important;
    gap:28px !important;
    width:100% !important;
    overflow-x:auto !important;
    padding:0 0 14px 0 !important;
    border-bottom:1px solid #dcdcdc !important;
    justify-content:center !important;
  }

  /* Make each article not behave like a block row */
  .js-tablist .bde-loop-item,
  .js-tablist article{
    flex:0 0 auto !important;
    margin:0 !important;
    padding:0 !important;
  }

}

@media (max-width: 1023px) {
	.n2-ss-slider,
.n2-ss-slide,
.n2-ss-layers-container {
  height: 500px !important;
  max-height: 500px !important;
}
	.mobile-header
	{
		display:block !important;
		visibility: visible !important;
	}
	.eat-drink-column 
	{
	margin-top: -160px !important;
		padding-top: 75px;
    padding-bottom: 75px;
	}
	
	.chef-column {
    padding-bottom: 75px;
    margin-bottom: 0px;
    padding-top: 75px;
    border-radius: 0px 0px 20px 20px;
}
	.reviews-section {
    margin-top: -3px !important;
}
	.whatson-section {
		padding-top: 75px;
	}
	.button-column {
		padding-top: 100px;
    padding-bottom: 0px;
}
	.footer-gallery-section {
    padding: 75px 0 75px 0;
}
	
	.image-border
{
	border-radius:8px;
	height:300px !important;
}
	
	.breakdance-menu-link 
{
	padding-top:10px !important;
	padding-bottom:10px !important;
}
	
    .breakdance .bde-advanced-tabs-158-110 {
        flex-direction: row !important;
    }
	
	.enquire-now-form-column {
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 50px;
}
	
	.menu-tab-mobile {
    display: none !important;
}
	.about-us-section
{
	padding:75px 0 0px 0;
}

.about-us-col2
{
	padding:50px 0 50px 0;
}

.about-us-img
{
	height:400px !important;
	width: 100% !important;
    object-fit: cover;
    object-position: center center;
    border-radius: 22px;
}

.about-us-col3
{
	padding-bottom:50px;
}
	
	
	
}
/* Mobile Responsive */	
@media (max-width: 667px) {
	.offcanvasmenu {
		display: block;
		width: 100%;
		z-index: 9999;
	}

	.section-featured-image,
	.section-featured-image img {
		height: 300px !important;
	}

	.button-right-homepage-col
{
	display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}
	.mobile-header
	{
		display:block !important;
		    visibility: visible !important;
	}
	.image-border
{
	border-radius:8px;
	height:300px !important;
}
	.breakdance .bde-menu-148-123 .breakdance-menu {
		        --mobile-offcanvas-width: 100% !important;
	}
	.container-width
		{
		width:95% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
		}
	
	.breakdance .bde-button-266-135 .bde-button__button {
    --bde-button-width: 100% !important;
}
	.private-events-image {
    border-radius: 20px !important;
    height: 300px !important;
    width: 100%;
    object-fit: cover;
}
	.enquire-now-form-column {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 50px;
}
	.menu-tab-mobile {
    display: flex !important;
}

.menu-tabs
{
	display:none!important;
}
	.breakdance-menu-link 
{
	padding-top:10px !important;
	padding-bottom:10px !important;
}
		.eat-drink-column 
	{
	margin-top: 100px !important;
		padding-top: 50px;
    padding-bottom: 50px;
	}
	
	.chef-column {
    padding-bottom: 50px;
    margin-bottom: 0px;
    padding-top: 50px;
    border-radius: 0px 0px 20px 20px;
}
	.button-column {
		padding-top: 50px;
    padding-bottom: 0px;
}
	.reviews-section {
	margin-top: -3px !important;
}
	.whatson-section {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	
	.footer-gallery-section {
    padding: 50px 0 50px 0;
}
	.about-us-section
{
	padding:50px 0 0px 0;
}

.about-us-col2
{
	padding:50px 0 50px 0;
}

.about-us-img
{
	height:300px !important;
	width: 100% !important;
    object-fit: cover;
    object-position: center center;
    border-radius: 22px;
}

.about-us-col3
{
	padding-bottom:50px;
}
	.dash-heading{
    flex-direction: column;
    align-items: center;  /* center dash + text */
    text-align: center;   /* optional if you want centered text */
  }

  .dash-heading::before{
    margin-bottom: 8px;   /* spacing between dash & text */
  }
	
	.center-on-mobile {
	  justify-content:center !important;
	  align-items:center !important;
	}
}
.enquire-now .wpcf7-response-output
{
	    border-color: #fff !important;
	color:#fff !important;
}
.enquire-now .wpcf7 form.sent .wpcf7-response-output {
    border-color: #fff !important;
}


/* Contact Us only */
#menu-item-190:hover,
#menu-item-190.breakdance-menu-item--active,
#menu-item-190.current-menu-item {
    border-bottom-right-radius: 20px;
    overflow: hidden;
}
.conract-page-form .wpcf7 form.invalid .wpcf7-response-output,
.contact-page-form .wpcf7 form.invalid .wpcf7-response-output
{
	border-color: var(--brand-olive-pale) !important;
	color:var(--brand-olive-pale) !important;
}


@media (max-width: 479px) {
    
  .mobile-full-btn {
    width: 100% !important;
    display: block !important;
  }

  .mobile-full-btn .bde-button__button,
  .mobile-full-btn a {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    box-sizing: border-box !important;
    text-align: center;
  }
}