@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700&family=Public+Sans:wght@100..900&display=swap');

:root{
  --baseFont: "Public Sans", sans-serif;
  --titleFont: "Cinzel Decorative", serif;
  --primary: #F47C2B;
  --gradientColor1: #ED6A08;
  --gradientColor2: #F4AA06;
  --dark: #2C2C2C;
  --white: #fff;
  --bodyBg: #FAF4EE;
  --imgOverlay: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%,rgba(0,0,0,0.8) 100%);
  --imgOverlay2: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%,rgba(0,0,0,0.9) 100%);
  --btnGradient: linear-gradient(135deg, var(--gradientColor1) 0%,var(--gradientColor2) 50%,var(--gradientColor1) 100%);


  --primaryDark: #FF0D31;
  --secondary: #FFBB00;
  --black: #000;
  --error: #ff5151;
  --fbColor: #1877F2;
  --googleColor: #5F6368;
  --transition: 400ms ease-in-out 0s;
}
.menuPageContent .customContent .content .tablinks.active {
    background-color: var(--primary);
}
/* body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--dark);
  font-family: var(--baseFont);
  background-color: var(--bodyBg);
} */
a, a:hover {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
img {
  max-width: 100%;
}

h1 ,h2, h3, h4 {
  font-family: var(--titleFont);
}

/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--dark);
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 8px;
  }

  *::-webkit-scrollbar-track {
    background: var(--dark);
  }

  *::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 0px;
    border: 1px solid var(--dark);
  }

/* components */
.textPrimary {
	color: var(--primary);
}

