@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

/* ---------- Variables ---------- */
:root {
  --accent: #cfa84a;
  /* golden for buttons & highlights */
  --nav-bg: rgba(0, 0, 0, 0.6);
  --glass: rgba(255, 255, 255, 0.06);
  --theme: #E4B95B;
  --black: #19181D;
}

/* ---------- Page reset ---------- */
body,
html {
  height: 100%;
  margin: 0;
  font-family: "Urbanist", sans-serif;
  color: var(--black);
  background: #221C14;
}

h3 {
  font-family: "Fraunces", serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--black);

}

h6 {
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

p {
  font-size: 16px;
  font-weight: 300;
}
.sec-pad{
  padding: 60px 0;
}

.banner {
  position: relative;
  background-image: url(../images/banner-image.png);
  background-attachment: fixed;
  background-size: cover;
  height: 100vh;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;      /* vertical center */
  justify-content: center;  /* horizontal center */
}
.hero-content{
    align-items: center;      /* vertical center */
    justify-content: center;  /* horizontal center */
}
.banner:before {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 71.98%, rgba(0, 0, 0, 0.8) 100%);
  width: 100%;
  height: 100%;
}

.banner h1 {
  font-family: "Fraunces", serif;
  font-size: 48px;
  font-weight: 300;
  color: #FFFFFF;
}

span.location {
    position: relative;
    padding-left: 20px; /* space for the circle */
    margin-left: 10px;
}

span.location::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FFFFFF; /* circle color */
    left: 0;
    top: 6px;
}

/* ---------- NAVBAR ---------- */
.site-nav {
  background: #ffffff12;
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgb(255 255 255 / 50%);
  transition: height 0.5s ease-in;
}
.header.fixed {
  background: #11111196 !important;
}

.navbar-brand img {
  height: 66px;
}

.nav-link {
  color: #FCF8EF !important;
  font-size: 15px;
  font-weight: 300;
  padding: 1rem 1.6rem !important;
}

.nav-link:hover {
  color: var(--theme) !important;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: var(--theme) !important;
  font-weight: 600;
}

.phone-pill {
  color: #fff;
  margin-right: .6rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s;
}

.phone-pill:hover{
  color: var(--theme);
}

.phone-pill svg {
  height: 22px;
  width: 22px;
}

.btn-book {
  background: var(--theme);
  color: var(--black);
  font-weight: 600;
  border-radius: 30px;
  padding: .75rem 1.8rem;
  box-shadow: 0 6px 18px rgba(203, 156, 67, 0.18);
  transition: transform .3s ease, box-shadow .18s ease;
}
form.book-form .btn {
    width: 300px;
}

.btn.btn-hero{
    font-size: 1rem;
  font-weight: 600;
  background: var(--black);
  color: #FFFFFF;
  border: solid 1px var(--theme);
  padding: .75rem 2rem;
  /*border-radius: 50px;*/
  grid-gap: 10px;
  transition: transform .3s ease, box-shadow .18s ease;
}
.btn.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(203, 156, 67, 0.25);
}
.hero-buttons {
    display: flex;
    gap: 30px; /* increase this value */
    justify-content: center;
}
.btn.btn-book-table {
  font-size: 1rem;
  font-weight: 600;
  background: var(--black);
  color: #FFFFFF;
  border: solid 1px var(--theme);
  padding: .75rem 2rem;
  border-radius: 30px;
  display: flex;
  grid-gap: 10px;
  transition: transform .3s ease, box-shadow .18s ease;
}

.btn-book:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(203, 156, 67, 0.25);
  background: var(--black);
  color: #FFFFFF;
}

a.btn-book:hover svg path {
  fill: white;
}

.btn.btn-book-table:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(203, 156, 67, 0.25);
}

/* ---------- navigation animations ---------- */
.nav-fade {
  opacity: 0;
  transform: translateY(-6px);
  animation: navFade 800ms ease forwards .2s;
}

@keyframes navFade {
  to {
    opacity: 1;
    transform: none;
  }
}

.below-hero {
 position: absolute;
  /*left: 0;*/
  /*right: 0;*/
  bottom: 10px;
  z-index: 9;
  text-align: center;
  color: #FFFFFF;
  display: flex;
  align-items: center;     /* vertical center */
  justify-content: center; 
}

/* Full-screen hero using your single image as background */
.about {
  min-height: 100vh;
  background-image: url('../images/feature-bg.jpg');
  background-attachment: fixed;
  /* Parallax effect */
  background-size: cover;
  position: relative;
  background-blend-mode: lighten;
  display: flex;
  align-items: center;
  padding: 200px 0 600px;
}

/* Feature list */
.features {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem 2rem;
  max-width: 520px;
}

.feature {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.92);
  transform: translateY(10px);
  animation: slideFadeUp 900ms ease forwards 700ms;
}

.feature .icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background: #121115;
  border: 1px solid var(--theme);
  display: flex;
  align-items: center;
  justify-content: center;
}

a.phone {
  color: var(--theme);
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
}

/* Booking block */
.booking {
  margin-top: 2.4rem;
  display: flex;
  gap: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
}


/* Polaroid-style cards (decorative) — subtle float animation */
.decor-cards {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-shot {
  width: 230px;
  height: 360px;
  border-radius: 12px;
  border: 5px solid #FFEDC5;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.6);
  transform-origin: center;
  position: absolute;
  background-size: cover;
  background-position: center;
  filter: saturate(.95) contrast(.92);
  transition: transform .35s cubic-bezier(.2, .9, .3, 1), box-shadow .25s;
}

.card-shot.card-a {
  height: 400px;
}

.card-a {
  right: 8%;
  top: 5%;
  transform: rotate(10deg);
}

.card-b {
  right: 40%;
  top: 30%;
  transform: rotate(348deg);
}

.card-shot img {
  height: 100%;
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

@media (max-width: 720px) {
  .features {
    grid-template-columns: 1fr;
  }

  .decor-cards {
    display: none;
  }

  /* hide cards on small screens to keep layout clean */
}


.card-b {
  animation-name: floatyB;
}

.menu {
  position: relative;
  padding: 200px 0 60px;
}

.menu::before {
  content: "";
  position: absolute;
  background-image: url(../images/leaf.png);
  top: 0;
  height: 300px;
  width: 100%;
  background-size: contain;
}
.sf-hero {
    padding: 0;
    text-align: center;
}
.menu-inner {
  position: relative;
}

.best {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
  background-image: url(Frame 26.png);
  background-size: cover;
  background-position: center center;
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  top: -725px;
}

/* soft rounded container like your design */
.best-inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  background-image: url('../images/best-bg.jpg');
  border-radius: 36px;
  padding: 3.75rem 2.25rem;
  box-shadow: 0 10px 30px rgba(12, 12, 12, 0.12);
  text-align: center;
  backdrop-filter: blur(2px);
}

.best-inner::before {
  content: "";
  position: absolute;
  background-image: url(../images/cog.png);
  background-repeat: no-repeat;
  height: 250px;
  width: 250px;
  background-size: contain;
  left: 60px;
  top: -125px;
}


/* card grid */
.cards {
  display: flex;
  gap: 4rem;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.menu-card {
  width: 250px;
  border-radius: 14px;
  overflow: visible;
  text-align: center;
  background: transparent;
  border: none;
  transform: translateY(18px);
  opacity: 0;
  animation: fadeUp .7s ease forwards .45s;
}

.menu-thumb {
  width: 100%;
  height: 300px;
  border-radius: 14px;
  overflow: hidden;
  margin: 0 auto 1rem;
  transition: transform .32s cubic-bezier(.2, .9, .3, 1), box-shadow .2s;
}
.menu-thumb img{
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  margin: 0 auto 1rem;
  transition: transform .32s cubic-bezier(.2, .9, .3, 1), box-shadow .2s;
}
.menu-card:hover .menu-thumb img{
 transform: scale(1.2);
}

.caption {
  color: #47464A;
  font-size: 22px;
  font-weight: 600;
  margin-top: .45rem;
}

/* rounded corners on outermost page corners (like image) */
.hero {
  border-radius: 28px;
}

/* small screens */
@media (max-width: 900px) {
  .panel {
    padding: 2.25rem 1.25rem;
    border-radius: 22px;
  }

  .menu-card {
    width: 46%;
  }

  .menu-thumb {
    height: 200px;
  }
  .menu::before {
    background-image: url(../images/leaf.png);
    background-repeat: no-repeat;
    top: 0;
    height: 200px;
    width: 100%;
    background-size: contain;
}
.cards {
    gap: 2rem;
}
.sf-hero {
    padding: 0 1rem 2rem;
    text-align: center;
}
}

@media (max-width: 540px) {
  .menu-card {
    width: 100%;
  }

  .menu-thumb {
    height: 260px;
  }

  .title {
    font-size: 1.8rem;
  }
}

/* animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Menu */
.sf-hero {
  padding: 3.5rem 1rem 2rem;
  text-align: center;
}

.sf-hero .sf-logo {
  font-family: var(--title-font);
  font-size: clamp(1.25rem, 2.0vw, 1.05rem);
  letter-spacing: 4px;
  color: var(--accent);
  display: block;
  margin-bottom: .6rem;
}

.sf-tabs {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.6rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.8);
  font-size: .9rem;
}

.sf-tabs a {
  text-decoration: none;
  color: inherit;
  padding: .35rem .6rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  grid-gap: 1rem;
}

.sf-tabs a.active {
  color: var(--theme);
  font-weight: 600;
}

/* Main framed panel (uses single image as texture) */
.sf-panel-wrap {
  display: flex;
  justify-content: center;
}

.sf-panel {
  width: 100%;
  max-width: 1200px;
  background: url(../images/menu-box.jpg);
  background-size: cover;
  background-position: center center;
  border-radius: 34px;
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  border: 1px solid #E4B95B66;
  box-shadow: 0px 4px 104px 0px #E4B95B33;
}

/* inner dark content area */

/* left list */
.sf-list {
  flex: 1 1 56%;
  padding: .5rem 1.25rem;
}

.sf-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.sf-thumb {
  width: 78px;
  height: 78px;
  min-width: 78px;
  background-image: var(--bg-img);
  background-repeat: no-repeat;
  background-size: 1400px auto;
  /* bigger so we can shift for different crops */
  background-position: left top;
  display: inline-block;
}

.sf-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  border: 3px solid rgba(217, 166, 58, 0.18);
}

