:root {
  --theme-color: #90492a;
  --secondary-color: #90492a;
  --theme-color2: #582f1a;
  --title-color: #010f1c;
  --body-color: #4d5765;
  --smoke-color: rgba(1, 15, 28, 0.06);
  --smoke-color2: #faf7f2;
  --black-color: #000000;
  --gray-color: #bdbdbd;
  --white-color: #ffffff;
  --light-color: #72849b;
  --yellow-color: #ffb539;
  --success-color: #f2ec7;
  --error-color: #dc3545;
  --border-color: #e0e0e0;
}

body.modal-open {
  padding-right: 0 !important;
  overflow: hidden !important;
}

html,
body {
  scroll-behavior: smooth !important;
  overflow-x: hidden;
}

body {
  color: rgb(119, 119, 119);
  font-family: "Libre Baskerville", serif;
  /* font-family: "Work Sans", serif; */
  font-size: 18px;
  font-weight: 400;
}

p {
  margin: 0px 0px 18px;
  color: rgb(0, 0, 0);
  font-size: 18px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
p a,
span a {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
  color: var(--title-color);
  text-transform: none;
  font-weight: 700;
  line-height: 1.2;
  margin: 0px 0px 15px;
  font-family: "Libre Baskerville", serif;
}
h2{
	font-size:105px;
}
a {
  color: var(--theme-color);
  text-decoration: none;
}

a:hover {
  color: var(--theme-color2);
  text-decoration: none;
}

@media (min-width: 992px) {
  .border-theme {
    border-bottom: 1px solid var(--theme-color) !important;
  }
}

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--theme-color);
  border: 1px solid #fff;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: rgb(255, 255, 255);
  line-height: 0;
}

.back-to-top:hover {
  background: rgb(230, 93, 95);
  color: rgb(255, 255, 255);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

#header {
  background: transparent;
  /* Initial state for hero overlap */
  transition: all 0.5s;
  padding: 15px 0;
}

#header .logo {
  font-size: 30px;
  margin: 0px;
  padding: 0px;
  font-weight: 600;
  font-family: "Libre Baskerville", "serif";
}

#header.header-scrolled {
  background: rgba(144, 73, 42, 0.95) !important;
  /* Matches --theme-color */
  padding: 10px 0;
}

.header-scrolled .navbar a {
  color: #fff;
}

#header .logo a {
  color: rgb(17, 17, 17);
}

#header .logo a span {
  color: rgb(235, 72, 93);
}

#header .logo img {
  max-height: 60px;
  width: auto;
}

.navbar {
  padding: 0px;
}

.navbar ul {
  margin: 0px;
  padding: 0px;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 50px 10px 0px;
  font-size: 18px;
  color: rgb(255, 255, 255);
  white-space: nowrap;
  transition: 0.3s;
  font-weight: 600;
  font-family: "Libre Baskerville", serif;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--theme-color);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0px;
  padding: 10px 0px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: rgb(255, 255, 255);
  box-shadow: rgba(127, 137, 161, 0.25) 0px 0px 30px;
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: rgb(235, 72, 93);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0px;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0px;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

.mobile-nav-toggle {
  color: rgb(0, 0, 0);
  font-size: 25px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  background-color: var(--theme-color);
  border-radius: 3px;
  margin-right: 10px;
  padding: 2px;
}

.mobile-nav-toggle.bi-x {
  color: rgb(255, 255, 255);
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  inset: 0px;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
  text-align: center;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  inset: 55px 15px 15px;
  padding: 10px 0px;
  background-color: rgb(255, 255, 255);
  overflow-y: auto;
  transition: 0.3s;
  text-align: center;
  height: fit-content;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 15px 20px;
  font-size: 20px;
  color: rgb(17, 17, 17);
  text-align: center;
  border-bottom: 1px solid rgb(238, 238, 238);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--theme-color2);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0px;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: rgb(255, 255, 255);
  box-shadow: rgba(127, 137, 161, 0.25) 0px 0px 30px;
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: rgb(235, 72, 93);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

.homebanner .card {
  background: rgb(255 255 255 / 75%);
}

.newfont {
  font-family: "Libre Baskerville", serif !important;
  font-size: 43px !important;
}