.simpleLink {
  position: relative;
  padding-bottom: 2px;
}
.simpleLink::before {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  border-radius: 5px;
  height: 2px;
  bottom: 0;
  left: 0;
  background: currentcolor;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.simpleLink:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.linkStyle2 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.headerSection .btn {
  --br: 30px;
  border-radius: var(--br);
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0;
  min-width: 120px;
  line-height: normal;
  border: none;
  position: relative;
}
.headerSection .btn::before {
  content: "";
  border-radius: var(--br);
  position: absolute;
  inset: 2px;
  outline: 2px solid;
  outline-offset: 0px;
  transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
}
.headerSection .btn.btnOutlin::before {
  outline-color: rgba(0, 0, 0, 0.5);
}
.headerSection .btn.btnPrimary::before {
  outline-color: rgba(244, 124, 43, 1);
}
.btn.btnPrimary::before {
  outline-color: rgba(244, 124, 43, 1);
}
.headerSection .btn:hover::before {
	outline-offset: 12px;
}
.headerSection .btn.btnOutline:hover::before {
  outline-color: rgba(0, 0, 0, 0);
}
.headerSection .btn.btnPrimary:hover::before {
  outline-color: rgba(244, 124, 43, 0);
}
.headerSection .btn>span {
  position: relative;
  z-index: 2;
  padding: 16px 30px;
  display: block;
  border-radius: var(--br);
}
.headerSection .btnPrimary > span {
	background: var(--btnGradient);
	background-size: 200% auto;
	background-position: left top;
	color: var(--dark);
	transition: var(--transition);
	border: 1px solid transparent;
}
.headerSection .btn.btnPrimary:hover>span {
  background-position: right top;
}
.headerSection .btn.btnOutline > span {
  border: 1px solid var(--dark);
  background-color: var(--bodyBg);
}

/* Header */
.logo svg, .sidebarLogo svg {
  max-width: 100%;
  height: auto;
}
.sidebarLogo {
	padding: 0 0 10px;
}
.sidebarLogo a {
  display: inline-block;
  max-width: 160px;
}
.logo a {
  display: flex;
  align-items: center;
}
.logo {
  --logo-height: 50px;
  height: var(--logo-height);
  max-width: 200px;
  display: flex;
  align-items: center;
}
.logo > a > img, .logo > a > svg {
  max-width: 100%;
  object-fit: contain;
  max-height: var(--logo-height);
}
header.headerSection {
  position: sticky;
  top: 0;
  z-index: 9;
  background-color: var(--bodyBg);
  color: var(--dark);
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.menuColMain {
  display: flex;
  justify-content: flex-end;
}
.navItems {
  display: flex;
  column-gap: 40px;
  font-size: 18px;
}
.navItems a {
  font-weight: 500;
  --pVal: 5px 0; 
	padding: var(--pVal);
  position: relative;
  display: block;
}
.navItems a:before {
	position: absolute;
  inset: 0;
	overflow: hidden;
	padding: var(--pVal);
	max-width: 0;
	border-bottom: 2px solid var(--primary);
	color: var(--primary);
	content: attr(data-hover);
	-webkit-transition: max-width 0.5s;
	-moz-transition: max-width 0.5s;
	transition: max-width 0.5s;
}
.navItems a:hover:before, .navItems a:focus:before, .navItems a.active:before {
	max-width: 100%;
}
.navItems a.active {
  color: transparent;
}
.headerRightOption {
	display: flex;
	align-items: center;
	column-gap: 15px;
	padding-left: 20px;
}
.cartCol {
  position: relative;
  display: block;
}
.cartIcon {
	display: block;
}
.cartCount {
	color: var(--white);
	background-color: var(--primary);
	font-size: 12px;
	padding: 2px 4px;
	position: absolute;
	top: -8px;
	right: 0;
	line-height: 1;
	border-radius: 10px;
	min-width: 16px;
	text-align: center;
	font-weight: 600;
}
.menuToggle {
  position: relative;
  width: 26px;
  height: 18px;
  margin-left: auto;
}
.menuToggle > a {
  display: block;
  width: 100%;
  height: 100%;
}
.menuToggle > a > span {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  width: 100%;
  background-color: var(--dark);
  border-radius: 20px;
  transition: all 300ms ease-in-out 0s;
}
.menuToggle > a > span:nth-child(2) {
  top: 8px;
}
.menuToggle > a > span:last-child {
  bottom: 0;
  top: auto;
}
.actNav .menuToggle > a > span:nth-child(1) {
  transform: rotate(135deg);
  top: 8px;
}
.actNav .menuToggle > a > span:nth-child(2) {
  opacity: 0;
  transform: translateX(-25px);
}
.actNav .menuToggle > a > span:nth-child(3) {
  transform: rotate(-135deg);
  bottom: 8px;
}
.menuBackDrop {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 800ms ease-in-out 0s;
  z-index: 9;
  background-color: rgba(19, 15, 38, 0.7);
}
.sectionSpace {
  padding: 120px 0;
}

/* login modal */
.modalNewstyle {
  --xSpace: 30px;
  --ySpace: 40px;
  font-size: 16px;
}
.modalNewstyle .modal-body {
  padding: var(--ySpace) var(--xSpace);
  position: relative;
}
.modalNewstyle .modal-header {
  padding: var(--ySpace) var(--xSpace) calc(var(--ySpace) / 2);
  position: relative;
}
.modalNewstyle .modal-header {
	flex-direction: column;
	row-gap: 5px;
}
.modalNewstyle .modal-header + .modal-body {
  padding-top: 10px;
  padding-bottom: calc(var(--ySpace) + 10px);
}
.modalNewstyle .modal-content {
  background-color: var(--dark);
}
html:not([data-bs-theme="dark"]) .modalNewstyle .modal-content {
	background-color: var(--white);
}
.modalNewstyle .btn-close {
	--closeIconSize: 10px;
  --closeIconPosition: 15px;
	padding: 4px;
	width: var(--closeIconSize);
	height: var(--closeIconSize);
	position: absolute;
	right: var(--closeIconPosition);
	top: var(--closeIconPosition);
	margin: 0;
}
.modalForm {
	margin: 0 auto;
	max-width: 520px;
}
.sideLinesDivider {
  overflow: hidden;
  text-align: center;
  position: relative;
}
.sideLinesDivider > .dividerText {
	display: inline-block;
	position: relative;
	padding: 0 20px;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--dark);
	font-weight: 600;
}
.sideLinesDivider > .dividerText::before, .sideLinesDivider > .dividerText::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100vw;
  margin-top: -1px;
  border-top: 2px solid currentColor;
  opacity: 0.2;
}
.sideLinesDivider > .dividerText::before {
  right: 100%;
}
.sideLinesDivider > .dividerText::after {
  left: 100%;
}
.rightIconFld {
	position: relative;
}
.rightIconFld > .inputFieldIcon {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translate(0, -50%);
	pointer-events: none;
  z-index: 2;
}
.fieldIcon {
	height: auto;
	width: 22px;
	display: block;
	opacity: 0.6;
}