/* variation positions for the circular thumbs */
.sf-item.sf-i-1 .sf-thumb {
  background-position: left -20px;
}

.sf-item.sf-i-2 .sf-thumb {
  background-position: center -160px;
}

.sf-item.sf-i-3 .sf-thumb {
  background-position: right -40px;
}

.sf-item.sf-i-4 .sf-thumb {
  background-position: left -320px;
}

.sf-meta {
  flex: 1;
}

.sf-meta h3 {
  margin: 0;
  font-weight: 500;
  color: #f5f5f5;
  font-size: 1.08rem;
  font-family: var(--title-font);
}

.sf-meta p {
  margin: .45rem 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: .92rem;
}

/* right big image area (uses the same single image but cropped differently) */
.sf-show {
  flex: 0 0 36%;
  min-width: 240px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sf-show .sf-image {
  width: 100%;
  height: 460px;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* decorative gear on top-right corner inside .sf-inner */
.sf-gear {
  position: absolute;
  right: 14%;
  top: 14%;
  width: 72px;
  height: 72px;
  background-image: var(--bg-img);
  background-size: 1600px auto;
  background-position: right -40px;
  border-radius: 50%;
  transform: rotate(8deg);
  mix-blend-mode: screen;
  filter: contrast(.9) saturate(.7);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
  border: 3px solid rgba(255, 255, 255, 0.03);
}

/* responsive */
@media (max-width: 1100px) {
  .sf-inner {
    flex-direction: column;
  }

  .sf-show {
    order: -1;
    width: 100%;
    flex-basis: auto;
    margin-bottom: 1rem;
  }

  .sf-panel {
    position: relative;
    padding: 0;
    border-radius: 22px;
  }
 .sf-panel::before {
    content: "";
    position: absolute;
    background: #000000;
    opacity: .5;
    padding: 1rem;
    height: 100%;
    width: 100%;
  }
  .sf-item {
    padding-left: 10px;
}

  .sf-gear {
    display: none;
  }
}

@media (max-width: 520px) {
  .sf-thumb {
    width: 64px;
    height: 64px;
    min-width: 64px;
  }

  .sf-meta h3 {
    font-size: 1rem;
  }

  .sf-meta p {
    font-size: .88rem;
  }
}

/* small entrance animations */
.sf-panel,
.sf-inner {
  animation: fadeInUp .6s ease both;
}

.sf-item {
  animation: fadeIn .6s ease both;
}

.sf-item:nth-child(1) {
  animation-delay: .12s
}

.sf-item:nth-child(2) {
  animation-delay: .18s
}

.sf-item:nth-child(3) {
  animation-delay: .24s
}

.sf-item:nth-child(4) {
  animation-delay: .30s
}

@keyframes fadeInUp {
  from {
    transform: translateY(10px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-6px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.testimonials {
  padding: 0 0 60px;
  text-align: center;
  color: #fff;
}

.testimonials-small-label {
  color: var(--theme);
  font-size: .9rem;
  display: inline-flex;
  gap: .6rem;
  align-items: center;
  margin-bottom: .7rem;
  font-weight: 600;
}

.testimonials-small-label .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--theme);
  box-shadow: 0 0 6px rgba(217, 166, 58, 0.7);
  display: inline-block;
}

.testimonials-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  margin: .4rem 0 1.6rem;
  color: #fff;
  font-weight: 400;
}

/* Cards container (Owl will replace default layout) */
.testimonials-cards-wrap {
  margin: 0 auto;
  padding: 0 1rem;
}

.owl-carousel .item {
  padding: 0 8px;
  box-sizing: border-box;
}

/* Card */
.testimonials-card {
  background: #ffffff;
  border-radius: 16px;
  width: 100%;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  height: 400px;
  overflow: auto;
  transition: transform .22s cubic-bezier(.2, .9, .3, 1), box-shadow .22s;
  position: relative;
  overflow: visible;
  box-shadow: 0px 2px 4px 0px #0000001A;
  box-shadow: 0px 7px 7px 0px #00000017;
  box-shadow: 0px 16px 9px 0px #0000000D;
  box-shadow: 0px 28px 11px 0px #00000003;
  box-shadow: 0px 43px 12px 0px #00000000;
}

.testimonials-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-strong);
}

.testimonials-top {
  display: flex;
  align-items: center;
  gap: .9rem;
  justify-content: space-between;
}

.testimonials-left {
  display: flex;
  gap: .8rem;
  align-items: center;
}

.testimonials-avatar {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: .95rem;
  background: linear-gradient(135deg, #607d8b, #455a64);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.testimonials-meta {
  line-height: 1;
}

.testimonials-name {
  font-family: "Inter", sans-serif;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 1rem;
  color: #1A1A1A;
  text-align: left;
}

.testimonials-date {
  font-family: "Inter", sans-serif;
  font-size: .8rem;
  color: #00000080;
  text-align: left;
}

.testimonials-google {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: end;
}

.testimonials-google svg {
  width: 24px;
  height: 24px;
  display: block;
}

.testimonials-stars {
  display: flex;
  gap: .25rem;
}

.testimonials-star {
  font-size: 24px;
  color: #FFC107;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.05));
}

.testimonials-body {
    color: var(--black);
    font-size: 15px;
    font-weight: 400;
    text-align: left;
    line-height: 1.55;
    margin-top: .45rem;
    flex: 1;
}

.testimonials-card:after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -18px;
  height: 22px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(10, 23, 40, 0.0), rgba(4, 35, 84, 0.12));
  z-index: -1;
  filter: blur(18px);
}

