@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Cormorant+SC:wght@300;400;500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Great+Vibes&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
  overflow-x: hidden;
  /* overflow: hidden; */
}
main {
  background-color: black;
}

ol,
ul,
li {
  margin: 0;
  padding: 0;
}

:root {
  --fontNav: "Cormorant SC", serif;
  --fontTitle: "Great Vibes", cursive;
  --fontHead: "Cinzel", serif;
  --fontText: "DM Sans", sans-serif;
  --fontWeight: 500;
  --fontWeightNum: 650;
  --headColor: #f3d382;
  --mainColor: #f5be32;
  --secColor: #d9d9d9;
}

/***** navbar Section *****/
header {
  /* background: url(/MidTown_img/nav_img.heic); */
  /* background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)),
    url(/MidTown_img/nav_img.heic); */
  background-image: url("/MidTown_img/Group\ 42.png");
  background-size: cover;
  background-position: calc(50% + 1px) calc(32% + 1px);
}

header nav .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 0px 20px;
}
header nav ul {
  list-style: none;
  display: flex;
  gap: 5rem;
}
nav .nav-container .left-container .logo img {
  width: 100px;
  height: 100px;
}
nav .nav-container .left-container {
  display: contents;
  justify-content: center;
  align-items: center;
}
.left-container .list-item ul li a {
  text-decoration: none;
  list-style: none;
  color: var(--mainColor); /* Use your custom color variable */
  font-family: var(--fontNav); /* Use your custom font */
  transition: all 0.3s ease; /* Smooth transition effect */
}

.left-container .list-item ul li a:hover {
  text-shadow: 0 0 5px var(--mainColor), 0 0 10px var(--mainColor),
    0 0 15px var(--mainColor); /* Green glow */
  color: var(--mainColor); /* Change text color on hover (optional) */
}

/* RIGHT CONTAINER */
.btn .reserve-btn a {
  text-decoration: none;
  color: var(--mainColor);
  font-family: var(--fontNav);
}
.btn .reserve-btn {
  background: transparent;
  border: 2px solid var(--mainColor);
  transition: box-shadow 0.3s ease;
  &:hover {
    box-shadow: 0 0 8px var(--mainColor);
  }
}
.btn .reserve-btn {
  /* width: 130px; */
  border-radius: 5px;
  /* height: 40px; */
  padding: 6px;
}
/***** End navbar Section *****/

/** start responsive nav */

/**!  media query */
@media only screen and (max-width: 850px) {
  .nav-container {
    display: none !important;
  }
  .res-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

@media only screen and (min-width: 850px) {
  .res-nav {
    display: none;
  }
}

/* ? Edit  */
.offcanvas-header ul a {
  list-style: none;
  text-decoration: none;
  color: var(--mainColor);
}
.offcanvas-header ul li button {
  color: var(--mainColor);
  background: transparent;
  border: 1px solid var(--mainColor); /* Corrected syntax */
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
  &:hover {
    box-shadow: 0 0 8px var(--mainColor);
  }
}

.resNavItem ul {
  display: block;
}
.offcanvas-header {
  justify-content: space-between;
}
/* Style for the custom close button */
.custom-close-btn {
  background-color: transparent;
  border: none;
  /* padding: 0;
  margin: 0; */
  cursor: pointer;
}

.custom-close-btn:hover {
  opacity: 0.8;
}

.custom-close-btn img {
  /* width: 30px; Adjust size */
  height: auto;
  transition: transform 0.2s ease;
}

.custom-close-btn img:hover {
  transform: scale(1.1); /* Slight zoom on hover */
}

.offcanvas{
  background: #2e2e2e;
}

.res-nav .resNavItem ul li  a{
  text-decoration: none;
  list-style: none;
  color: var(--mainColor); /* Use your custom color variable */
  font-family: var(--fontNav); /* Use your custom font */
  transition: all 0.3s ease;
}

.res-nav .resNavItem ul li a:hover{
  text-shadow: 0 0 5px var(--mainColor), 0 0 10px var(--mainColor),
    0 0 15px var(--mainColor); /* Green glow */
  color: var(--mainColor);
}

.res-nav .offcanvas .offcanvas-header h5{
   color: var(--mainColor); /* Use your custom color variable */
  font-family: var(--fontNav);
}

.res-nav .resNavItem ul li button{
  background: transparent;
  border: 2px solid var(--mainColor);
  padding: 4px 4px 4px 4px;
}

/**! end responsive */

/***** Hero-section Section *****/
header .hero-section {
  padding: 50px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-bottom: 50px; */
}
.hero-section .hero-content span {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--secColor);
  font-family: var(--fontTitle);
}
.hero-section .hero-content h1 {
  color: var(--headColor);
  text-align: center;
  font-family: var(--fontHead);
}
.hero-section .hero-content p {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-family: var(--fontText);
  color: var(--secColor);
}
.hero-section .hero-content .hero-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fontNav);
  padding: 15px;
}