.formStyle {
  font-size: 16px;
}
.formStyle input[type="date"] ~ .inputFieldIcon, .formStyle input[type="time"] ~ .inputFieldIcon {
  background-color: var(--white);
}
.formStyle .form-select, .formStyle .form-control {
	border-radius: 30px;
	padding-top: 12px;
	padding-bottom: 12px;
	padding-left: 20px;
	border-width: 2px;
}
.formStyle .form-select {
	background-size: 16px auto;
	background-position: right 18px center;
}
.formStyle textarea.form-control {
	height: 120px;
	resize: none;
	border-radius: 16px;
}
.formStyle .form-check {
	font-size: 16px;
	font-weight: normal;
	line-height: 1.2;
	margin-bottom: 0;
	min-height: auto;
}
.formStyle .form-check .form-check-input {
	margin-top: 2px;
}
.formStyle .form-check-input:checked {
	background-color: var(--primary);
	border-color: var(--primary);
}

.formStyle .rightIconFld .form-control {
	padding-right: 50px;
}
.formStyle .rightIconFld .form-control.reservationField {
	padding-right: 15px;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}
input[type="date"]::-moz-calendar-picker-indicator {
  display: none;
  pointer-events: none;
}

.modalNewstyle .form-label {
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 4px;
}
.errorMsg {
	font-size: 14px;
	color: var(--error);
	letter-spacing: 0.5px;
	font-weight: 400;
	margin: 4px 0;
	line-height: 1.2;
  display: none;
}
#resend_otp {
  transition: color var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}
#timer {
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
}


/****** Footer css Start ******/
.footerColMain {
  padding-bottom: 100px;
  --pd: 74px;
}
.footerTop p,
.footerTop ul li {
  font-size: 18px;
  line-height: 1.8;
}
.footerTop p span {
  font-weight: 600;
}
.copyrightCol {
  font-size: 16px;
}
.socialMenu ul li + li {
  margin-left: 15px;
}
.socialMenu a {
  transition: opacity var(--transition);
  display: block;
  color: var(--primary);
}
.socialMenu a:hover {
	opacity: 0.6;
}
.footerCol h3.mdTitle {
  font-size: 18px;
}
.hpCol {
  padding-left: 80px;
}
.footerBottom {
  padding: var(--pd) 0;
  position: relative;
}
.footerBottom::before, .footerBottom::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  border-top: 1px solid;
  border-image: linear-gradient(to right,#FAF4EE, black, #FAF4EE); /* Example gradient */
  border-image-slice: 1;
}
.footerBottom::before {
  top: 0;
}
.footerBottom::after {
  bottom: 0;
}
.footerCopyright {
  padding-top: var(--pd);
}
.footerTop {
  padding-bottom: var(--pd);
}
.ftColLeft > h3 {
  font-size: 30px;
}
.ftLinks, .ftLinks a {
  display: flex;
  gap: 10px;
}
.ftColRight .ftLinks {
  gap: 20px;
  justify-content: end;
}
.ftColLeft {
    max-width: 500px;
}
.modalNewstyle .close {
  position: absolute;
  right: 15px;
  top: 7px;
  text-shadow: none;
  color: #000;
  font-weight: 300;
  font-size: 35px;
  padding: 0;
  margin: 0;
}
.form-check input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.form-check label {
  position: relative;
  cursor: pointer;
  padding-left: 25px;
}
.form-check label:before {
  content: '';
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #495057;
  position: absolute;
  left: 0;
  top: 1px;
  width: 16px;
  height: 16px;
  border-radius: 4px;
}
.form-check input:checked + label:before {
  background-color: var(--primary);
}
.form-check input:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  top: 4px;
  left: 6px;
  width: 5px;
  height: 8px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
