:root {
  --theme-color: #4A0C2A;
  --secondary-color: #FCFBFB;
  --theme-color2: #582f1a;
  --title-color: #FAF9FA;
  --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: green;
  --error-color: #dc3545;
  --border-color: #e0e0e0;
  --btn-bg-color: #331121;
  --btn-hover-color: #fff;
}

html,
body {
  scroll-behavior: smooth !important;
	overflow-x:hidden;
}

body {
  color: rgb(119, 119, 119);
  font-family: "Cormorant Garamond", serif;
  /* font-family: "Work Sans", serif; */
  font-size: 19px;
  font-weight: 400;
}

p {
  margin: 0px 0px 18px;
  color: rgb(0, 0, 0);
  font-size: 19px;
  font-weight: 600;
}
p,
li {
  font-weight: 400;
  font-family: "Cormorant Garamond", "serif";
}

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.4;
  margin: 0px 0px 15px;
  font-family: "Cormorant Garamond", serif;
}

a {
  color: var(--theme-color);
  text-decoration: none;
}

a:hover {
  color: var(--theme-color);
  text-decoration: none;
}

@media (min-width: 992px) {
  .border-theme {
    border-bottom: 1px solid var(--theme-color) !important;
  }
}

img {
  object-fit: cover;
}

.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: #321120;
  transition: 0.5s;
  z-index: 997;
  padding: 4px 0px;
}

#header .logo {
  font-size: 30px;
  margin: 0px;
  padding: 0px;
  font-weight: 600;
  font-family: "Cormorant Garamond", serif;
}

.header-scrolled {
  transition: background-color 0.3s;
  background-color: #321120 !important;
}

.header-scrolled .navbar a {
  color: var(--title-color);
}

#header .logo a {
  color: rgb(17, 17, 17);
}

#header .logo a span {
  color: rgb(235, 72, 93);
}

#header .logo img {
  max-width: 60%;
  background: #fff;
}

.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 0px 10px 50px;
  font-size: 18px;
  color: var(--title-color);
  white-space: nowrap;
  transition: 0.3s;
  font-weight: 600;
}

.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(--title-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: #4A0C2A;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.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: rgb(235, 72, 93);
}

.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%);
}

.btn {
  transition: 150ms linear;
  font-weight: 400;
  padding: 5px 30px;
  background: var(--theme-color);
  color: var(--secondary-color);
  font-size: 18px;
  border-radius: 50px;
  /* border: 1px solid rgb(255, 255, 255); */
}

.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-theme1 {
  background: var(--secondary-color);
}
.bg-footer {
  background: #321120;
}

/* banner */

.vh-100 {
  height: 100vh !important;
  position: relative;
}
.w-200 {
  width: 200px;
  margin: auto;
}

.mainbanner {
  z-index: 1;
}

.mainbanner h2 {
  font-size: 107px;
  -webkit-text-stroke: 3px var(--theme-color);
  -webkit-text-fill-color: transparent;
}

.display-7 {
  font-size: 26px;
  text-shadow: #fff;
  width: fit-content;
  font-family: "Cormorant Garamond", serif;
}

.bannerheight {
  height: 100vh;
  position: relative;
  z-index: 1;
}

.bannerheight:before {
  position: absolute;
  content: close-quote;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

.z-9 {
  z-index: 99;
}

img {
  object-fit: cover;
  border-radius: 15px;
}

@media (min-width: 1400px) {
  .px-xxl-8 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
}

@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(--secondary-color);
}

.section-title h2 {
  font-size: 46px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 2rem;
  color: var(--secondary-color);
}

.menuhighlight h3 {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--white-color);
}

.menuhighlight .card {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
  position: relative;
}

.menuhighlight .card img {
  transition: filter 0.3s ease;
}

.menuhighlight .card:hover img {
  -webkit-filter: brightness(90%);
  filter: brightness(90%);
}

.apollomenu {
  overflow: hidden;
}

.apollomenu img {
  transition:
    transform 150ms linear,
    -webkit-transform 150ms linear;
  will-change: transform;
}

.aboutpara p {
  color: #fff;
  font-weight: 500;
}

.bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
  z-index: 1;
}
.fs-19 {
  font-size: 19px;
}
.fs-30 {
  font-size: 30px;
}
.fs-32 {
  font-size: 32px;
}
.fs-39 {
  font-size: 39px;
}
@media screen and (max-width: 768px) {
  .fs-32 {
    font-size: 24px;
  }
  .fs-19 {
    font-size: 16px;
  }
	.fs-39 {
  font-size: 30px;
}
}
.bg-opacity {
  background: rgb(57 104 54 / 85%);
}