/* Owl nav customization */
.owl-nav {
  position: relative;
  margin-top: .95rem;
  display: none;
  justify-content: center;
  gap: .9rem;
}

.owl-nav button {
  background: linear-gradient(180deg, #f9d77b, #e9b83b);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(233, 184, 59, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.owl-nav button:focus {
  outline: 3px solid rgba(217, 166, 58, 0.18);
}

.owl-nav button svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* Owl dots */
.owl-dots {
  margin-top: 12px;
  text-align: center;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 30px;
}

.owl-dot {
  display: inline-block;
  margin: 0 6px;
}

.owl-dot span {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #FFFFFF;
}

.owl-dot.active span {
  background: linear-gradient(180deg, #f9d77b, #e9b83b);
  box-shadow: 0 4px 12px rgba(233, 184, 59, 0.25);
}

/* responsive breakpoints for card width handled by Owl options */
@media (max-width: 1100px) {
  .testimonials-card {
    padding: 1rem;
  }
}

@media (max-width: 991px) {
  .testimonials-card {
    padding: .9rem;
  }
  .testimonials-card {
    height: auto;
  }
}
.Instagram-sec {
    background-image: url(../images/testimonials-bg.jpg);
  background-size: cover;
  background-position: center center;
  padding: 60px 0;
}
.Free.Instagram.Feed.widget{
  display: none !important;
}
.btn.btn-insta {
    background: transparent;
    border: solid 1px var(--theme);
    padding: .5rem 2rem;
    border-radius: 30px;
    margin: 0 auto;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    grid-gap: 10px;
    transition: all .3s;
}
.btn.btn-insta:hover{
  background: var(--theme);
}

/* main rounded panel */
.book-panel {
  width: 100%;
  background: url(../images/book-bg.jpg);
  border-radius: var(--panel-radius);
  padding: 48px 56px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.6), 0 8px 20px rgba(217, 166, 58, 0.08);
  border: 2px solid #E4B95B;
  border-radius: 64px;
  position: relative;
  overflow: hidden;
}

/* thin gold outline */
.book-panel::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: calc(var(--panel-radius) - 4px);
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(217, 166, 58, 0.12) inset;
}

/* heading */
.book-meta {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: .95rem;
  display: flex;
  justify-content: center;
  gap: .6rem;
  align-items: center;
  font-weight: 600;
}

.book-meta .dot {
  color: var(--theme);
}

.book-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  color: #fff;
  text-align: center;
  margin: .5rem 0 8px;
  font-weight: 400;
}

.phone-strong {
  color: var(--accent);
  font-weight: 700;
}

/* form layout */
form.book-form {
  margin-top: 8px;
}

.row-gap {
  gap: 18px;
}

/* pill inputs and selects */
.sf-input {
  background: #47464A;
  border: 1px solid #E4B95B33;
  color: #FFFFFF;
  padding: .85rem 1.25rem;
  border-radius: 24px;
  width: 100%;
  outline: none;
  box-shadow: inset 0 -6px 18px rgba(0, 0, 0, 0.25);
  transition: box-shadow .15s, transform .12s;
  font-size: .98rem;
}

.sf-input::placeholder {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 400;
}

.sf-input:focus {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5), 0 0 0 4px rgba(217, 166, 58, 0.06);
  transform: translateY(-2px);
  border-color: rgba(217, 166, 58, 0.28);
}

.input-icon {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: #FFFFFF;
  font-size: 1.02rem;
}

.sf-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* big textarea style */
.sf-textarea {
  min-height: 110px;
  padding: 1rem 1.25rem;
  border-radius: 18px;
}

/* input with icon wrapper */
.sf-field {
  display: flex;
  align-items: center;
}

.sf-field .sf-input {
  border-radius: 999px;
}

/* small select caret */
.caret {
  font-size: 1.02rem;
  color: var(--muted);
  margin-left: 6px;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgb(0 0 0 / 70%);
}

/* responsive adjustments */
@media (max-width: 992px) {
  .book-panel {
    padding: 34px 28px;
  }

  .book-title {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
  }
}

@media (max-width: 720px) {
  .book-panel {
    padding: 24px 18px;
    border-radius: 22px;
  }
}

/* subtle entrance animation */
.book-panel {
  transform: translateY(8px);
  opacity: 0;
  animation: panelIn .6s ease forwards .12s;
}

