:root {
  --primary: #009fcb;
  --secondary: #009fcb;
  --white: #ffffff;
  --black: #000000;
}
span {
  display: inline-block;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  color: var(--white);
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "Inter", sans-serif;
}
header {
  padding: 50px 0;
}
img {
  vertical-align: bottom;
}
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}

.pc_navbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  position: relative;
}

.social_media_icon {
  max-width: 28.85px;
  transition: all 0.5s ease-out;
}

.social_media_icon:hover {
  transform: scale(1.2);
}

.social_media_icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.menu_toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  width: 30px;
  height: 30px;
}

.menu_icon,
.menu_icon::before,
.menu_icon::after {
  display: block;
  background-color: var(--white);
  height: 3px;
  width: 100%;
  border-radius: 3px;
  transition: all 0.3s ease;
  position: relative;
}

.menu_icon::before,
.menu_icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu_icon::before {
  top: -8px;
}

.menu_icon::after {
  top: 8px;
}

/* Transform to cross */
.menu_toggle.active .menu_icon {
  background-color: transparent;
}

.menu_toggle.active .menu_icon::before {
  transform: rotate(45deg);
  top: 0;
}

.menu_toggle.active .menu_icon::after {
  transform: rotate(-45deg);
  top: 0;
}

/* Mobile Menu */
.mobile_menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 160%;
  left: 0;
  right: 0;
  background-color: var(--black);

  padding: 20px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  height: 0;
}

.mobile_menu.show {
  /* display: flex; */
  opacity: 1;
  visibility: visible;
  height: 310px;
}

.mobile_menu a {
  margin: 10px 0;
}
button {
  cursor: pointer;
}

.nav_menu {
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
  color: var(--white);
  text-transform: capitalize;
  transition: all 0.5s ease;
  position: relative;
}
.nav_menu::before {
  content: "";
  width: 50px;
  height: 0;
  background-color: transparent;
  position: absolute;
  bottom: -5px;
  transition: all 0.5s ease-out;
}
.nav_menu:hover::before {
  background-color: var(--primary);
  height: 2px;
}
.nav_social img {
  transition: all 0.5s ease;
}
.nav_social img:hover {
  transform: scale(1.2);
}

.social_icons {
  display: flex;
  gap: 30px;
}
/* Media Queries */
@media screen and (max-width: 991px) {
  .site_title {
    display: none;
  }

  .social_media_icons {
    display: none;
  }

  .menu_toggle {
    display: block;
  }

  .navbar_logo {
    max-width: 100px;
  }
}