.btn {
  transition: 150ms linear;
  font-weight: 400;
  padding: 6px 32px;
  background: var(--theme-color);
  color: var(--secondary-color);
  display: inline-block;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 0.0625rem solid transparent;
  text-transform: capitalize;
  font-size: 18px;
  line-height: 1.5;
  border-radius: 2.5rem;
  transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  font-family: "Libre Baskerville", serif;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  background: var(--theme-color);
  /* color: rgb(255, 255, 255); */
  /* border: 1px solid rgb(255, 255, 255); */
  color: var(--secondary-color);
  opacity: 0.9;
}

.bg-theme {
  background: var(--theme-color);
}

.bg-white {
  background: var(--white-color);
}

.bg-theme1 {
  background: var(--theme-color2);
}

.fs-30 {
  font-size: 30px;
}

.gutter-5 {
  --bs-gutter-x: 6rem;
}

/* banner */

.vh-100 {
  height: 100vh !important;
  position: relative;
}

/* .mainbanner:before {
    content: close-quote;
    background: rgb(0 0 0 / 30%);
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 0;
    right: 0;
    left: 0;
} */

.w-200 {
  width: 200px;
  margin: auto;
}

/* Hero Section Refinements */
.homebanner {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

/* Overlay for text readability */
.homebanner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  /* Darken image slightly */
  z-index: 1;
}

/* Overlay for text readability */
.homebanner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  /* Darken image slightly */
  z-index: 1;
}

@media (min-width: 1400px) {
  .px-xxl-8 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .homebanner {
    height: 90vh;
  }

  .mainbanner h2 {
    font-size: 102px;
  }

  .display-7 {
    font-size: 30px;
  }
}

@media (min-width: 992px) {
  .py-lg-8 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
}

.py-6 {
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
}

.px-5 {
  padding-right: 2.5rem !important;
  padding-left: 2.5rem !important;
}

p {
  color: var(--black-color);
}

.bg-theme-color {
  background: #90492a;
}

.section-title h2 {
  font-size: 47px;
  text-transform: capitalize;
  font-weight: 500;
  margin-bottom: 2rem;
  font-family: "Libre Baskerville", serif;
  color: var(--black-color);
}

.section-title p {
  color: var(--black-color);
}

.ourgoodies h3 {
  font-size: 23px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0;
  font-family: "Libre Baskerville", serif;
  color: var(--secondary-color);
  padding: 10px 0;
}

.apollomenu {
  overflow: hidden;
}

.apollomenu img {
  transition:
    transform 150ms linear,
    -webkit-transform 150ms linear;
  will-change: transform;
}

.apollomenu:hover::before {
  height: 100%;
}

.apollomenu .apollomenu-body {
  position: absolute;
  right: 0px;
  bottom: 0px;
  left: 0px;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  width: 100%;
  padding: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  z-index: 2;
}

.openinghours {
  z-index: 2;
  overflow: hidden;
}

.openinghours::before {
  content: "";
  position: absolute;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgb(88 47 26 / 60%);
  z-index: -1;
}

.aboutoverlay::before {
  content: "";
  position: absolute;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgb(88 47 26 / 60%);
  z-index: -1;
}

.foottop::before {
  content: "";
  position: absolute;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgb(113 73 54 / 69%);
  z-index: -1;
}

.foottop {
  z-index: 2;
  overflow: hidden;
}

.aboutoverlay {
  z-index: 2;
  overflow: hidden;
  position: relative;
}

.me-20 {
  margin-right: 20px !important;
}

.pt-50 {
  padding-top: 80px;
}

.pb-50 {
  padding-bottom: 80px;
}

.d-table-cell {
  vertical-align: middle;
}



.book-a-table-btn {
  background: var(--theme-color);
  background: var(--theme-color);
  color: #fff !important;
  padding: 8px 25px;
  border-radius: 50px;
  /* Pill shape */
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  transition: 0.3s;
  border: 2px solid transparent;
  display: inline-block;
  font-family: "Libre Baskerville", serif;
}

.book-a-table-btn:hover {
  background: var(--theme-color2);
  transform: translateY(-2px);
}

/* inner page */