@keyframes panelIn {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Footer wrapper using your background image */
.sf-footer {
  background: #1A1208;
  color: #fff;
}

/* left column */
/*.sf-left {*/
/*  flex: 1 1 540px;*/
/*  min-width: 260px;*/
/*}*/

/* logo area — reproduced with typography; replace with your svg/img if you have one */
.sf-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.sf-logo .mark {
  width: 88px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 4px;
  /* subtle logo background to mimic original */
 /* background: linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.02));*/
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.sf-logo .text {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .6px;
  color: #fff;
}

/*.sf-desc {*/
/*  color: var(--black);*/
/*  max-width: 400px;*/
/*  margin-bottom: 26px;*/
/*}*/

/*.sf-copy {*/
/*  font-size: .95rem;*/
/*  color: rgba(0, 0, 0, 0.7);*/
/*}*/

/*.sf-copy strong {*/
/*  font-weight: 700;*/
/*}*/

/* right column (contact) */
/*.sf-right {*/
/*  flex: 0 0 380px;*/
/*  min-width: 220px;*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  gap: .6rem;*/
/*  align-items: flex-start;*/
/*}*/

.sf-contact {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 10px;
  /*color: var(--theme);*/
  transition: all .3s;
}
.sf-contact .text {
  /*color: var(--black);*/
  font-size: 1rem;
}
.sf-contact .text:hover{
  text-decoration: underline;
}

/* social icons bottom-right */
.sf-social {
  margin-top: 6px;
  display: flex;
  gap: .7rem;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

.sf-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /*color: var(--theme);*/
  text-decoration: none;
}

.sf-social a:hover {
  transform: translateY(-3px);
  transition: .3s ease;
}

@media (min-width: 1600px) {
.nav-link {
    font-size: 16px;
}
}

@media (min-width: 1900px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1420px;
    }
}

/* responsive */
@media (max-width: 980px) {
  .sf-inner {
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
  }

  .sf-right {
    align-items: flex-start;
  }

  .sf-social {
    justify-content: flex-start;
    margin-bottom: 1rem;
  }
}

@media (max-width: 520px) {
  .sf-desc {
    font-size: .98rem;
  }

  .sf-logo .mark {
    width: 66px;
    height: 58px;
    font-size: 16px;
  }
}

/* responsive */
@media (max-width: 991px) {
.footer-bottom {
    padding-top: 1rem;
}
.footer-bottom .row{
  flex-direction: column-reverse;
}
.best-deal .card-grid {
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px;
  }
}

@media (max-width: 767px) {
.banner {
    height: 600px;
    background-position: center;
}
.about {
    min-height: auto;
    padding: 60px 0 60px;
}
.best-inner::before {
    content: "";
    position: absolute;
    background-image: url(../images/cog.png);
    background-repeat: no-repeat;
    height: 200px;
    width: 200px;
    background-size: contain;
    left: 10px;
    top: -125px;
}
.testimonials {
    padding: 0 0 30px;
}
.best {
    padding: 2rem 1rem;
}
.cards {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}
.best {
    position: static;
}
}

.breadcrumb-section img{
    width: 100%;
    height: auto;
}
.breadcrumb-section .desktop{
    display: block;
}
.breadcrumb-section .mobile{
    display: none;
}
.bread-title{
    font-family: "Fraunces", serif;
    color: #fff;
    font-weight: 200;
    font-size: 48px;
    text-align: center;
}
.bread-pagination ul{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 0;
}
.bread-pagination ul li{
    color: #fff;
    list-style: none;
}
.bread-pagination ul .dot{
    width: 5px;
    height: 5px;
    position: relative;
    background: #E4B95B;
    border-radius: 10px;
}
.bread-pagination ul .active{
    color: #E4B95B;
    list-style: none;
}
.bread-content{
    padding-top: 10px;
    padding-bottom: 50px;
}

.about-section{
    background: url('../images/about/about-bg.png');
    padding: 50px 0;
    padding-top: 73px;
    margin-top: -164px;
}
.about-section h3{
    font-size :54px;
    color: #fff;
    margin-bottom:20px;
}
.about-section h6{
    font-size: 18px;
    line-height: 28px;
    color: #fff;
}

.info-section{
    background: url('../images/about/info-section.png');
    background-size: cover;
    position: relative;
    background-blend-mode: lighten;
    padding: 50px 0;
    padding-bottom: 300px;
}
.info-section h3{
    text-align: center;
    color: #E4B95B;
    font-size: 54px;
}
.info-section h6{
    text-align: center;
    font-size: 18px;
    line-height: 28px;
    color: #fff;
}

.why-us-section{
    padding: 50px 0;
    padding-top: 0;
}

.why-us-section .why-wrap{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.why-us-section .why-wrap .title{
    color: #E4B95B;
    font-size: 24px;
    line-height: 30px;
    text-align: center;
    font-family: "Fraunces", serif;
    font-weight: 200;
}
.why-us-section .why-wrap p{
    color: #fff;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
}
/* Main video block */
.sf-video-section {
    padding: 40px 0;
    display: flex;
    justify-content: center;
    margin-top: -255px;
}

.sf-video-wrapper {
    width: 100%;
    max-width: 1100px;
    border: 1px solid #E4B95B;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(to bottom, #d3a24a 0%, #1f1c19 100%);
    padding: 0;
    box-shadow: 0 0 50px rgb(228 185 91 / 30%);
}

.sf-video-thumb {
    width: 100%;
    border-radius: 16px;
    display: block;
    filter: brightness(0.55);
}

.sf-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fccc4c;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
}
.sf-video-play span {
    font-size: 34px;
    color: #000;
    margin-left: 4px;
}
.sf-video-play:hover {
    transform: translate(-50%, -50%) scale(1.08);
}
.sf-video-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.sf-video-popup-inner {
    width: 90%;
    max-width: 900px;
    position: relative;
}

.sf-video-popup iframe {
    width: 100%;
    height: 500px;
    border-radius: 12px;
}

.sf-video-close {
    color: white;
    font-size: 40px;
    position: absolute;
    top: -45px;
    right: 0;
    cursor: pointer;
}

.join-section{
    background: url('../images/about/join.png');
    background-attachment: fixed;
    background-size: cover;
    padding: 90px 0;
}
.join-section h3{
    text-align: center;
    color: #fff;
    font-size: 54px;
}
.join-section h6{
    text-align: center;
    font-size: 18px;
    line-height: 28px;
    color: #fff;
}
.join-section .btn-center{
    text-align: center;
    padding-top: 30px;
}

.menu-section{
    background: #221C14;
    padding-top: 34px;
}

/* card wrapper */
.menu-section .why-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #111;                
    cursor: pointer;
    height: 100%;                  
    box-shadow: 0 0 0 rgba(0,0,0,0);   
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.menu-section .why-wrap img {
    display: block;
    width: 100%;
    height: 210px;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.4s ease;
}

.menu-section .why-wrap .title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 10px 31px 23px;
    font-size: 24px;
    font-weight: 200;
    text-align: left;
    color: #fff;
    line-height: 30px;
    font-family: 'Fraunces';
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.8) 100%
    );
}

.menu-section .why-wrap:hover img {
    transform: scale(1.06);
}

.menu-section .why-wrap:hover {
    border-color: #E4B95B;
    box-shadow: 0 14px 30px rgba(0,0,0,0.5);
    transform: translateY(-2px);
}

.appointment .bread-content {
    padding-bottom: 50px;
    padding-top: 100px;
    position: relative;
}
.appointment .bread-content .bread-title {
    color: #E4B95B;
}
.appointment .bread-content .content-sub{
    color: #fff;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 30px;
    font-family: 'Urbanist';
}