.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: rgba(10, 10, 10, 0.6);
  z-index: -1;
}

.foottop {
  z-index: 2;
  overflow: hidden;
}

.aboutoverlay {
  z-index: 2;
  overflow: hidden;
  position: relative;
}

.me-20 {
  margin-right: 20px !important;
}

.aboutus p {
  font-size: 20px;
  font-weight: 600;
}

.pt-50 {
  padding-top: 80px;
}

.pb-50 {
  padding-bottom: 80px;
}

.d-table-cell {
  vertical-align: middle;
}

.book-a-table-btn {
  background: var(--theme-color);
  color: var(--secondary-color);
  border-radius: 50px;
  margin: 0px 0px 0px 20px;
  padding: 5px 25px;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
  white-space: nowrap;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-a-table-btn:hover {
  background: var(--theme-color2);
  color: rgb(255, 255, 255);
}

.gutter-5 {
  --bs-gutter-x: 5rem;
}
.breadcrumb h1 {
  font-weight: 400;
  font-size: 50px;
  text-transform: capitalize;
  text-align: center;
  color: #ffffff;
  padding-top: 11rem;
}

.aboutcard {
  background-color: rgb(88 47 26 / 90%);
  border-radius: 50px;
}

.aboutcard p {
  color: #fff;
}

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: 18px;
}

.fs-16 {
  font-size: 16px;
}

.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;
}

/* end */

@media (max-width: 767px) {
  .menu-item {
    display: block;
    justify-content: space-between;
    margin-bottom: 8px;
  }

  .gutter-5 {
    --bs-gutter-y: 2rem;
  }

  .header .btn {
    font-size: 12px;
    padding: 5px 11px;
  }

  .vh-100 {
    height: auto !important;
    position: relative;
  }

  .bannerheight {
    background-position: center center !important;
    height: 100%;
  }

  .mainbanner h2 {
    font-size: 83px;
    line-height: 80px;
    margin: 10px 0;
  }

  .display-7 {
    font-size: 15px;
    width: fit-content;
  }

  body {
    font-size: 16px;
  }

  .breadcrumb h1 {
    font-size: 32px;
    padding-top: 7rem;
  }

  #header .logo img {
    max-height: 60px;
    padding: 0;
  }

  .btn {
    font-size: 16px;
    padding: 5px 15px;
  }

  p {
    font-size: 16px;
  }

  .min-vh-100 {
    min-height: 75vh !important;
  }

  .section-title h2 {
    font-size: 32px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 1rem;
  }

  .aboutus p {
    font-size: 16px;
  }

  br {
    display: none;
  }

  .pt-6 {
    padding-top: 2rem;
  }

  .pt-50 {
    padding-top: 50px;
  }

  .pb-50 {
    padding-bottom: 50px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .mainbanner h2 {
    font-size: 65px;
  }

  .mainbanner p {
    font-size: 30px;
  }
}

@media (min-width: 1500px) {
  .bannerheight {
    height: 80vh;
    position: relative;
  }
}