.breadcrumb h1 {
  font-weight: 400;
  font-size: 72px;
  text-transform: capitalize;
  text-align: center;
  color: #fff;
  padding: 11rem 0 3rem 0;
  font-family: "Libre Baskerville", serif;
  z-index: 1;
}

.breadcrumb {
  position: relative;
  z-index: 1;
}

.breadcrumb:before {
  content: close-quote;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 0;
  right: 0;
  left: 0;
  z-index: -1;
}

.aboutcard p {
  font-size: 18px;
  line-height: 1.7;
}

p:last-child {
  margin-bottom: 0px;
}

footer {
  background: rgb(27, 23, 27);
}

footer p {
  padding: 0px;
  text-align: start;
  font-size: 18px;
  color: rgb(255, 255, 255);
}

.foottop ul a {
  padding-left: 0;
}

footer .social-links {
  text-align: start;
}

footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgb(70, 66, 59);
  color: rgb(255, 255, 255);
  line-height: 1;
  padding: 8px 0px;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

footer .social-links a:hover {
  background: var(--third-color);
}

.footmenu a {
  color: rgb(255, 255, 255);
}

footer .copyright {
  margin: 0px 0px 5px;
  font-size: 15px;
  padding-top: 15px !important;
}

footer .credits {
  font-size: 15px;
  padding-bottom: 15px;
}

.fs-18 {
  font-size: 20px;
}

.fs-21 {
  font-size: 21px;
}

.pt-6 {
  padding-top: 6rem;
}

:focus {
  box-shadow: unset !important;
}

/* my menu */

.menu-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.section-title1 {
  background-color: #5b301d;
  color: white;
  padding: 10px 15px;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 5px;
}

.hub-title {
  color: #00a8e8;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.burger-hub-title {
  color: #f8f8f8;
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  margin: 15px 0;
  text-transform: uppercase;
}

.saucy-hub-title {
  color: #ffa500;
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  margin: 15px 0;
  text-transform: uppercase;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.item-name {
  font-weight: bold;
}

.item-description {
  font-size: 0.8rem;
  color: #ccc;
  margin-top: 2px;
}

.item-price {
  color: #ffa500;
  font-weight: bold;
}

.category-label {
  background-color: var(--theme-color2);
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: bold;
}

.special-deal {
  background-color: #ffa500;
  color: #000;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 10px;
  text-align: center;
  font-weight: bold;
}

.special-deal-price {
  font-size: 1.2rem;
}

.logo-container {
  background-color: white;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  margin-bottom: 20px;
}

.contact-info {
  text-align: center;
  margin: 15px 0;
}

.phone-number {
  color: #ffa500;
  font-size: 1.2rem;
  font-weight: bold;
}

.hours {
  margin: 10px 0;
}

.address {
  margin: 10px 0;
}

.fish-pack {
  background-color: #000;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 15px;
  text-align: center;
  border: 1px solid #fff;
}

.fish-pack-title {
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.fish-pack-item {
  background-color: var(--theme-color2);
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 8px;
  text-align: center;
}

.management-notice {
  background-color: #333;
  border-radius: 10px;
  padding: 15px;
  margin: 20px 0;
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.divider {
  height: 2px;
  background-color: #333;
  margin: 20px 0;
}

.old-shop {
  background-color: #333;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  margin-bottom: 15px;
}

.old-shop-title {
  color: #ffa500;
  font-weight: bold;
}

::placeholder {
  font-size: 15px;
}

.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #212529;
}

@media (min-width: 1300px) {
  .absolute {
    position: absolute !important;
    top: 0;
    right: 0;
    height: 100%;
  }
}

/* end */

@media (max-width: 767px) {
  .pt-6 {
    padding-top: 3rem;
  }

  .gutter-5 {
    --bs-gutter-y: 2rem;
  }

  .newfont {
    font-family: "Libre Baskerville", serif !important;
    font-size: 34px !important;
  }

  .homebanner {
    height: 51vh;
  }

  .vh-100 {
    height: auto !important;
    position: relative;
  }

  .bannerheight {
    background-position: center center !important;
  }

  .mainbanner h2 {
    font-size: 45px;
  }

  .display-7 {
    font-size: 21px;
  }

  body {
    font-size: 16px;
  }

  .breadcrumb h1 {
    font-size: 31px;
    padding-top: 7rem;
  }

  #header .logo img {
    max-height: 31px;
    /* background: #fff; */
    padding: 0;
  }

  .btn {
    font-size: 18px;
  }

  p {
    font-size: 17px;
  }

  .min-vh-100 {
    min-height: 75vh !important;
  }

  .section-title h2 {
    font-size: 34px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 1rem;
  }

  .aboutus p {
    /* color: rgb(255, 255, 255); */
    font-size: 16px;
  }

  br {
    display: none;
  }

  .pt-6 {
    padding-top: 2rem;
  }

  .pt-50 {
    padding-top: 50px;
  }

  .pb-50 {
    padding-bottom: 50px;
  }

  .book-a-table-btn {
    padding: 6px;
    font-size: 13px;
    margin-right: 1rem;
  }

  .btn {
    padding: 0.5rem 1rem;
    font-size: 16px;
    margin-right: 1rem;
  }

  .section-title h2 {
    font-size: 36px !important;
    text-transform: capitalize;
    font-weight: 500;
    margin-bottom: 0rem;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .mainbanner h2 {
    font-size: 94px;
  }

  .homebanner {
    height: 65vh;
  }

  .display-7 {
    font-size: 35px;
  }

  .gutter-5 {
    --bs-gutter-y: 3rem;
  }

  .mobile-nav-toggle {
    margin-left: 1rem;
  }
}

@media (min-width: 1024px) and (max-width: 1200px) {
  .mainbanner h2 {
    font-size: 100px;
  }

  .mainbanner p {
    font-size: 30px;
  }

  .gutter-5 {
    --bs-gutter-x: 3rem;
  }

  .nav-gap-sm span {
    width: 100% !important;
  }
}

/* review */
/* new button color   */
.textcolor1 {
  color: #582f1a;
}

.textcolor1:hover {
  color: #b22834;
}



/* new emporium22222222 */
/* --- Professional Header & Sticky Behavior --- */
#header {
  background: transparent;
  transition: all 0.3s ease;
  padding: 15px 0;
}

#header.header-scrolled {
  background: #000000!important;
  padding: 8px 0;
}