.appointment .cta-area{
    padding-top: 100px;
    position: relative;
}
.cta-area .why-wrap{
    padding: 24px;
    background: #604E26;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 292px;
}
.cta-area .why-wrap .title{
    color: #E4B95B;
    font-size: 24px;
    font-family: 'Fraunces';
    font-weight: 200;
    margin-bottom: 23px;
    margin-top: 20px;
}
.cta-area .why-wrap p{
    color: #fff;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
}
.cta-area .why-wrap a{
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-family: 'Urbanist';
    font-weight: 200;
    text-decoration: none;
    transition : all 0.3 ease-in-out;
}

 /* Container layout */
    .menu-layout {
      min-height: 80vh;
    }

    /* Sidebar */
    .sidebar {
    background: #372C1E;
    border-radius: 8px;
    padding: 28px 20px;
    color: #f2efe9;
    position: sticky;
    top: 24px;
}
    .sidebar h5 {
      font-weight: 600;
      margin-bottom: 18px;
      letter-spacing: 0.2px;
    }
    .category-item {
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding: 10px 6px;
      border-radius: 8px;
      margin-bottom: 8px;
    }
    .category-left {
      display:flex;
      gap:12px;
      align-items:center;
      cursor: pointer;
    }
    .cat-radio {
      width:18px;
      height:18px;
      border-radius:50%;
      border:2px solid #fff;
      display:inline-block;
      position:relative;
      background: transparent;
      box-shadow: inset 0 0 0 3px rgba(0,0,0,0.12);
    }
    .cat-radio.checked {
      background: var(--accent);
      border-color: rgba(255,255,255,0.25);
    }
    .cat-name { font-size:15px; color:#efe9e2;}
    .cat-count {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
}

    /* Right content */
    .top-controls {
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
      margin-bottom:20px;
    }
  .items-count {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 400;
    line-height: 0;
    width: 150px;
}

    /* Card grid */
    .card-grid {
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }
    .best-deal .card-grid {
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }
.category-item label {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
}
.form-check-input {
    --bs-form-check-bg: var(--bs-body-bg);
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 0;
    vertical-align: top;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #FFFFFF;
    background-image: var(--bs-form-check-bg-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: var(--bs-border-width) solid var(--bs-border-color);
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    print-color-adjust: exact;
    border-radius: 50% !important;
}
.form-check {
    min-height: 1.5rem;
    padding-left: 1.5em;
    margin-bottom: 0;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.form-check-input:checked{
  background-color: var(--theme);!important;
  box-shadow: none;
  border-color: var(--theme);!important;
}
.input-group-text {
    display: flex;
    align-items: center;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    text-align: center;
    white-space: nowrap;
    background-color: #47464A99;
    border: solid 1px #E4B95B33;
        margin-right: -1px;
}
.input-group .form-select {
   background-color: #47464A99;
    border: solid 1px #E4B95B33;
    border-left: none !important;
}
/* Container */
.sort-dropdown {
    border-radius: 30px !important;
    overflow: hidden;
    width: fit-content;
    background: #47464A99;
    border: 1px solid #E4B95B33;
}

/* Remove default input-group borders */
.sort-dropdown .input-group-text,
.sort-dropdown .form-select {
  background: #46464c;
  border: none;
  color: #ffffff;
  font-size: 14px;
}
.sort-dropdown .form-control {
  background: #46464c;
  border: none;
  color: #ffffff;
  font-size: 14px;
  outline: none !important;
  box-shadow: none !important;
}
.sort-dropdown .form-control::placeholder{
  color: #ffffff;
}
.sort-dropdown .input-group-text img{
  height: 18px;
}

/* Match the pill shape */
.sort-dropdown .input-group-text {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
}

/* Select dropdown style */
.sort-dropdown .form-select {
  padding-right: 2rem; /* space for the right icon */
  color: #ffffff;
}

/* Icon styling */
.sort-dropdown i {
  font-size: 16px;
  color: #ffffff;
}

/* Make select inside behave nicely */
.sort-dropdown select:focus {
  box-shadow: none;
  outline: none;
}
.best-deal{
    position: relative;
    background-image: url(../images/best-deal-bg.jpg);
    background-position: center;
    background-size: cover;
}
.best-deal::before{
   content: "";
   position: absolute;
   background-image: url(../images/best-deal-leaf.png);
   top: 0;
   left: 0;
   right: 0;
   height: 200px;
}
ul.footer-link {
    padding: 0;
    list-style: none;
}
ul.footer-link li a {
    color: #fff;
    text-decoration: none;
    transition: all .3s;
}
ul.footer-link li {
    padding-bottom: 10px;
}
ul.footer-link li a:hover {
    color: gray;
    text-decoration: underline;
}


    @media (max-width:1200px){
      .card-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width:900px){
      .card-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width:576px){
      .card-grid { grid-template-columns: 1fr; }
    }

    /* Product card */
    .product-card {
          background: #372C1E;
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0 6px 0 rgba(0, 0, 0, 0.45); */
    display: flex;
    flex-direction: column;
    min-height: 320px;
    transition: all .3s;
}
.product-card a {
    text-decoration: none;
}
    .product-image {
      height:225px;
      object-fit:cover;
      width:100%;
      display:block;
    }
    .card-list .product-card {
         height: auto;
    min-height: auto;
    margin-bottom: 20px;
    }
    .card-list .product-image {
    height: 160px;
    object-fit: cover;
    width: 180px;
    display: block;
}
.card-list .product-title {
    font-family: "Fraunces", serif;
    font-size: 20px;
    line-height: 26px;
    color: #efe9e2;
    min-height: auto;
    font-weight: 300;
}
.product-details {
    margin-top: 92px;
}
.product-details-image {
    height: 500px;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
}
.product-details-title {
    font-size: 30px;
    color: #FFFFFF;
    font-weight: 300;
    font-family: "Fraunces", serif;
    margin-bottom: 1.5rem;
}
.product-details .price {
    font-weight: 600;
    color: var(--theme);
    font-size: 36px;
}
.product-list {
    display: flex;
    grid-gap: 30px
}
    .product-body {
      padding:14px;
      display:flex;
      flex-direction:column;
      gap:8px;
      flex:1;
      justify-content:space-between;
    }
    .cat {
    position: relative;
    padding-right: 20px;
}
.cat::before {
    position: absolute;
    content: "";
    background: #FFFFFF4D;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    right: -5px;
    top: 6px;
}
    .product-title {
    font-size: 16px;
    line-height: 26px;
    color: #efe9e2;
    min-height: 44px;
    }
    .price-row {
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
    }
    .price {
    font-weight: 700;
    color: var(--theme);
    font-size: 15px;
}
    .badge-veg {
          display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    padding: 6px 8px;
    border-radius: 8px;
    font-size: 14px;
    border: none;
    font-weight: 400;
    }
    .card-footer {
      padding:10px 14px 14px;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:8px;
    }

    /* small UI tweaks */
    .control-pill {
      background: rgba(255,255,255,0.04);
      border-radius: 999px;
      padding:6px 12px;
      display:inline-flex;
      gap:8px;
      align-items:center;
      color:#eee;
      border:1px solid rgba(255,255,255,0.03);
    }

    /* hover */
    .product-card:hover {
      transform: translateY(-6px);
      transition: transform .18s ease;
      box-shadow: 0 10px 18px rgba(0,0,0,0.6);
    }
.btn.btn-sm.btn-outline-light {
    font-size: 14px;
    font-weight: 400;
    padding: 8px 20px;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 130px;
     border-radius: 30px !important;
}
.btn.btn-sm.btn-outline-light:hover {
    background: var(--theme);
    color: var(--theme);
    color: #17161A;
}
    .btn.btn-sm.btn-outline-light.active {
    background: var(--theme);
    border-radius: 30px;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    grid-gap: 10px;
    border: none;
}
.btn.btn-sm.btn-outline-light.active svg path{
  fill: #17161A;
}
.btn.btn-sm.btn-outline-light:hover svg path{
  fill: #17161A;
}
.btn.btn-sm.btn-outline-light svg path{
  fill: #FFFFFF;
}
.share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
}
.share ul {
    display: inline-flex;
    gap: 10px;
    list-style: none;
    background: #F7E9CC;
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 0
}
.btn.btn-whatsapp {
    display: inline-flex;
    justify-content: center;
    background: #1C5C00;
    width: 250px;
    margin: 0 auto;
    border-radius: 30px;
    align-items: center;
    grid-gap: 10px;
    font-size: 18px;
    color: #FFFFFF;
    font-weight: 600;
    padding: .6rem 1rem;
 transition: transform .3s ease, box-shadow .18s ease;
}

.btn.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px #1c5c0087;
  color: #FFFFFF;
}

    /* custom scrollbar for sidebar */
    .sidebar::-webkit-scrollbar { width:8px; }
    .sidebar::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.3); border-radius:8px; }
    @media (min-width: 1660px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1420px;
    }
    .card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
}
@media (max-width: 767px) {
    .about-section {
        padding-top: 20px;
        margin-top: -153px;
    }
    .breadcrumb-section img{
        width: 100%;
        height: 100%;
    }
    .breadcrumb-section .desktop{
        display: none;
    }
    .breadcrumb-section .mobile{
        display: block;
        height: 300px;
        object-fit: cover;
    }
    .bread-title {
        font-size: 30px;
    }
    .bread-pagination ul li {
    font-size: 14px;
}
    .info-section {
        padding-bottom: 100px;
    }
    .sf-video-section {
        margin-top: -117px;
    }
    .menu-section .why-wrap img {
        height: 180px;
    }
    .cta-area {
        margin: 0 10px;
    }
    .cta-area .why-wrap {
        width: 100%;
        height: 100%;
        margin-bottom: 10px;
    }
    .best-deal .card-grid {
      grid-template-columns: repeat(1, 1fr);
    }
    .top-controls {
    display: block;
}
.items-count {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 10px;
}
.sort-dropdown {
    margin-bottom: 20px;
}
.product-details-image {
    height: 300px;
}
.card-list .product-image {
    height: auto;
    object-fit: cover;
    width: 100px;
    display: block;
}
.product-list {
    display: flex;
    grid-gap: 10px;
}
.price-row {
    display: block;
}
.badge-veg {
    padding: 10px 0;
    border-radius: 8px;
    font-size: 14px;
}
.cat::before {
    content: none;
}
}

/*@media (max-width: 425px) {*/
/*    .about-section {*/
/*        padding-top: 71px;*/
/*        margin-top: -59px;*/
/*    }*/
/*}*/
/* ===== SECTION BG ===== */

/* BOTH ICONS */
.testimonials-google img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    background: #fff;
    padding: 4px;
    border-radius: 50%;
}

/* OPTIONAL HOVER */
.testimonials-google img:hover {
    transform: scale(1.1);
    transition: 0.3s;
}
/*our menu page*/

.mateens-section {
  background: transparent;
  color: #fff;
  padding: 80px 0px 0;
}

/* Header */
.mateens-header {
  text-align: center;
  margin-bottom: 50px;
}