.brand-display {
  font-family: "Cormorant Garamond", serif;
  font-size: 138px;
  line-height: 0.85;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.headline-sub {
  font-family: "Canva Sans", "Cormorant Garamond", serif;
  font-size: 40px;
  font-weight: 600;
  margin-top: -10px;
}

.canva-btn-black {
  background-color: #000000 !important;
  color: #ffffff !important;
  border-radius: 50px !important;
  padding: 12px 35px !important;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px !important;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  border: none;
  transition: 0.3s transform;
}

.canva-btn-black:hover {
  transform: scale(1.05);
  color: #ffffff;
}

/* Responsiveness for small screens */
@media (max-width: 991px) {
  .brand-display {
    font-size: 80px;
  }

  .headline-sub {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .brand-display {
    font-size: 50px;
  }

  .headline-sub {
    font-size: 20px;
  }
}

.menu-highlight-section {
  background-color: #321120;
  padding: 0 0;
}

.canva-title-main {
  font-family: "Cormorant Garamond", serif;
  font-size: 41px;
  line-height: 1.1;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 20px;
}

.canva-desc-main {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  line-height: 1.5;
  color: #ffffff;
  font-weight: 400;
}

.menu-card-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  text-transform: uppercase;
  margin-top: 15px;
  letter-spacing: 0.5px;
  color: #000000;
}

.menu-image-container {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
}

.menu-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.menu-card-custom:hover img {
  transform: scale(1.05);
}

.menu-footer-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.canva-pill-btn-white {
  background: var(--btn-bg-color);
  color: #ffffff !important;
  padding: 12px 30px;
  border-radius: 50px;
  font-family: "Cormorant Garamond", serif;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
}

.canva-pill-btn-white:hover {
  background: var(--theme-color);
    color: var(--btn-hover-color);


}

.menu-card-link {
  text-decoration: none !important;
}

@media (max-width: 991px) {
  .canva-title-main {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .canva-pill-btn-white {
    font-size: 12px;
  }
}
.about-section-padding {
  padding: 100px 0;
}

.about-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 46px;
  line-height: 1.1;
  text-transform: capitalize;
}

.about-content {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  line-height: 1.6;
}

.about-content p {
  margin-bottom: 15px;
}

.canva-pill-btn-black {
  background: var(--btn-bg-color);
  color: #ffffff !important;
  padding: 14px 35px;
  border-radius: 50px;
  font-family: "Cormorant Garamond", serif;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  border: none;
  transition: 0.3s transform ease;
}

.canva-pill-btn-black:hover {
  transform: scale(1.05);
  color: #ffffff;
}

@media (max-width: 768px) {
  .about-title {
    font-size: 32px;
  }

  .about-section-padding {
    padding: 50px 0;
  }
}
/* new with chatgpt */
.brand-title-image {
  width: 100%;
  height: auto;
  max-width: 700px;
}

@media (max-width: 768px) {
  .brand-title-image {
    max-width: 420px;
  }
}

.hero-banner {
  min-height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-inner {
  width: 100%;
}

.brand-display {
  font-family: "Cormorant Garamond", serif;
  font-size: 140px;
  line-height: 0.85;
  color: #ffffff;
  text-transform: uppercase;
}

.hero-brand-img {
  max-width: 420px;
  margin-bottom: 10px;
}

.headline-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  color: #ffffff;
  margin-top: -10px;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.hero-btn {
  background: var(--btn-bg-color);
  color: var(--btn-color);
  padding: 14px 36px;
  border-radius: 50px;
  text-transform: uppercase;
  font-family: "Cormorant Garamond", serif;
  text-decoration: none;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: var(--theme-color);
  color: var(--btn-hover-color);
}

@media (max-width: 768px) {
  .brand-display {
    font-size: 70px;
  }

  .headline-sub {
    font-size: 22px;
  }
}
.brand-display br {
  content: "";
  display: block;
  margin-bottom: -10px;
}
.hero-banner {
  min-height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-inner {
  width: 100%;
}

.brand-display {
  font-family: "Cormorant Garamond", serif;
  font-size: 140px;
  line-height: 0.85;
  text-transform: uppercase;
  color: #ffffff;
}

.brand-display span {
  display: block;
}

.headline-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  color: #ffffff;
  margin-top: -10px;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.hero-btn {
  background: var(--btn-bg-color);
  color: var(--white-color);
  padding: 14px 36px;
  border-radius: 50px;
  text-transform: uppercase;
  font-family: "Cormorant Garamond", serif;
  text-decoration: none;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: var(--theme-color);
   color: var(--btn-hover-color);

}

@media (max-width: 768px) {
  .brand-display {
    font-size: 59px;
    margin-bottom: 13px;
  }

  .headline-sub {
    font-size: 22px;
  }
  .hero-banner {
    min-height: 50vh;
  }
  .hero-btns {
    gap: 6px;
  }
}
.catering-section {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
  min-height: 600px;
  display: flex;
  align-items: center;
}

/* The Glassmorphism Card */
.glass-card {
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);

  padding: 50px;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
@supports not (
  (-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))
) {
  .glass-card {
    background: rgba(255, 255, 255, 0.9);
  }
}
.catering-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  line-height: 1.1;
  color: #000000;
  text-transform: capitalize;
}

.catering-content {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  line-height: 1.5;
  color: #333333;
  font-weight: 500;
}

.catering-content p {
  margin-bottom: 20px;
}

.canva-pill-btn-black {
  background: var(--btn-bg-color);
  color: #ffffff !important;
  padding: 14px 40px;
  border-radius: 50px;
  font-family: "Cormorant Garamond", serif;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  transition: 0.3s transform ease;
}

.canva-pill-btn-black:hover {
  transform: scale(1.05);
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .catering-title {
    font-size: 32px;
  }

  .glass-card {
    padding: 30px;
    margin: 0 15px;
  }

  .catering-section {
    padding: 60px 0;
  }
	.catering-content{
		font-size:16px;
}

/* second banner   */

section .inner-banner {
  position: relative;
  width: 100%;
  height: 315px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.banner-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 80px;
  color: #ffffff;
  text-transform: capitalize;
  line-height: 1;
  text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
  margin: 0;
}
.newstylesecondbanner {
  margin-top: 35px;
  padding-top: 35px;
}
/* Responsive Scaling */
@media (max-width: 991px) {
  .banner-title {
    font-size: 60px;
  }

  .inner-banner {
    height: 175px;
  }
}

@media (max-width: 576px) {
  .banner-title {
    font-size: 40px;
  }
}

.welcome-mantra-section {
  background-color: #ffffff !important;
}

.canva-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 45px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.canva-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.9;
}

.canva-img {
  border-radius: 25px;
  width: 100%;
  object-fit: cover;
  max-height: 500px;
}

.canva-pill-white {
  background-color: #ffffff !important;
  color: #000000 !important;
  padding: 15px 45px;
  border-radius: 50px;
  font-family: "Cormorant Garamond", serif;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  letter-spacing: 1px;
}

.canva-pill-white:hover {
  background-color: #f1f1f1 !important;
  transform: scale(1.03);
  transition: 0.2s ease;
}

@media (max-width: 768px) {
  .canva-title {
    font-size: 30px;
  }
  .hero-btn {
    font-size: 13px;
  }
  .ps-md-5 {
    padding-left: 0 !important;
  }
}
.canva-img-wrapper {
  position: relative;
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 10px;
}

.canva-img-wrapper:hover {
  border-color: #ffffff;
}

.media-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  opacity: 0;
}