/* Fix Mobile Logo Size */
@media (max-width: 768px) {
  #header .logo img {
    max-height: 40px !important;
  }
}

/* Ensure the hero section scales for content, not just screen height */
.homebanner {

  height: auto !important;
  /* Overrides the fixed 90vh */
  display: flex;
  align-items: center;
  padding: 120px 0 60px 0;
  /* Extra top padding so header doesn't cover text */
  position: relative;
  background-attachment: scroll;
  /* Better for mobile performance than 'fixed' */
  font-family: "Libre Baskerville", serif;

}

/* Fluid Typography: Text that shrinks perfectly for mobile */
.mainbanner h2 {
  line-height: 1.1;
  margin-bottom: 0.5rem;
      text-shadow: 0 4px 0 rgba(255, 255, 255, 0.35);
}

.display7 {
  font-family: "Dancing Script", cursive;
  font-size: clamp(1.8rem, 6vw, 5rem) !important;
  line-height: 1.1;
  margin-bottom: 2rem;
}

/* Header Adjustments for Mobile */
@media (max-width: 991px) {
  #header .logo img {
    max-height: 45px;
    /* Keeps logo professional on small screens */
  }

  .header-buttons .book-a-table-btn {
    padding: 6px 15px;
    font-size: 13px;
  }
}

/* Fix for the Mobile Navigation Overlay */
.navbar-mobile {
  background: var(--theme-color2) !important;
  /* Professional brown background */
}

.navbar-mobile ul {
  background: #fff;
  margin: 15px;
  border-radius: 10px;
}

/* Hero Image Handling */
.homebanner {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .homebanner {
    min-height: 0;
    display: flex;
    align-items: center;
  }
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.7);
  /* Adds overlay effect for text readability */
}