.mateens-header h1 {
  font-size: 35px;
  color: #d4af37;
}

.mateens-header p {
  color: #ccc;
  font-style: italic;
}

/* GRID */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Card */
.menu-grid .menu-card {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: 0.3s;
  width: 100%;
      display: flex;
    flex-direction: column;
    gap: 10px;

}

.menu-card:hover {
  transform: translateY(-6px);
  border-color: #d4af37;
}

.menu-card h3 {
  color: #d4af37;
  margin-bottom: 0px;
  font-size: 35px;
}

.menu-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.menu-card ul {
  list-style: none;
  padding: 0;
  margin : 0;
}

.menu-card li {
  margin: 8px 0;
  color: #eee;
}

/* Button */
.menu-btn-wrap {
  text-align: center;
  margin-top: 40px;
}

.menu-btn {
  padding: 12px 28px;
  border: 1px solid #d4af37;
  color: #d4af37;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

.menu-btn:hover {
  background: #d4af37;
  color: #000;
}

/* Responsive */
@media (max-width: 992px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .social-section .title{
      margin-bottom: 20px;
  }
  .cta-inner {
    margin: 25px 0 !important;
}
}

@media (max-width: 600px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}


/*contact page*/
.contact-section {
    background: transparent;
    padding: 50px 0 0;
    padding-top: 73px;
    margin-top: -164px;
}


/*contact page*/
.social-section {
   background-image: url(../images/testimonials-bg.jpg);
    background-size: cover;
    background-position: center center;
    padding: 60px 0;
}



/* Content */
.social-section .container {
    position: relative;
    max-width: 1100px;
    margin: auto;
}

.social-section h2 {
   font-size: 32px;
    margin-bottom: 50px;
    font-weight: 500;
    color: #fff;
    text-align: center;
}

/* Cards layout */
.social-section .cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Card */
.social-section .card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    width: 300px;
    border-radius: 15px;
    text-decoration: none;
    color: #fff;

    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);

    transition: 0.3s ease;
}

.social-section .card:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Icons */
.social-section .card img {
    width: 45px;
    height: 45px;
}

.social-section .card .icon {
    width: 45px;
    height: 45px;
    background: #f4c542;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
}

/* Text */
.social-section .card h3 {
    margin: 0;
    font-size: 18px;
    color: #fff;
    text-align: center;
}

.social-section .card p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #ccc;
}



/*about page*/
 /* Section */
        .cta-section {
              position: relative;
            background: var(--theme);
            padding: 50px 20px;
            text-align: center;
            color: #fff;
            margin: 80px 0 20px;
            border-radius: 10px;
        }
        
        /* Dark overlay */
        .cta-section::before {
          content: "";
          position: absolute;
          inset: 0;
          background: rgba(26, 18, 8, 0.8);
        }
        
        /* Content */
        .cta-content {
          position: relative;
          max-width: 800px;
          margin: auto;
        }
        
        /* Heading */
        .cta-content h2 {
          font-size: 42px;
          margin-bottom: 20px;
        }
        
        /* Text */
        .cta-content p {
          font-size: 18px;
          color: #ddd;
          line-height: 1.6;
          margin-bottom: 30px;
        }
        
        /* Button */
        .cta-btn {
          display: inline-block;
          background: #c9a96e;
          color: #1A1208;
          padding: 14px 30px;
          border-radius: 40px;
          text-decoration: none;
          font-weight: bold;
          transition: 0.3s;
        }
        
        /* Hover */
        .cta-btn:hover {
          background: #fff;
          color: #1A1208;
        }
        
.cta-inner{
   margin-bottom: 80px;
}

.cta-content p span{
        display: block;
    font-size: 22px;
    color: var(--theme);
    font-weight: 600;
}

.stats-section{
    margin: 80px 0;
}

 .stats-section {
            background-color: var(--theme);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 30px 60px;
            flex-wrap: wrap;
            border-radius: 10px;
            gap: 10px;
        }
        
        
        /* Each Box */
        .stat-box {
          text-align: center;
          flex: 1;
          min-width: 150px;
          border-right: 2px solid #000;
          
        }
        
        .stat-box.last{
            border-right: none !important;
        }
       
        
        /* Numbers */
        .stat-box h2 {
          margin: 0;
          font-size: 32px;
          color: #000; /* gold */
          font-weight: bold;
        }
        
        /* Labels */
        .stat-box p {
          margin: 5px 0 0;
          font-size: 16px;
          color: #333;
        }
        
        /* Section */
        .sheesha-section {
          background: transparent;
          color: #fff;
          text-align: center;
          padding : 80px 0;
        }
        
       
        
        /* Title */
        .title {
          font-size: 42px;
          margin-bottom: 20px;
          font-weight: 600;
        }
        
        .title span {
          color: #c9a96e; /* gold */
        }
        
        /* Description */
        .description {
          font-size: 18px;
          color: #ddd;
          max-width: 700px;
          margin: 0 auto 50px;
          line-height: 1.6;
        }
        
        .description strong {
          color: #c9a96e;
        }
        
        /* Cards Layout */
        .stats-section .cards {
          display: flex;
          justify-content: center;
          gap: 25px;
          flex-wrap: wrap;
        }
        
        /* Card */
        .stats-section .card {
          background: #000000;
          border-radius: 16px;
          padding: 30px 20px;
          width: 250px;
          text-align: center;
          transition: 0.3s ease;
        }
        
        /* Hover */
        .stats-section .card:hover {
          transform: translateY(-8px);
        }
        
        /* Icon */
        .stats-section .icon {
          width: 70px;
          height: 70px;
          background: #c9a96e;
          color: #1a0a07;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 50%;
          margin: 0 auto 20px;
          font-weight: bold;
        }
        
        /* Card Title */
        .stats-section .card h3 {
          margin: 10px 0;
          font-size: 20px;
        }
        
        /* Card Text */
        .stats-section .card p {
          color: #bbb;
          font-size: 15px;
        }
        
        /* Section */
        .cta-section {
              position: relative;
            background: var(--theme);
            padding: 50px 20px;
            text-align: center;
            color: #fff;
            margin: 80px 0 20px;
            border-radius: 10px;
        }
        
        /* Dark overlay */
        .cta-section::before {
          content: "";
          position: absolute;
          inset: 0;
          background: rgba(26, 18, 8, 0.8);
        }
        
        /* Content */
        .cta-content {
          position: relative;
          max-width: 800px;
          margin: auto;
        }
        
        /* Heading */
        .cta-content h2 {
          font-size: 42px;
          margin-bottom: 20px;
        }
        
        /* Text */
        .cta-content p {
          font-size: 18px;
          color: #ddd;
          line-height: 1.6;
          margin-bottom: 30px;
        }
        
        /* Button */
        .cta-btn {
          display: inline-block;
          background: #c9a96e;
          color: #1A1208;
          padding: 14px 30px;
          border-radius: 40px;
          text-decoration: none;
          font-weight: bold;
          transition: 0.3s;
        }
        
        /* Hover */
        .cta-btn:hover {
          background: #fff;
          color: #1A1208;
        }
        
        @media (max-width: 992px) {
          .sheesha-section{
              padding: 40px 0;
          }
          .cta-section {
            margin: 40px 0 0px;
            }
        .stats-section{
            flex-wrap: wrap;
        }
        
        .stat-box{
            border-right: none;
        }
        
        .stats-section{
    margin: 25px 0;
}
        }
        
        
        /* Section */
.house-rules {
    background: #0f0b08;
    padding: 80px 20px;
    color: #fff;
    text-align: center;
    position: relative;
}

/* Container */
.house-rules .container {
    max-width: 1100px;
    margin: auto;
}