@media screen and (max-width: 572px) {
  .navbar_logo {
    max-width: 75px;
  }
}
img,
a {
  display: inline-block;
  text-decoration: none;
}
a {
  transition: all 0.5s ease-in;
}
.hero_section {
  padding: 180px 0 100px;
  background-image: url("./assets/shared/hero_bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: -130px;
}
.hero_container {
  text-align: center;
}
.hero_heading {
  margin: 90px auto 25px;
  color: var(--white);
  font-size: 72px;
  max-width: 750px;

  line-height: 75px;
}
.hero_heading span {
  color: var(--primary);
  line-height: 75px;
}
.hero_desc {
  font-size: 24px;
  color: var(--white);
  max-width: 750px;
  margin: 0 auto;
}
.hero_btn {
  font-size: 24px;
  padding: 16px 32px;
  font-weight: 500;
  margin-top: 60px;
  color: var(--white);
  background-color: var(--primary);
  border-radius: 8px;
}
.hero_btn:hover {
  background-color: var(--white);
  color: var(--primary);
}
.hero_red_bg {
  background-image: url("/assets/shared/contact_bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  height: 70px;
  width: 100%;
}
.menu_section {
  padding: 80px 0;
}

.menu_heading_section {
  display: flex;
  gap: 20px;
  align-items: end;
  justify-content: space-between;
}
.menu_heading {
  font-size: 40px;
  line-height: 74px;
  color: var(--black);
}
.menu_btn {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
}
.menu_btn:hover {
  color: var(--black);
}
ul {
  list-style: none;
  margin-top: 25px;
}
.menus {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.menu {
  width: calc(25% - 15px);
  position: relative;
}
.menu_img {
  width: 100%;
  border-radius: 26px;
}
.menu_hover {
  position: absolute;
  width: 100%;
  height: 0;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-direction: column;
  background-color: #00000070;
  padding: 20px;
  border-radius: 26px;
  opacity: 0;
  transition: all 0.5s ease-in;
}
.menu_name {
  font-size: 22px;
  color: var(--white);
}
.menu_price {
  font-size: 18px;
  padding: 4px 14px;
  background-color: var(--white);
  color: var(--primary);
  border-radius: 5px;
}
.menu:hover .menu_hover {
  opacity: 100%;
  height: 100%;
}
.food_section {
  padding: 100px 0;
  background-image: url(./assets/shared/contact_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
.food_container {
  display: flex;
  gap: 54px;
  align-items: center;
}
.food_left {
  width: 100%;
  display: flex;
  gap: 40px;
}
.info_img {
  width: calc(50% - 20px);
}
.food_right {
  width: 100%;
}
.food_heading {
  font-size: 50px;
  text-transform: capitalize;
  margin-bottom: 30px;
}
.food_desc {
  font-size: 18px;
  line-height: 28px;
}
.time_section {
  padding: 100px 0;
}
.time_container {
  background-color: var(--black);
  display: flex;
  align-items: center;
  gap: 40px;
  border-radius: 10px;
}
.time_left {
  width: 100%;
  padding: 71px 0 71px 90px;
}
.timeframe {
  padding: 28px 90px 28px 100px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 10;
}
.time_bold {
  display: block;
  font-weight: 700;
  font-size: 24px;
}
.time_bold2 {
  display: block;
  font-weight: 700;
  font-size: 16px;
}
.time_regular {
  font-size: 17px;
}
.time_regular2 {
  font-size: 10px;
}
.timeframe::before {
  content: url("./assets/shared/time.webp");
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}
.df {
  margin-bottom: 30px;
}
.time_right {
  width: 100%;
}
.contact_section {
  background-image: url("./assets/shared/contact_bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
}
.contact_container {
  display: flex;
  gap: 20px;
  align-items: center;
}
.contact_left {
  width: 100%;
  max-width: 680px;
}
.contact_heading {
  font-size: 50px;
}
.contact_desc {
  font-size: 18px;
  margin: 20px 0 40px;
}
.contact_btns {
  display: flex;
  gap: 20px;
}
.contact_btn {
  font-size: 24px;
  color: var(--primary);
  padding: 12px 30px;
  background-color: var(--white);
  border-radius: 5px;
  font-weight: 600;
}
.contact_btn:hover {
  background-color: #dbc1c1;
}
.contact_input {
  width: 100%;
  margin-bottom: 40px;
  padding: 8px 0;
  outline: none;
  color: var(--primary);
  font-size: 16px;
  border: none;
  border-bottom: 2px solid var(--primary);
}
.contact_form {
  padding: 40px;
  border-radius: 10px;
  background-color: var(--white);
}
.contact_submit_btn {
  font-size: 16px;
  font-weight: 600;
  padding: 15px;
  background-color: var(--primary);
  width: 100%;
  border: none;
  border-radius: 5px;
  transition: all 0.5s ease-in;
}
.contact_submit_btn:hover {
  background-color: var(--black);
}
.thanks_section {
  padding: 210px 0 100px;
}
.thanks_container {
  background-image: url("./assets/shared/thanks_bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 138px 110px;
  border-radius: 30px;
}
.thanks_img {
  position: absolute;
  bottom: 0;
  left: 0;
}
.thanks_texts {
  margin-left: 640px;
}
.thanks_heading {
  font-size: 50px;
  margin-bottom: 20px;
}
.footer_container {
  display: flex;
  gap: 100px;
  justify-content: space-between;
  align-items: end;
}
footer {
  border-top: 40px solid var(--primary);
  padding: 80px 0;
}
.footer_para {
  color: var(--black);
  margin: 8px 0 28px;
  max-width: 380px;
}
.footer_para span {
  font-weight: 600;
  color: var(--primary);
}
.footer_socials {
  display: flex;
  gap: 20px;
}
.footer_middle {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer_menu {
  color: var(--black);
  font-weight: 600;
}
.footer_menu:hover {
  color: var(--primary);
}
.map {
  min-height: 230px;
  width: 480px;
  border-radius: 10px;
}
.time_regular2 {
  max-width: 300px;
}
.hero_btns {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.menu_page_section {
  padding: 80px 0;
}
.menu_page_heading {
  color: var(--black);
  font-size: 40px;
  position: relative;
  width: fit-content;
}
.menu_page_heading:after {
  content: "";
  width: 100px;
  height: 3px;
  background-color: var(--primary);
  position: absolute;
  border-radius: 20px;
  right: -10px;
  bottom: 10px;
  transform: translateX(100%);
}
.menu_lists {
  margin: 20px 0;
  display: flex;
  gap: 10px 46px;
  flex-wrap: wrap;
}
.li_menu_list {
  width: calc(50% - 23px);
  padding: 10px 0;
  border-bottom: 1px solid var(--black);
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}
.menu_item_name {
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
}
.menu_item_price {
  font-size: 20px;
  text-wrap: nowrap;

  color: var(--primary);
}
@media screen and (max-width: 991px) {
  .li_menu_list {
    width: 100%;
  }
  header {
    background-color: var(--black);
    position: relative;
  }
  .hero_btns {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .hero_heading {
    margin: 25px auto 15px;
    font-size: 60px;
    line-height: 60px;
  }
  .hero_desc {
    font-size: 16px;
  }
  .hero_btn {
    margin-top: 30px;
    width: 100%;
    max-width: 600px;
  }
  .hero_btn {
    font-size: 20px;
    padding: 10px;
  }
  .menu {
    width: calc(50% - 10px);
  }
  .menu_hover {
    opacity: 100%;
    height: 100%;
  }
  .menu_section,
  .food_section,
  .time_section,
  .contact_section,
  .thanks_section,
  footer {
    padding: 50px 0;
  }
  .food_container {
    flex-direction: column;
  }
  .food_right {
    text-align: center;
  }
  .food_heading {
    font-size: 42px;
    margin-bottom: 10px;
  }
  .time_right {
    display: none;
  }
  .timeframe {
    width: fit-content;
    margin: 0 auto;
  }
  .contact_container {
    flex-direction: column;
  }
  .contact_heading {
    font-size: 42px;
  }
  .contact_desc {
    font-size: 16px;
    margin: 20px 0 25px;
  }
  .contact_btns {
    flex-direction: column;
    text-align: center;
  }
  .thanks_img {
    display: none;
  }
  .thanks_texts {
    margin-left: 0;
  }
  .thanks_container {
    padding: 50px;
    text-align: center;
  }
  header {
    padding: 20px 0;
  }
  .footer_container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }
  .footer_socials {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .timeframe::before {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  .menu_item_name,
  .menu_item_price {
    font-size: 16px;
  }
  .map {
    width: 100%;
  }
  .hero_heading {
    margin: 25px auto 15px;
    font-size: 42px;
    line-height: 40px;
  }
  .menu {
    width: 100%;
  }
  .menu_heading {
    font-size: 32px;
  }
  .menu_heading_section {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .food_heading,
  .contact_heading,
  .thanks_heading {
    font-size: 34px;
  }
  .food_desc {
    font-size: 16px;
    line-height: 23px;
  }
  .time_left {
    padding: 30px;
  }
  .timeframe {
    width: 100%;
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .contact_form {
    padding: 20px;
  }
  .contact_left {
    text-align: center;
  }
}
@media screen and (max-width: 440px) {
  .time_bold {
    font-size: 22px;
  }
  .food_left {
    display: none;
  }
  .menu_item_price {
    font-size: 14px;
  }
}
.desc_sec {
  margin-bottom: 50px;
}
.heading {
  color: var(--primary);
  font-size: 34px;
}
.desc {
  color: var(--black);
  padding: 10px 0;
  text-align: justify;
}
.desc a {
  color: var(--primary);
  transition: all 0.5s ease;
}
.desc a:hover {
  opacity: 0.8;
}
