@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Source+Sans+3:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");

:root {
  --color-navy: #0c2340;
  --color-navy-mid: #0f335e;
  --color-navy-deep: #081a2e;
  --color-accent: #c9a962;
  --color-accent-hover: #ddb86e;
  --color-text-on-dark: rgba(255, 255, 255, 0.92);
  --color-text-muted: rgba(255, 255, 255, 0.75);
  --color-card-bg: #faf8f5;
  --color-card-text: #1a2d45;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --radius-lg: 14px;
  --radius-xl: 22px;
  --shadow-card: 0 20px 50px rgba(0, 0, 0, 0.22);
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.12);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --reveal-duration: 0.75s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  letter-spacing: 0.02em;
  background: var(--color-navy) !important;
  background-image: radial-gradient(
      ellipse 120% 80% at 100% -20%,
      rgba(201, 169, 98, 0.08) 0%,
      transparent 55%
    ),
    radial-gradient(ellipse 80% 60% at 0% 100%, rgba(15, 51, 94, 0.5) 0%, transparent 50%) !important;
  background-attachment: fixed;
  color: var(--color-text-on-dark) !important;
  -webkit-font-smoothing: antialiased;
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

:focus:not(:focus-visible) {
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.03em;
}

a {
  color: inherit;
}

/* ——— Nav ——— */
.navbar {
  padding: 1rem 1.5rem;
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
}

.navbar-toggler:focus {
  box-shadow: none !important;
  border: none !important;
}

.navbar-toggler {
  border: none !important;
}

.nav-icon path {
  fill: #fff;
}

.nav-logo {
  width: 70%;
  height: auto;
}

.navbar .navbar-brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  padding: 0.2rem 0;
}

.site-logo {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}

.site-logo--nav {
  max-height: 152px;
  width: auto;
}

.site-logo--offcanvas {
  max-height: 120px;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}

.site-logo--footer {
  max-height: 200px;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}

.index-navbar {
  background-color: transparent !important;
  z-index: 1030;
}

.hero-banner {
  position: relative;
}

.offcanvas-body ul li a {
  color: var(--color-text-on-dark) !important;
  font-size: 1.15rem !important;
  font-weight: 500;
  line-height: 2.75;
  text-transform: none;
  letter-spacing: 0.04em;
  border-radius: 8px;
  transition: color 0.2s var(--ease-out), background 0.2s var(--ease-out),
    transform 0.2s var(--ease-out);
}

@media (hover: hover) {
  .offcanvas-body ul li a:hover {
    color: var(--color-accent) !important;
    transform: translateX(4px);
  }
}

.offcanvas.offcanvas-end {
  width: min(100%, 380px) !important;
  background: rgba(8, 26, 46, 0.94) !important;
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.offcanvas-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
  padding: 1rem 1.25rem 0.5rem;
  position: relative;
  border-bottom: none;
}

.offcanvas-header .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0.35rem;
  margin: 0;
  flex-shrink: 0;
}

.offcanvas-body {
  background-color: var(--color-navy);
  color: var(--color-text-on-dark) !important;
  padding-top: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.offcanvas-body .navbar-brand {
  display: block;
  padding-right: 0;
  padding-left: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.offcanvas-body .navbar-brand .site-logo--offcanvas {
  padding: 0.25rem 0 1rem;
}

.nav-link {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}


.navbar-color {
  min-height: 12rem;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  /* Keep overflow visible so the toggler/offcanvas aren’t clipped */
  overflow: visible;
}

/* No backdrop-filter here: it makes `position:fixed` offcanvas (inside .navbar)
   resolve against the nav instead of the viewport, which breaks the menu after scroll. */
.navbar-color.back-color {
  background: rgba(12, 35, 64, 0.94) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

/* ——— Hero (home) ——— */
.hero-section-div-work {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(88vh, 760px);
  display: flex;
  flex-direction: column;
}

.hero-section-div-work::before {
  content: "";
  position: absolute;
  inset: -5%;
  z-index: 0;
  background: url("../images/slide-small.jpg") center / cover no-repeat;
  animation: heroKenBurns 32s var(--ease-out) infinite alternate;
}

.hero-section-div-work::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    125deg,
    rgba(4, 14, 28, 0.93) 0%,
    rgba(12, 35, 64, 0.58) 45%,
    rgba(12, 35, 64, 0.42) 100%
  );
  pointer-events: none;
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1.05) translate(0, 0);
  }
  100% {
    transform: scale(1.12) translate(1.2%, -1.2%);
  }
}

