
*, *::before, *::after {
  box-sizing: border-box;
}

.page {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: #F5E7C6;
  font-family: "Josefin Sans", sans-serif;
}


.main_div {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  background-color: black;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 10px 24px;
}

.midnight {
  font-weight: 900;
  color: #F79A19;
  font-family: "Josefin Sans", sans-serif;
  font-size: clamp(20px, 3vw, 30px);
  font-style: oblique;
  flex: 1;
}

.nav-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.home, .about, .service, .menu1, .contact, .pages {
  font-size: 14px;
  font-family: roboto, "Arial";
  font-weight: 500;
  color: white;
  cursor: pointer;
  white-space: nowrap;
}

.home { color: #F79A19; }

.pages-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
}

.pages {
  margin: 0;
}

.icon1 {
  height: 13px;
}

.book_a_table {
  font-size: 13px;
  font-family: roboto, "Arial";
  font-weight: 500;
  color: white;
  background-color: #F79A19;
  padding: 8px 18px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
}


.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 60px;
}

.background-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 5%;
  max-width: 55%;
}

.topic {
  color: white;
  font-size: clamp(32px, 5vw, 65px);
  font-family: "Caveat", cursive;
  line-height: 1.2;
  margin-bottom: 16px;
}

.subtopic {
  font-size: clamp(13px, 1.4vw, 15px);
  color: white;
  font-family: roboto, "arial";
  line-height: 1.7;
  max-width: 500px;
}

.hero-img-wrap {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 5% 40px 0;
}

.paneer {
  border-radius: 900px;
  width: min(500px, 90%);
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}


.menu-section {
  padding: 60px 5% 80px;
  display: flex;
  flex-direction: column;
  align-items: center;

}

.menu {
  font-weight: 900;
  font-size: clamp(20px, 3vw, 26px);
  color: black;
  text-align: center;
  margin-bottom: 24px;
  font-family: "Josefin Sans", sans-serif;
}

.menu-subtopics {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.menu-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 16px;
  color: black;
  cursor: pointer;
}

.active-tab {
  color: #FF6D1F;
}

.tab-icon {
  height: 20px;
}


.food_img {
 display:flex;
  gap: 10px 32px;
  justify-items: center;
}

.food-card {
  position: relative;
  width: 200px;
}

.food-photo {
  width: 200px;
  height: 200px;
  border-radius: 30px;
  object-fit: cover;
  display: block;
}

.white_box {
  background-color: white;
  padding: 10px 16px;
  position: absolute;
  top: 170px;
  left: 16px;
  right: -16px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.food-name {
  margin: 0 0 2px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Josefin Sans", sans-serif;
}

.food-price {
  margin: 0;
  color: #FF6D1F;
  font-weight: 700;
  font-size: 13px;
}

.order {
  position: absolute;
  top: 252px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgb(221, 208, 208);
  padding: 6px 18px;
  border-radius: 10px;
  font-size: 13px;
  white-space: nowrap;
  cursor: pointer;
  font-family: "Josefin Sans", sans-serif;
}


.about-section {
  background-color: black;
  padding: 60px 5%;
}

.about-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 100px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-images {
  position: relative;
  width: 220px;
  flex-shrink: 0;
  height: 460px;
}

.gulab {
  height: 190px;
  position: absolute;
  top: 0;
  left: 20px;
  object-fit: contain;
}

.momo {
  height: 230px;
  position: absolute;
  top: 179px;
  left: -109px;
  object-fit: contain;
}

.tikki {
  height: 110px;
  position: absolute;
  top: 380px;
  left: 50px;
  object-fit: contain;
}

.samosa {
  height: 140px;
  position: absolute;
  top: 200px;
  right: -30px;
  object-fit: contain;
}

.about-text {
  flex: 1;
  min-width: 260px;
}

.about_us {
  color: #F79A19;
  font-size: clamp(16px, 2vw, 22px);
  font-family: "Josefin Sans", sans-serif;
  margin-bottom: 20px;
}

.about_para {
  color: white;
  line-height: 1.9;
  font-size: clamp(14px, 1.4vw, 16px);
  font-family: "Josefin Sans", sans-serif;
  max-width: 700px;
}


.footer {
  margin-top:20px;
  width: 100%;
  background: #111;
  color: white;
  padding: 40px 5%;
  font-family: "Josefin Sans", sans-serif;
}

.footer-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 100px;
  max-width: 900px;
  margin: 0 auto;
}

.footer-col {
  min-width: 160px;
  line-height: 2;
}

.footer-col p {
  margin: 0;
}

.footer-center {
  text-align: center;
}

.footer-heading {
  font-weight: 700;
  margin-bottom: 4px !important;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}


@media (max-width: 900px) {

  .hero {
    flex-direction: column;
    justify-content: center;
    min-height: 80vh;
    text-align: center;
  }

  .hero-content {
    max-width: 90%;
    padding: 100px 5% 20px;
  }

  .subtopic {
    margin: 0 auto;
  }

  .hero-img-wrap {
    padding: 0 5% 40px;
  }

  .paneer {
    width: min(320px, 70%);
  }

  .about-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about_para {
    text-align: left;
  }
}


@media (max-width: 640px) {

  /* Hamburger menu */
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    background: black;
    padding: 12px 0;
    gap: 12px;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-content {
    padding: 80px 5% 16px;
  }

  .topic {
    font-size: clamp(28px, 8vw, 40px);
  }

  .food_img {
    grid-template-columns: 1fr 1fr;
    gap: 70px 16px;
  }

  .food-card {
    width: 100%;
  }

  .food-photo {
    width: 100%;
    height: 160px;
  }

  .white_box {
    left: 8px;
    right: 8px;
    top: 150px;
  }

  .order {
    top: 230px;
  }

  .about-images {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .food_img {
    grid-template-columns: 1fr;
  }
}