/* Title */
.house-rules .title {
    font-size: 36px;
    color: #d4a84f;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

/* Subtitle */
.house-rules .subtitle {
    color: #bbb;
    margin-bottom: 50px;
    font-size: 16px;
}

/* Rules Row */
.rules {
   display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

/* Card */
.rule-card {
    flex: 1;
    min-width: 100%;
    padding: 30px 20px;
    border-radius: 15px;

    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 168, 79, 0.3);

    transition: 0.3s ease;
}

/* Hover */
.rule-card:hover {
    transform: translateY(-5px);
    border-color: #d4a84f;
    box-shadow: 0 0 20px rgba(212,168,79,0.3);
}

/* Icon */
.rule-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

/* Title */
.rule-card h3 {
    font-size: 20px;
    color: #d4a84f;
    margin-bottom: 10px;
}

/* Text */
.rule-card p {
    font-size: 14px;
    color: #ccc;
}
        
       
@media (max-width: 992px) {
    .rules {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
}

@media (max-width: 575px) {
    .rules {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
}
.reservation-section {
    position: relative;
    min-height: 100vh;
    background: url('https://thesheeshafactory.com/dev/leaves-bg.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* DARK OVERLAY */
.reservation-section::before {
        content: "";
    position: absolute;
    inset: 0;
    background: url(../images/leaves-bg.png) no-repeat center center;
    opacity: 0.5;
        background-size: 100% 100%;
}
.reservation-box {
    position: relative;
    z-index: 2;
    width: 850px;
    max-width: 95%;
    padding: 60px 50px;
    border-radius: 25px;

    background: url('https://thesheeshafactory.com/dev/wood-bg.png') no-repeat center;
    background-size: cover;

    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.1);
}

/* ===== MAIN BOX ===== */
.reservation-box {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    background: url(../images/book-bg.jpg);
    padding: 48px 56px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.6), 0 8px 20px rgba(217, 166, 58, 0.08);
    border: 2px solid #E4B95B;
    border-radius: 64px;
    position: relative;
    overflow: hidden;
}

/* ===== TEXT ===== */
.res-top {
    text-align: center;
    color: #caa85c;
    font-size: 14px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.res-title {
    text-align: center;
    color: #fff;
    font-size: 42px;
    margin-bottom: 10px;
    font-family: serif;
}

.res-sub {
    text-align: center;
    color: #ccc;
    margin-bottom: 30px;
}

.res-sub span {
    color: #caa85c;
}

/* ===== FORM ROW ===== */
.res-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

/* ===== INPUTS ===== */
.reservation-form input,
.reservation-form select,
.reservation-form textarea {
   background: #47464A;
    border: 1px solid #E4B95B33;
    color: #FFFFFF;
    padding: .85rem 1.25rem;
    border-radius: 24px;
    width: 100%;
    outline: none;
    box-shadow: inset 0 -6px 18px rgba(0, 0, 0, 0.25);
    transition: box-shadow .15s, transform .12s;
    font-size: .98rem;
}

/* SELECT FIX */
.reservation-form select {
    appearance: none;
}

/* TEXTAREA */
.reservation-form textarea {
    border-radius: 20px;
    min-height: 120px;
    resize: none;
    margin-bottom: 20px;
}

/* PLACEHOLDER */
.reservation-form input::placeholder,
.reservation-form textarea::placeholder {
    color: #ddd;
}

/* ===== BUTTON ===== */
.reservation-form button {
    display: block;
    margin: auto;
    background: #caa85c;
    color: #000;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.reservation-form button:hover {
    background: #b8954d;
}

/* ===== SUCCESS MESSAGE ===== */
.success-msg {
    text-align: center;
    color: #0f0;
    margin-top: 15px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .res-row {
        flex-direction: column;
    }

    .reservation-box {
        padding: 30px 20px;
        margin: 0 10px;
    }

    .res-title {
        font-size: 28px;
    }
}
/* SECTION */
.brand-story {
    padding: 60px 0;
    background: #f5f5f5;
}

/* CONTAINER */
.brand-container {
    display: flex;
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
}

/* LEFT IMAGE */
.brand-left {
    width: 50%;
}

.brand-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* RIGHT CONTENT */
.brand-right {
    width: 50%;
    background: #2b1a0f; /* dark brown */
    color: #fff;
    display: flex;
    align-items: center;
    padding: 30px;
}

/* TEXT */
.brand-text {
    font-size: 15px;
    line-height: 1.6;
    color:#fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .brand-container {
        flex-direction: column;
    }

    .brand-left,
    .brand-right {
        width: 100%;
    }
}


/*home*/



/* Grid */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

/* Image Card */
.insta-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

/* Images */
.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Hover effect */
.insta-item:hover img {
    transform: scale(1.1);
}

/* Optional overlay hover */
.insta-item::after {
    content: "View";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.insta-item:hover::after {
    opacity: 1;
}


@media (max-width: 992px){
    .insta-grid{
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575px){
    .insta-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 360px){
    .insta-grid{
        grid-template-columns: repeat(1, 1fr);
    }
}

.tsf-home {
    position: relative;
       background-image: url(../images/testimonials-bg.jpg);
    background-size: cover;
    background-position: center center;
    padding: 60px 0;
    overflow: hidden;
    color: #fff;
}

/* Dark overlay */
.tsf-home .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.85)
    );
    opacity: 0.3;
}

/* Content */
.tsf-content {
    position: relative;
    max-width: 800px;
    margin: auto;
}

/* Label */
.tsf-label {
    color: #c9a66b;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

/* Heading */
.tsf-content h2 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
}

/* Description */
.tsf-desc {
    font-size: 20px;
    color: #ddd;
    margin-bottom: 40px;
}

/* Button */
.tsf-btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    border: 1px solid #c9a66b;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
}

/* Glow effect */
.tsf-btn:hover {
    background: #c9a66b;
    color: #000;
    box-shadow: 0 0 20px rgba(201, 166, 107, 0.6);
}

@media (max-width: 768px) {
    .tsf-content h2 {
        font-size: 32px;
    }

    .tsf-desc {
        font-size: 16px;
    }

    .tsf-home {
        padding: 80px 20px;
    }
}


.featured-dishes {
    background: #1A1208;
    padding: 100px 20px;
    text-align: center;
    color: #fff;
}

/* Title */
.section-title {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 50px;
}

.section-title span {
    color: #c9a66b;
}

/* Grid */
.dish-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

/* Card */
.dish-card {
    background: rgba(255,255,255,0.03);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(201,166,107,0.2);
    transition: 0.4s;
}

/* Image */
.dish-img {
    overflow: hidden;
}

.dish-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.4s;
}

/* Hover zoom */
.dish-card:hover img {
    transform: scale(1.1);
}

/* Content */
.dish-content {
    padding: 20px;
    text-align: left;
}
.dish-card a{
    text-decoration: none; 
}

.dish-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
        color: #fff;
        text-decoration: none;
}

.dish-content p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 15px;
     text-decoration: none;
}

/* Price */
.price {
    font-size: 20px;
    font-weight: 600;
    color: #c9a66b;
}

/* Button */
.menu-btn {
    display: inline-block;
    margin-top: 50px;
    padding: 14px 35px;
    border-radius: 40px;
    border: 1px solid #c9a66b;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.menu-btn:hover {
    background: #c9a66b;
    color: #000;
    box-shadow: 0 0 20px rgba(201,166,107,0.5);
}

@media (max-width: 992px) {
    .dish-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .dish-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }
}


.sheesha-spotlight {
    position: relative;
    background: url("../images/your-bg.png") center/cover no-repeat;
    padding: 100px 20px;
    color: #fff;
    overflow: hidden;
}

/* Dark overlay */
.sheesha-spotlight .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.8),
        rgba(0,0,0,0.9)
    );
    opacity: 0.6;
}

/* Layout */
.sheesha-spotlight .container {
    position: relative;
}