.hero-section-div-work > .navbar {
  position: relative;
  z-index: 2;
}

.hero-home__layout {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(1rem, 6vw, 3rem);
  padding-bottom: clamp(2rem, 8vw, 4rem);
}

.hero-home__copy {
  max-width: 40rem;
}

.hero-home__kicker {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 1rem;
}

.hero-home__title {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 5.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.12;
  color: #fff;
  margin: 0 0 1.25rem;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.35);
}

.hero-home__lead {
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0 0 2rem;
  max-width: 32rem;
}

.hero-home__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.hero-home__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.65rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out),
    background 0.25s var(--ease-out), color 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out);
}

.hero-home__btn--primary {
  background: var(--color-accent);
  color: var(--color-navy-deep) !important;
  border: 2px solid transparent;
  box-shadow: 0 8px 28px rgba(201, 169, 98, 0.28);
}

.hero-home__btn--primary:hover {
  background: var(--color-accent-hover);
  color: var(--color-navy-deep) !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(201, 169, 98, 0.35);
}

.hero-home__btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-home__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff !important;
  transform: translateY(-2px);
}

.contect-section {
  background-image: linear-gradient(
      rgba(12, 35, 64, 0.75),
      rgba(12, 35, 64, 0.75)
    ),
    url("../images/banner-02.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  min-height: 380px;
}

.Photos-section {
  background-image: linear-gradient(
      rgba(12, 35, 64, 0.75),
      rgba(12, 35, 64, 0.75)
    ),
    url("../images/bann-1.jpg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  min-height: 380px;
}

.sample-menu-section {
  background-image: linear-gradient(
      rgba(12, 35, 64, 0.75),
      rgba(12, 35, 64, 0.75)
    ),
    url("../images/banner-3.jpg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  min-height: 380px;
}

.hero-section h2 {
  padding-top: clamp(7rem, 18vw, 11rem);
  color: #fff;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

/* ——— Sections ——— */
.heading-1 {
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  padding-bottom: 1.25rem;
  line-height: 1.2;
}

.heading-desing {
  padding: 3rem 0 2rem;
}

.heading-1::before,
.heading-1::after {
  display: inline-block;
  content: "";
  border-top: 2px solid var(--color-accent);
  width: 3rem;
  margin: 0 0.85rem;
  transform: translateY(-0.35rem);
  opacity: 0.9;
}

.meta-chef,
.How-It-Works,
.My-Services,
.demo-gallery,
.contact-section,
.Contact-section-area,
.menu-page,
.gallery {
  background-color: var(--color-navy);
  color: var(--color-text-on-dark);
}

.meta-chef p,
.How-It-Works > .row > .col-md-8 p,
.demo-gallery .col-md-10 p {
  color: var(--color-text-muted);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.meta-chef-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.meta-chef-text {
  color: var(--color-text-on-dark);
}

/* ——— Cards ——— */
.step-card img {
  width: 100px !important;
  margin: 1.5rem 0 0;
}

.step-card .card,
.My-Services .card {
  border: none;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  background: var(--color-card-bg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step-card .card {
  min-height: 280px;
}

.My-Services .card {
  min-height: 380px;
}

.step-card .card:hover,
.My-Services .card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.My-Services .card > .text-center:first-of-type {
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.My-Services .card .card-img-top {
  transition: transform 0.7s var(--ease-out);
}

.My-Services .card:hover .card-img-top {
  transform: scale(1.06);
}

.step-card .card > .text-center:first-of-type {
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.step-card .card .card-img-top {
  transition: transform 0.45s var(--ease-out);
}

.step-card .card:hover .card-img-top {
  transform: scale(1.06);
}

.step-card .card-title,
.My-Services .card-title {
  color: var(--color-card-text) !important;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
}

.step-card .card-text,
.My-Services .card-text {
  color: var(--color-card-text) !important;
  font-weight: 400;
  font-size: 0.98rem;
  line-height: 1.6;
}

.My-Services img {
  height: 240px;
  width: 100%;
  object-fit: cover;
  border-radius: 0;
}

.My-Services .card-img-top {
  border-radius: 0;
}

.demo-gallery {
  padding-bottom: 5rem;
}

.demo-gallery .carousel {
  max-width: 920px;
  margin: 0 auto;
}

.demo-gallery .carousel img {
  border-radius: var(--radius-lg);
  width: auto !important;
  max-height: min(70vh, 560px);
  margin: 0 auto;
  object-fit: contain;
}

/* Featured dishes: 3 visible, advance 1 at a time (custom JS track) */
.demo-gallery .featured-dishes-carousel {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  padding: 0 2.75rem 3rem;
}

.featured-dishes-carousel.carousel-modern {
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.featured-dishes-carousel__viewport {
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius-xl);
  background: rgba(0, 0, 0, 0.15);
  box-shadow: var(--shadow-card);
  padding: 0.65rem 0.5rem;
}

.featured-dishes-carousel__track {
  display: flex;
  will-change: transform;
}

.featured-dish-cell {
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.featured-dish-cell:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.featured-dish-cell img {
  border-radius: var(--radius-lg);
  width: 100% !important;
  height: auto;
  aspect-ratio: 4 / 3;
  max-height: min(42vh, 360px);
  min-height: 160px;
  margin: 0;
  display: block;
  object-fit: cover;
}

.featured-dishes-carousel__btn {
  position: absolute;
  top: 42%;
  z-index: 4;
  width: 3rem;
  height: 3rem;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(8, 26, 46, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 1;
  transition: opacity 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-dishes-carousel__btn:hover:not(:disabled) {
  background: rgba(8, 26, 46, 0.75);
}

.featured-dishes-carousel__btn:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}

.featured-dishes-carousel__btn--prev {
  left: 0;
}

.featured-dishes-carousel__btn--next {
  right: 0;
}

.featured-dishes-carousel__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}

.featured-dishes-carousel__dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: var(--color-accent);
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}

.featured-dishes-carousel__dots button:hover {
  opacity: 0.75;
}

.featured-dishes-carousel__dots button.active {
  opacity: 1;
  transform: scale(1.15);
}

.gallery img {
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem !important;
  height: 356px;
  width: 100%;
  object-fit: cover;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.gallery img:hover,
.demo-gallery .carousel img:hover {
  box-shadow: var(--shadow-card);
}

.gallery .demo-gallery-poster {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.contact-section {
  background-image: linear-gradient(
      rgba(12, 35, 64, 0.78),
      rgba(12, 35, 64, 0.78)
    ),
    url("../images/our-chef-banner.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.Contact-section-area {
  padding-bottom: 4rem;
}

.contact-information {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.contact-information h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 600;
  font-family: var(--font-display);
}

.contact-information p {
  padding: 1.25rem 0;
  color: var(--color-text-muted);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.contact-information a.btn,
.contact-information a.btn:hover {
  display: inline-block;
  background: var(--color-accent) !important;
  color: var(--color-navy-deep) !important;
  padding: 0.85rem 2.75rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: 999px;
  border: none;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-information a.btn:hover {
  background: var(--color-accent-hover) !important;
  transform: translateY(-2px);
}

/* ——— Events ——— */
.event-card {
  color: var(--color-card-text) !important;
  margin-bottom: 0;
  font-size: 0.95rem;
  font-weight: 500;
}

.event-card-style {
  border-radius: var(--radius-lg) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  background: var(--color-card-bg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.event-card-style img {
  border-top-left-radius: var(--radius-lg) !important;
  border-top-right-radius: var(--radius-lg) !important;
  height: 200px;
  object-fit: cover;
}

.event-card-style .card-title {
  color: var(--color-card-text) !important;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.event-card-style .card-body {
  padding-bottom: 1.5rem !important;
}

/* ——— Footer ——— */
.footer {
  background: var(--color-navy-mid);
  padding: 3rem 0 0;
  color: var(--color-text-on-dark);
}

.footer .brand h4,
.footer .brand h4.footer-brand-title {
  font-size: 0;
  font-weight: 600;
  line-height: 0;
  padding-bottom: 0.75rem;
  margin: 0;
}

.footer .brand h4 a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  line-height: 0;
  transition: opacity 0.2s ease;
}

.footer .brand h4 a:hover {
  color: #fff;
}

.footer .brand h4 a:hover .site-logo--footer {
  opacity: 0.9;
}

.footer .brand p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.footer .brand a[href^="tel"] {
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
}

.footer .brand a[href^="tel"]:hover {
  color: var(--color-accent);
}

.footer .menu-style ul li a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}

.footer .menu-style ul li a:hover {
  color: #fff;
}

.footer .menu-style ul li {
  list-style: none;
  padding: 0.35rem 0;
}

.footer .social-icon ul li {
  list-style: none;
  display: inline-block;
}

.footer ul {
  margin-bottom: 0;
  padding-left: 0;
}

.footer .social-icon ul li a {
  background: rgba(255, 255, 255, 0.12);
  padding: 0.5rem 0.65rem;
  font-size: 1.35rem;
  border-radius: 50%;
  color: #fff !important;
  margin: 0.5rem 0.35rem 0;
  transition: background 0.2s, transform 0.2s;
}

.footer .social-icon ul li a:hover {
  background: var(--color-accent);
  color: var(--color-navy) !important;
  transform: scale(1.05);
}

.footer .social-icon ul li a i {
  color: inherit !important;
}

.footer-bottom {
  color: var(--color-text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.5rem 0;
  font-size: 0.9rem;
}

.footer-bottom p {
  margin-bottom: 0.35rem;
}

.footer-bottom a {
  color: var(--color-text-muted);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--color-accent);
}

/* ——— Contact page ——— */
.Contact-section-area a {
  color: var(--color-text-on-dark);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
}

.Contact-section-area a i {
  background: var(--color-accent);
  padding: 0.75rem;
  color: var(--color-navy) !important;
  border-radius: 50%;
  margin-right: 0.75rem;
}

.Contact-section-area p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
}

/* ——— Inquiry page: form guide ——— */
.inquiry-form-guide {
  margin: 0 auto 2.25rem;
  padding: 1.5rem 1.5rem 1.5rem 1.65rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.inquiry-form-guide h2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: #fff;
  letter-spacing: 0.02em;
}

.inquiry-form-guide__intro {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0 0 1.25rem;
}

.inquiry-form-guide__list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.inquiry-form-guide__list li {
  margin-bottom: 0.7rem;
}

.inquiry-form-guide__list li:last-child {
  margin-bottom: 0;
}

.inquiry-form-guide__list strong {
  color: var(--color-text-on-dark);
  font-weight: 600;
}

#contactForm {
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* ——— Menu pages ——— */
.menu-page-style h2 {
  padding: 5rem 0 2.75rem;
}

.menu-page-style ul li a {
  color: var(--color-text-on-dark) !important;
  font-size: 1.1rem !important;
  line-height: 2.5;
}

.menu-page-style ul li {
  list-style: none;
}

.menu-item .navbar-brand-link a h2 {
  font-size: 1.35rem !important;
}

.menu-item a {
  text-decoration: none;
}

.Menu-area ul li {
  font-weight: 600;
  font-size: 1rem;
  padding-bottom: 0.5rem;
  color: var(--color-text-on-dark);
}

.Menu-area ul {
  padding-left: 1.25rem;
}

.Menu-area p {
  font-size: 0.98rem;
  padding-left: 0.5rem;
  color: var(--color-text-muted);
}

.Sample-Menu-area h1 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  color: #fff;
}

.Sample-Menu-area p {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

.Menu-area h1 {
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
  color: #fff;
  font-family: var(--font-display);
}

body hr {
  border-color: rgba(255, 255, 255, 0.15);
  opacity: 1;
  margin: 2rem 0;
}

/* ——— Scroll reveal ——— */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity var(--reveal-duration) var(--ease-out),
    transform var(--reveal-duration) var(--ease-out);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--instant {
  opacity: 1;
  transform: none;
  transition: none;
}

/* ——— Carousel ——— */
.carousel-modern {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.15);
  box-shadow: var(--shadow-card);
}

.carousel-modern .carousel-inner {
  border-radius: var(--radius-xl);
}

.carousel-indicators {
  bottom: -3rem !important;
}

.carousel-indicators [data-bs-target] {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background-color: var(--color-accent);
  opacity: 0.45;
}

.carousel-indicators .active {
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

/* ——— Media ——— */
@media only screen and (max-width: 768px) {
  body {
    background-attachment: scroll !important;
  }

  .nav-logo {
    width: 150px;
  }

  .site-logo--nav {
    max-height: 128px;
  }

  .site-logo--footer {
    max-height: 168px;
  }

  .navbar-color {
    min-height: 10rem;
  }

  .offcanvas-header {
    padding: 0.85rem 1rem 0.35rem;
  }

  .heading-1::before,
  .heading-1::after {
    width: 2rem;
    margin: 0 0.5rem;
    transform: translateY(-0.25rem);
  }

  .meta-chef-text {
    padding: 1.5rem 1.25rem !important;
  }

  .meta-chef-img {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .menu-style {
    padding: 2rem 0;
  }

  .My-Services .col-md-4 {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
  }

  .sample-menu-section,
  .contect-section,
  .Photos-section {
    min-height: 300px;
  }

  .hero-section-div-work {
    min-height: min(78vh, 620px);
  }

  .hero-section h2 {
    padding-top: 6rem;
  }

  .How-It-Works > .row > .col-md-8 p {
    padding: 1rem 1rem 0;
  }

  .demo-gallery .carousel img {
    max-height: 55vh;
  }

  .featured-dish-cell img {
    max-height: min(38vh, 300px);
    min-height: 140px;
  }

  .demo-gallery .featured-dishes-carousel {
    padding: 0 2.25rem 2.5rem;
  }
}

@media only screen and (max-width: 424px) {
  .heading-1::before,
  .heading-1::after {
    display: none;
  }

  .demo-gallery .carousel img {
    max-height: 45vh;
  }

  .featured-dish-cell img {
    max-height: min(48vh, 260px);
    min-height: 120px;
  }

  .demo-gallery .featured-dishes-carousel {
    padding: 0 1.75rem 2.25rem;
  }

  .featured-dishes-carousel__btn {
    width: 2.5rem;
    height: 2.5rem;
  }

  .sample-menu-section,
  .contect-section,
  .Photos-section {
    min-height: 260px;
  }

  .hero-section-div-work {
    min-height: min(72vh, 560px);
  }

  .hero-home__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-home__btn {
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-section-div-work::before {
    animation: none;
    transform: none;
    inset: 0;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .My-Services .card .card-img-top,
  .step-card .card .card-img-top,
  .step-card .card,
  .My-Services .card {
    transition: none;
  }

  .My-Services .card:hover .card-img-top,
  .step-card .card:hover .card-img-top {
    transform: none;
  }

  .My-Services .card:hover,
  .step-card .card:hover {
    transform: none;
  }

  .featured-dishes-carousel__track {
    transition: none !important;
  }

  .hero-home__btn,
  .hero-home__btn:hover,
  .contact-information a.btn,
  .contact-information a.btn:hover {
    transform: none;
  }
}