.canva-img-wrapper:hover .media-overlay {
  opacity: 1;
}
.img-edit-container {
  position: relative;
  display: inline-block;
}

.edit-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 12px;
  opacity: 0;
  transition: 0.3s;
}

.img-edit-container:hover .edit-badge {
  opacity: 1;
}
.why-different-section {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.why-overlay-box {
  border-radius: 40px;

  background: rgba(255, 255, 255, 0.35);

  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.canva-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  line-height: 1.1;
  text-transform: capitalize;
}

.canva-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  line-height: 1.6;
  color: #000000;
}

.canva-text ul {
  list-style-type: disc;
  padding-left: 20px;
}

/* Mobile Fix */
@media (max-width: 768px) {
  .why-different-section {
    padding: 60px 0;
    background-attachment: scroll;
  }

  .canva-title {
    font-size: 32px;
  }
}

#footer .foottop::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(226, 221, 221, 0.4); /* ðŸ‘ˆ lighter overlay */
  z-index: 1;
}

#footer .foottop > .container {
  position: relative;
  z-index: 2;
}
#footer .foottop {
  background-blend-mode: multiply;
}
#footer .foottop {
  filter: brightness(0.7) contrast(1.5);
}
/* footer end */
.catering_banner .headline-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 55px;
  color: #ffffff;
  margin-top: 10px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .catering_banner {
    min-height: 35vh;
  }
  .catering_banner .brand-display {
    font-size: 45px;
    margin-bottom: 13px;
  }
  .catering_banner .headline-sub {
    font-size: 23px;

    margin-top: -10px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .catering_banner .brand-display {
    font-size: 82px;
    margin-bottom: 13px;
  }
}
/* steps */
.stepsbutton {
  padding-top: 11rem;
}

.cafe-title {
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff;

  /* duplicate text */
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.35);
}

/* Subtitle */
.cafe-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 1rem;
  color: #ffffff;

  /* lighter + tighter duplicate */
  text-shadow: 0 3px 0 rgba(255, 255, 255, 0.35);
}
@media (max-width: 767.98px) {
  .stepsbutton {
    all: revert;
  }
  #header .logo img {
    max-width: 80px;
    background: #fff;
    /* padding: 6px; */
  }
  li {
    font-size: 16px;
  }
	.header-scrolled .navbar a {
    
		color: var(--black-color);
}
}
	