.hero-section .hero-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.hero-section .hero-content .hero-btn button {
  padding: 10px 20px;
  font-weight: var(--fontWeight);
  /* border: 2px solid transparent; */
  background-color: var(--mainColor);
  border: 2px solid #f5be32;
  transition: box-shadow 0.3s ease;
  &:hover {
    box-shadow: 0 0 8px #f5be32;
  }
}

/***** End Hero-section Section *****/

/***** Main Section *****/

main .dinning-section {
  background-color: black;
}

main .dinning-section {
  padding: 50px 25px;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
  justify-content: center;
  /* margin-bottom: 50px; */
}

.dinning-section .dinning-header span {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--secColor);
  font-family: var(--fontTitle);
}
.dinning-section .dinning-header h1 {
  color: var(--headColor);
  text-align: center;
  font-family: var(--fontHead);
}
.dinning-section .dinning-header p {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-family: var(--fontText);
  color: var(--secColor);
}

.dinning-section .dinning-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ! Dinning guest section */
.dropdown-item-gu {
  text-align: center;
  border-bottom: 1px solid black;
  padding: 3px;
}

/* ! Dinning Meal Section */

#datepicker {
  width: 15rem;
}
.dinning-section .row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
}

.dropdown-item-bre {
  text-align: center;
  border-bottom: 1px solid black;
  padding: 3px;
}

.datepicker-container input {
  width: 100%;
  padding: 15px;
  background-color: var(--mainColor);
  border: 2px solid var(--mainColor);
  border-radius: 5px;
  outline: none;
  text-align: right;
}
.datepicker-container input {
  background-image: url("/MidTown_img/icons/Today.png");
  background-position: left 10px center; /* Place the icon on the right side */
  background-repeat: no-repeat; /* Prevent repeating the background image */
  background-size: 37px 37px;
}

.datepicker-container input::placeholder {
  font-weight: bold; /* Make the placeholder text bold */
  color: #333;
  text-align: center;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid var(--mainColor) !important;
  background: var(--mainColor) !important;
  color: #777620;
}

.app-time {
  border: 1px solid #fff;
  padding: 20px 30px;
  box-shadow: 2px 4px 10px 0px #c7cacce3;
}

.option-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  position: relative;
  top: 5px;
  right: 0;
  bottom: 0;
  left: 40px;
  height: 20px;
  width: 20px;
  transition: all 0.15s ease-out 0s;
  background: #fff;
  border: 1px solid #999;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  margin-right: 0.5rem;
  outline: none;
  position: relative;
  z-index: 1000;
}
.option-input:hover {
  background: #e5e7eb;
}
.option-input:checked {
  border: 1px solid #fff;
}
.option-input:checked::before {
  color: #d9486d;
  height: 40px;
  width: 40px;
  position: absolute;
  content: "✔";
  display: inline-block;
  font-size: 12px;
  left: -1px;
  line-height: 20px;
}
.option-input:checked::after {
  -webkit-animation: click-wave 0.65s;
  -moz-animation: click-wave 0.65s;
  animation: click-wave 0.65s;
  background: #40e0d0;
  content: "";
  display: block;
  position: relative;
  z-index: 100;
}

.option-input.radio {
  border-radius: 50%;
}
.option-input.radio::after {
  border-radius: 50%;
}
.app-check {
  display: flex;
}
.app-border {
  border: 1px solid #ece9e9;
  border-radius: 7px;
  padding: 5px 7px 5px 9px;
  padding-left: 40px;
  min-height: 30px;
}

.option-input.radio:checked + .app-border {
  background: #d9486d;
}
.option-input.radio:disabled,
.option-input.radio:disabled + .app-border {
  cursor: not-allowed;
  opacity: 0.6;
}
.app-label {
  position: relative;
  top: 5px;
  margin-right: 10px;
}

/* Booking Section */

.booking-container {
  display: flex;
  gap: 10rem;
}

.table-text {
  font-size: 20px;
  font-weight: bold;
}

.dropdown-toggle {
  background-color: var(--mainColor) !important;
  color: #333 !important;
  padding: 10px 22px !important;
}

.procced-btn button {
  background-color: var(--mainColor);
  color: #333;
  padding: 10px 15px;

  border-radius: 10px;
  /* padding: 1rem; */
}

.procced-btn button span {
  font-size: 21px;
  font-weight: 600;
}

/***** End Main Section *****/

/***** Special Section *****/
.special-section {
  background: black;
}

.special-section .special-content {
  padding: 50px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-bottom: 50px; */
}
.special-section .special-content .special-head span {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--secColor);
  font-family: var(--fontTitle);
}
.special-content .special-head .special-text h1 {
  color: var(--headColor);
  text-align: center;
  font-family: var(--fontHead);
}
.special-content .special-head p {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-family: var(--fontText);
  color: var(--secColor);
}

.special-section .special-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/*****! sTART MENU Special Section *****/
.start-bg {
  background-color: #2e2e2e;
  /* box-shadow: var(--mainColor) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px; */

  /* box-shadow: var(--mainColor) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px; */
  padding: 0;
}
.mid-bg {
  background-color: black;
}

