.elementor-kit-6{--e-global-color-primary:#000000;--e-global-color-secondary:#FFFFFF;--e-global-color-text:#000000;--e-global-color-accent:#B49352;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-size:36px;--e-global-typography-primary-font-weight:500;--e-global-typography-primary-text-transform:uppercase;--e-global-typography-primary-line-height:1.3em;--e-global-typography-secondary-font-family:"Roboto";--e-global-typography-secondary-font-size:30px;--e-global-typography-secondary-font-weight:400;--e-global-typography-secondary-text-transform:uppercase;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-size:18px;--e-global-typography-text-font-weight:400;--e-global-typography-text-line-height:1.5em;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-size:16px;--e-global-typography-accent-font-weight:700;}.elementor-kit-6 button,.elementor-kit-6 input[type="button"],.elementor-kit-6 input[type="submit"],.elementor-kit-6 .elementor-button{background-color:var( --e-global-color-accent );font-family:"Roboto", Sans-serif;font-weight:400;text-transform:uppercase;text-decoration:none;color:var( --e-global-color-secondary );}.elementor-kit-6 button:hover,.elementor-kit-6 button:focus,.elementor-kit-6 input[type="button"]:hover,.elementor-kit-6 input[type="button"]:focus,.elementor-kit-6 input[type="submit"]:hover,.elementor-kit-6 input[type="submit"]:focus,.elementor-kit-6 .elementor-button:hover,.elementor-kit-6 .elementor-button:focus{background-color:var( --e-global-color-primary );color:var( --e-global-color-secondary );}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-kit-6 a{color:var( --e-global-color-primary );text-decoration:underline;}.elementor-kit-6 a:hover{color:var( --e-global-color-accent );text-decoration:none;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Main nav header Stickly for Mobile and Tablets in portrait mode */
@media (max-width: 1024px) and (orientation: portrait) {
    header .elementor-element-3b42536a {
        position: fixed;
        background: #000!important;
    }
}
/* =======================================
   Override motion effects on tablet + mobile
   ======================================= */
@media (max-width: 1024px) {
  /* Target any element with Elementor motion effects */
  [data-settings*="motion_fx"] {
    transform: none !important;      /* Remove movement */
    opacity: 1 !important;           /* Remove fade effects */
    filter: none !important;         /* Remove blur/scale effects */
    transition: none !important;     /* Stop animation transitions */
  }
}


/* =========================
   When jumpging to sections fix so content is central to viewport
========================= */
#experience,
#dish-2,
#dish-3,
#dish-4 {
  scroll-margin-top: 125px;
}


/* =========================
   Back to Top Button Styles
========================= */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: #000;
  color: #fff;
  text-align: center;
  line-height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 9999;
}

#back-to-top:hover {
  background: #333;
  transform: translateY(-3px);
}

#back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* ===============================
   BULLET NAV CONTAINER
================================= */
.bullet-nav {
  position: fixed;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

/* ===============================
   BULLET DOTS — DEFAULT STATE (LIGHT)
================================= */
.bullet-nav .dot {
  width: 14px;
  height: 14px;
  background: transparent;
  border: 2px solid #000;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.8;
  position: relative;
}

.bullet-nav .dot:hover,
.bullet-nav .dot.active {
  background: #000;
  border-color: #000;
  transform: scale(1.3);
  opacity: 1;
}

/* ===============================
   DARK MODE (on #home)
================================= */
.bullet-nav.dark .dot {
  border-color: #fff;
}

.bullet-nav.dark .dot:hover,
.bullet-nav.dark .dot.active {
  background: #fff;
  border-color: #fff;
}

/* ===============================
   TOOLTIP LABELS ON HOVER
================================= */
.bullet-nav .dot::after {
  content: attr(data-label);
  position: absolute;
  right: 140%;                     /* tooltip to the left of the dot */
  top: 50%;
  transform: translateY(-50%) translateX(0);
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  font-size: 12px;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 10000;
}

.bullet-nav .dot:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(-2px);
}

.bullet-nav.dark .dot::after {
  background: rgba(255, 255, 255, 0.95);
  color: #000;
}

/* ===============================
   CONNECTOR LINE — ONLY ON HOVER
================================= */
.bullet-nav .dot::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%) scaleX(0);
  transform-origin: right;
  width: 6px;
  height: 1px;
  background: #000;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.bullet-nav .dot:hover::before {
  opacity: 1;
  transform: translateY(-50%) scaleX(1);
}

.bullet-nav.dark .dot::before {
  background: #fff;
}

/* ===============================
   SCROLL BEHAVIOUR
================================= */
html {
  scroll-behavior: smooth;
}

/* ===============================
   RESPONSIVE TWEAKS
================================= */
@media (max-width: 767px) {
  .bullet-nav {
    right: 15px;
    gap: 12px;
  }

  .bullet-nav .dot {
    width: 12px;
    height: 12px;
  }

  .bullet-nav .dot::after {
    font-size: 11px;
  }
}


/* ===============================
   Carousel dots navigation
================================= */


/* Gallery / Dishes carousel */
.carousel-dishes .swiper .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -25px !important;
}

/* Hero / Home carousel */
.carousel-home .swiper .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 100px !important;
    /*Make sure pagination always sits above slides*/
    z-index: 100;
}

/* (Optional) consistent centering across all carousels */
.elementor-element .swiper-pagination-bullets {
    display: flex;
    justify-content: center;
    gap: 8px;
}

/* Optional: mobile tweak for home hero if needed */
@media (max-width: 767px) {
  .carousel-home .swiper .swiper-pagination-bullets.swiper-pagination-horizontal {
      right: 5% !important;
      left: auto !important;
      bottom: 35px !important;
  }
  .elementor-element .swiper-pagination-bullets {
      justify-content: right !important;
  }

    .elementor-7 .elementor-element.elementor-element-0dc811c .elementor-repeater-item-5e574e9 .swiper-slide-bg {
        background-position: 90%!important;
    }
}

@media (max-width: 1024px) and (orientation: portrait) {
  .carousel-home .swiper .swiper-pagination-bullets.swiper-pagination-horizontal {
      bottom: 50px !important;
  }
}


/* Force all carousel thumbnails to the same height */
.carousel-dishes .swiper-slide img,
.carousel-home .swiper-slide img {
    height: 300px;              /* 👈 pick your desired uniform height */
    width: 100%;
    object-fit: cover;          /* crop edges to fill container */
    object-position: center;    /* center the crop */
    display: block;
}/* End custom CSS */