/* Header Mobile Layout Fix */
@media (max-width: 991px) {
  #header .container {
    display: flex !important;
    flex-direction: row !important;
    justify-content: 间-between !important;
    align-items: center !important;
  }

  .logo {
    flex: 1;
    /* Pushes other content */
  }

  .header-buttons {
    flex: 2;
    /* Takes middle space */
    justify-content: center;
  }

  .mobile-nav-toggle {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }

  /* Make buttons smaller on very small screens */
  .header-buttons .book-a-table-btn {
    padding: 5px 10px;
    font-size: 11px;
    white-space: nowrap;
  }
}
/* Container to clip the image zoom */
.img-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* Important: keeps image inside bounds */
}

.img-container img {
  transition: transform 0.5s ease;
  /* Smooth zoom transition */
  display: block;
  width: 100%;
  height: auto;
}

/* Zoom effect on hover */
.highlight-card:hover .img-container img {
  transform: scale(1.1);
  /* Zooms in 10% */
}

/* Optional: add a slight shadow change on hover for depth */
.highlight-card {
  transition: 0.3s;
}

.highlight-card:hover h3 {
  color: var(--theme-color);
  /* Feedback for user hover */
}
/* dine in new  */
/* Exact Theme Color from your provided design */
.bg-theme-color {
  background-color: #90492a !important;
  /* Matches image_983883.jpg */
}

.text-theme {
  color: #90492a !important;
}

/* Typography to match Canva spacing */
.how-to-enjoy h2 {
  font-family: "Libre Baskerville", serif;  /* Or your chosen heading font */
  letter-spacing: -1px;
      font-size: 38px;
}

.content-body p {
  margin-bottom: 2rem;
  line-height: 1.6;
  font-size: 18px;
  color: #ffffff;
}

/* Bold subheaders like "Dine In —" */
.content-body strong,
.content-body b {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 5px;
  color: #ffffff;
}

/* Responsive Image handling */
.img-zoom-wrapper {
  transition: transform 0.5s ease;
  /* Keeps image proportional as per image_983883.jpg */
  aspect-ratio: 4/5;
}

.img-zoom-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.img-zoom-wrapper:hover img {
  transform: scale(1.08);
}

@media (max-width: 991px) {
  .how-to-enjoy {
    text-align: left;
  }

  .img-zoom-wrapper {
    aspect-ratio: 1/1;
    /* Square on mobile for better fit */
    max-height: 350px;
    margin: 0 auto;
  }
}



/* bread crumb new emporium secondary banner 2222222 */
.secondary-banner {
  height: 400px;
  /* Standard secondary banner height */
  background: #000;
  /* Fallback color */
}

.secondary-banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  z-index: 1;
  /* Dark overlay to make white text pop like your Canva design */
  filter: brightness(0.6);
}

.secondary-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  /* Responsive fluid typography */
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.5px;
}

/* Mobile Adjustment */
@media (max-width: 767px) {
  .secondary-banner {
 max-height: fit-content !important;
/*     height: 18vh; */
    /* Smaller height on mobile to improve content focus */
  }

  .secondary-title {

    font-size: 31px;
  }
	.content-body p {
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 16px;
    color: #ffffff;
}
	p{
		font-size:16px;
	}
}

/* new emporium bout us 22222222222 */
/* Image Container for About Us */
.about-img-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* Maintain a consistent look like your Canva design */
  aspect-ratio: 16 / 10;
}

.about-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Start slightly zoomed in */
  transform: scale(1.1);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ZOOM OUT on Hover/Focus */
.about-img-container:hover img {
  transform: scale(1);
}

/* Content Styling to match Canva brown theme */
.aboutcard b,
.aboutcard strong {
  color: #90492a;
  /* Your theme brown */
  display: inline-block;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

/* Button Styling consistency */
.bg-theme {
  background-color: #90492a !important;
  transition: 0.3s;
}

.bg-theme:hover {
  background-color: #7a3e23 !important;
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .about-img-container {
    aspect-ratio: 1 / 1;
    /* Square on mobile to save vertical space */
    margin-bottom: 15px;
  }
    .mainbanner h2 {
     
      text-shadow: 0 2px 0 rgba(255, 255, 255, 0.35);
    }
}
/* pc */
@media (min-width: 1400px) {
  .homebanner {
  min-height: 65vh;
  display: flex;
  align-items: center;
}
}