.specialmenu-img .menu-txt h1 {
  font-family: var(--fontHead);
  color: var(--headColor);
  font-size: 22px;
}
.specialmenu-img .menu-txt span {
  font-family: var(--fontText);
  color: var(--secColor);
}
.rating-sectn .fa-star {
  font-size: 24px; /* Adjust size as needed */
  color: var(--mainColor); /* Default star color */
}
.specialmenu-img .order-btn button {
  background: transparent;
  padding: 6px;
  color: var(--mainColor);
  border: 2px solid var(--mainColor);
  transition: box-shadow 0.3s ease;
  &:hover {
    box-shadow: 0 0 8px var(--mainColor);
  }
}

.main-text-contaniner {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 1.2rem;
  padding: 2rem;
}

/*****! END MENU Special Section *****/

/***** End Special Section *****/

/***** img2 Section *****/
.img-section2 {
  background-color: black;
}

/***** End img2 Section *****/

/***** specialMenu Section *****/
.specialMenu-section {
  background-color: black;
}
.specialMenu-section {
  background: black;
}

.specialMenu-section .specialMenu-content {
  padding: 50px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-bottom: 50px; */
}
.specialMenu-section .specialMenu-content .specialMenu-head span {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--secColor);
  font-family: var(--fontTitle);
}
.specialMenu-content .specialMenu-head .specialMenu-text h1 {
  color: var(--headColor);
  text-align: center;
  font-family: var(--fontHead);
}
.specialMenu-content .specialMenu-head p {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-family: var(--fontText);
  color: var(--secColor);
}

.specialMenu-section .specialMenu-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.specialMenu-Item .menu-Item .col {
  color: var(--secColor);
  background: transparent;
  border: 2px solid var(--secColor);
  transition: box-shadow 0.3s ease;
  &:hover {
    color: black;
    background: var(--mainColor);
    border: 2px solid var(--mainColor);
    box-shadow: 0 0 8px var(--mainColor);
  }
}

/*!  special dish section */
.special-dish-content {
  align-items: center;
  display: flex;
  gap: 8rem;
}

.dish-para .dish-head {
  color: var(--headColor);
  font-family: var(--fontHead);
  font-size: 2rem;
  font-weight: 500;
}

.dish-para .dish-sub-text {
  color: var(--secColor);
  font-family: var(--fontText);
  font-size: 20px;
}

.dish-para .dish-rate {
  color: var(--headColor);
  font-family: var(--fontHead);
  font-size: 2rem;
  font-weight: 600;
}

/***** End specialMenu Section *****/

/***** Image3 Section *****/
.img-section3 {
  background-color: black;
}
/* .img-section3 .text {
  position: absolute;
  bottom: 5%;
  left: 20%;
  font-size: 2rem;
  color: var(--mainColor);
} */
/***** End Image3 Section *****/

/* Start Our Story */
.our-story-text {
  color: var(--secColor);
  font-family: var(--fontTitle);
  margin-top: 0;
  margin-bottom: 0rem;
}

.our-text .our-story-head {
  color: var(--headColor);
  text-align: center;
  font-family: var(--fontHead);
}

.our-text .our-story-subhead {
  font-family: var(--fontText);
  color: var(--secColor);
}

.our-story-btn {
  border-radius: 5px;
  background: transparent;
  border: 2px solid var(--mainColor);
  transition: box-shadow 0.3s ease;
  padding: 7px 15px;
  &:hover {
    box-shadow: 0 0 8px var(--mainColor);
  }
}

.our-story-btn a {
  text-decoration: none;
  color: var(--mainColor);
  font-family: var(--fontHead);
}

.our-story-para p {
  color: var(--secColor);
}
.our-story-right {
  display: flex;
  align-items: center;
}

/* End Our Story */

/***** Footer Section *****/
.footer-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  background: url(/MidTown_img/footer.png);
  background-size: cover;
  padding-bottom: 5rem;
}
.footer-section .footer-head {
  font-size: 3rem;
  text-align: center;
  font-family: var(--fontHead);
  color: var(--headColor);
}
.footer-section .footer-address {
  display: flex;
  gap: 3rem;
}
.footer-section .footer-address .footer-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--secColor);
}
.footer-section .footer-address .footer-call {
  display: flex;
  align-items: center;
  color: var(--secColor);
}
.footer-btn .logo img {
  width: 100px;
  height: 100px;
}
.footer-section .footer-btn {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
}
.footer-section .footer-btn .resrv-btn button {
  background: var(--mainColor);
  padding: 6px;
  color: black;
  border: 2px solid var(--mainColor);
  transition: box-shadow 0.3s ease;
  &:hover {
    box-shadow: 0 0 8px var(--mainColor);
  }
}
.footer-section .footer-social a {
  text-decoration: none;
  color:  color: var(--mainColor);
}
.footer-section .footer-social {
  color: var(--mainColor);
  text-align: center;
  display: flex;
  gap: 5rem;
  text-decoration: underline;
}

/***** End Footer Section *****/