/* Content */
.sheesha-content {
    max-width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Heading */
.sheesha-content h2 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
}

.sheesha-content span {
    color: #c9a66b;
}

/* Text */
.sheesha-content p {
    color: #ccc;
    font-size: 16px;
    margin-bottom: 15px;
}

.highlight {
    color: #c9a66b;
    font-weight: 500;
}

/* Button */
.sheesha-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 35px;
    border-radius: 40px;
    border: 1px solid #c9a66b;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.sheesha-btn:hover {
    background: #c9a66b;
    color: #000;
    box-shadow: 0 0 20px rgba(201,166,107,0.6);
}

@media (max-width: 992px) {
    .sheesha-spotlight .container {
        flex-direction: column;
        text-align: center;
    }

    .sheesha-content h2 {
        font-size: 32px;
    }
}


/* Section */
.pillars {
  background: #0d0d0d;
  padding: 80px 20px;
}

/* Container */
.container {
  max-width: 1200px;
  margin: auto;
}

/* Grid */
.pillars .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card */
.pillars .card {
  background: #111;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  color: #fff;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
      align-items: center;
}

/* Hover Effect */
.pillars .card:hover {
  transform: translateY(-10px);
  border-color: #d4af37;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

/* Icon */
.pillars .icon {
  font-size: 40px;
    margin-bottom: 15px;
    color: var(--theme);
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pillars .icon img{
    display: block;
    width:100%;
}

/* Title */
.pillars .card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--theme);
}

/* Description */
.pillars .card p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .pillars .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .pillars .grid {
    grid-template-columns: 1fr;
  }
}




/* Section */
.brand-story {
  background: #0b0b0b;
  padding: 80px 20px;
}

/* Container */
.container {
  max-width: 1200px;
  margin: auto;
}

/* Wrapper */
.story-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Image */
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.1);
}

/* Content */
.story-content {
  padding: 60px;
  background: radial-gradient(circle at top, #1a1a1a, #0b0b0b);
  color: #fff;
}

/* Heading */
.story-content h2 {
  font-size: 38px;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--theme);
  font-weight: 600;
}

/* Paragraph */
.story-content p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Highlight Line */
.story-content .highlight {
  color: #fff;
  font-weight: 500;
  margin-top: 10px;
}

/* Button */
.story-btn {
  display: inline-block;
  margin-top: 20px;
  color: #d4af37;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

/* Underline effect */
.story-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #d4af37;
  transition: 0.3s;
}


.story-btn:hover::after {
  width: 100%;
}

/* Hover effect */
.story-wrapper:hover {
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
}

/* Responsive */
@media (max-width: 992px) {
  .story-wrapper {
    grid-template-columns: 1fr;
  }

  .story-content {
    padding: 40px 20px;
  }

  .story-content h2 {
    font-size: 28px;
  }
  
  .brand-story {
    padding: 40px 10px;
}

.pillars {
    padding: 40px 10px;
}
.featured-dishes {
    padding: 40px 10px;
}
}


/* Section */


/* Title */
.menu-sec .section-title {
  text-align: center;
  color: var(--theme);
  font-size: 32px;
  margin-bottom: 50px;
}

/* Grid */
.menu-sec .menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card */
.menu-sec .menu-card {
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: 0.3s;
}

/* Hover */
.menu-sec .menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

/* Image */
.menu-sec .menu-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Content */
.menu-sec .menu-card .content {
  padding: 20px;
}

/* Title */
.menu-sec .menu-card h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 8px;
}

/* Description */
.menu-sec .menu-card p {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 10px;
}

/* Price */
.menu-sec .price {
  color: var(--theme);
  font-weight: 600;
}

/* Badge */
.menu-sec .badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(45deg, #d4af37, #f5d06f);
  color: #000;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
  .menu-sec .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .menu-sec .menu-grid {
    grid-template-columns: 1fr;
  }
}


/* Title */
.food-menu-sec .menu-title {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #fff;
}

/* Tabs */
.food-menu-sec .nav-pills .nav-link {
  color: #94A3B8;
  background: transparent;
  border-radius: 8px;
  margin: 0 5px;
  transition: 0.3s;
}

.food-menu-sec .nav-pills .nav-link:hover {
  color: #C6A96E;
}

.food-menu-sec .nav-pills .nav-link.active {
  background: #000;
  color: #C6A96E;
}

.food-menu-sec {
    padding: 80px 0;
}

/* Cards */
.food-menu-sec .menu-card {
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  transition: 0.3s;
  border: 1px solid #463102;
}

.food-menu-sec .menu-card:hover {
  transform: translateY(-5px);
  border-color: #C6A96E;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.food-menu-sec .menu-card img {
  height: 180px;
  object-fit: cover;
  width: 100%;
}

/* Text */
.food-menu-sec .menu-body {
  padding: 15px;
}


#menuItems {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.food-menu-sec .menu-body h5 {
  font-weight: 600;
  margin-bottom: 5px;
  color: #fff;
}

.food-menu-sec .menu-body p {
  font-size: 14px;
  color: #94A3B8;
  margin-bottom: 10px;
}

/* Price */
.food-menu-sec .price {
  font-weight: bold;
  color: #C6A96E;
}

.food-menu-sec .menu-card{
    width:100%;
}

.food-menu-sec .nav-pills {
        flex-wrap: nowrap;
    justify-content: start !important;
    overflow-x: scroll;
    scrollbar-width: none;
}


@media (max-width: 992px) {
    
#menuItems {
    grid-template-columns: repeat(2, 1fr);
}
.food-menu-sec {
    padding: 40px 0;
}
}

@media (max-width: 575px) {
    
#menuItems {
    grid-template-columns: repeat(1, 1fr);
}
}




/*product page*/
.product-details{
    display: block;
}

.sec-pad{
    display: block;
}

.product-pad{
    display: block;
}

.appointment{
    padding: 60px 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../images/leaves-bg.png) no-repeat center center;
    background-size: 100% 100%;
}
}


    
    .booking-field{
            background: #47464A;
    border: 1px solid #E4B95B33;
    color: #FFFFFF;
    padding: .85rem 1.25rem;
    border-radius: 24px;
    width: 100%;
    outline: none;
    box-shadow: inset 0 -6px 18px rgba(0, 0, 0, 0.25);
    transition: box-shadow .15s, transform .12s;
    font-size: .98rem;
        display: flex;
    align-items: center;
    }
    
    .booking-field select{
        width: 100%;
        background: transparent;
        border: none;
        color: #fff;
    }
    
    .book-field{
               background: #47464A;
    border: 1px solid #E4B95B33;
    color: #FFFFFF;
    padding: .85rem 1.25rem;
    border-radius: 24px;
    width: 100%;
    outline: none;
    box-shadow: inset 0 -6px 18px rgba(0, 0, 0, 0.25);
    transition: box-shadow .15s, transform .12s;
    font-size: .98rem;
        display: flex;
    align-items: center;
    }
    
     .book-field select{
        width: 100%;
        background: transparent;
        border: none;
        color: #fff;
    }
    

/* Make calendar icon white */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

/* Make clock icon white */
input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

/* Arrow icon */
.arrow {
    position: absolute;
    right: 18px;
    pointer-events: none;
}


    
    @media (max-width: 992px) {
        
    form.book-form .btn{
        width: 150px;
    }
    }
    
    
     @media (max-width: 1199px){
       .best-inner  .cards {
            gap: 2rem;
        }
    }
    
       @media (max-width: 992px){
       .best-inner  .cards .menu-card{
            width: 30%;
        }
    }

@media (max-width: 540px) {
    .best-inner  .cards .menu-card {
        width: 100%;
    }
}

/* Scroll container */
.scroll-down {
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

/* Mouse shape */
.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
}

/* Scroll dot animation */
.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

/* Animation */
@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 20px;
    }
}