#loginModal .formStyle .form-check {
    padding-left: 0;
}


/******* Media Quary *******/
@media (min-width:768px) {
  .modal-md {
    max-width: 600px;
  }
}
@media (min-width:768px) and (max-width:991px) {
  .modal-lg {
    max-width: 650px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px !important;
  }
}
@media (max-width: 1399px) {
  .xlTitle {
    font-size: 50px;
  }
  .logo {
    max-width: 160px;
  }
  .navItems {
    column-gap: 30px;
    font-size: 16px;
  }
  .headerRightOption {
    column-gap: 12px;
  }
}
@media (max-width: 1199px) {
  body {
    font-size: 16px;
  }
  .sectionSpace {
    padding: 100px 0;
  }
  .logo {
    max-width: 140px;
  }
  .headerSection .btn > span {
    padding: 14px 20px;
  }
  .navItems {
    column-gap: 24px;
    font-size: 15px;
  }
  .footerColMain {
    padding-bottom: 80px;
    --pd: 50px;
  }
  .ftColLeft {
    max-width: 380px;
  }
  .hpCol {
    padding-left: 30px;
  }
}

@media (max-width: 991px) {
  .menuColMain {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 280px;
    z-index: 99;
    background-color: var(--dark);
    color: var(--white);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition);
    transform: translateX(-200%);
    justify-content: flex-start;
    flex-direction: column;
    padding: 20px;
  }
  .actNav .menuColMain {
    transform: translateX(0);
  }
  .actNav .menuBackDrop {
    opacity: 1;
    visibility: visible;
    pointer-events: initial;
  }
  .logo {
    max-width: 160px;
  }
  .navItems {
    flex-direction: column;
  }
  .navItems > li {
    display: block;
  }
  .navItems a {
    --pVal: 12px 0;
  }
  .navItems > li + li {
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  header.headerSection {
    padding: 12px 0;
  }
  .sectionSpace {
    padding: 80px 0;
  }
  .footerTop {
    text-align: center;
  }
  .ftColLeft {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .ftColRight .ftLinks {
    gap: 20px;
    justify-content: center;
  }
  .ftLinks, .ftLinks a {
    justify-content: center;
  }
  .footerColMain {
    --pd: 35px;
  }
  .hpCol {
    padding-left: 0;
    margin: 30px 0;
  }
  .footerCol {
    text-align: center;
  }
  .selectionFilterOptions {
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    white-space: nowrap;
    margin-bottom: 30px;
    justify-content: flex-start;
    padding-bottom: 10px;
  }
}
@media (max-width:767px) {
  .modalNewstyle {
    --xSpace: 15px;
    --ySpace: 20px;
  }
  .modal .formStyle .form-check {
    font-size: 14px;
  }
  .ftColLeft > h3 {
    font-size: 24px;
  }
  .ftColRight .ftLinks {
    flex-direction: column;
    gap: 15px;
  }
}
@media (max-width:575px) {
  .sectionSpace {
    padding: 60px 0;
  }
  .formStyle .form-select, .formStyle .form-control {
    padding-left: 15px;
  }
  .headerSection .btn>span {
    padding: 14px 20px;
  }
}
@media (max-width:360px) {
  .modalNewstyle .rightIconFld > .inputFieldIcon {
    right: 14px;
  }
  .formStyle .rightIconFld .form-control {
    padding-right: 40px;
  }
  .formStyle .form-control {
    font-size: 14px;
  }
  .inputFieldIcon {
    height: auto;
    width: 20px;
  }
  .modalNewstyle#reservationModal {
    --xSpace: 10px;
  }
}
.btn_primary{
  background-color: var(--primary);
}
@media (max-width: 575px) {
  #otpVerifyModal .formStyle .form-control {
    margin-left: 70px !important;
    width: 70% !important;
  }
}