:root {
  --main-yellow: rgba(248, 166, 22, 1);
  --bg-yellow: rgba(248, 166, 22, 0.5);
  --header-font-size: 150px;
  --subheader-font-size: 100px;
  --p-font-size: 30px;
  --body-font: "Roboto Condensed", sans-serif;
}
@keyframes scrollAnimation {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* css-reset */
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
body {
  animation: scrollAnimation 1s ease-in-out;
  background-color: black;
  color: white;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-family: "M PLUS Rounded 1c", sans-serif;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
#root,
#__next {
  isolation: isolate;
}
/* header style */
main {
  background-image: url(/resource/img/main-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 16px;
}
nav {
 padding-inline: 8px;
  background-color: var(--bg-yellow);
  display: flex;
  justify-content: space-between;
  align-items: center;
 
}
nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
  padding-inline-end: 20px;
  font-size: 20px;
}
nav a{
  text-decoration: none;
   display: flex;
  list-style: none;
  gap: 20px;
  padding-inline-end: 10px;
  font-size: 20px;
  color: #fff;
}
nav ul :not(:first-child) {
  border-left: 2px solid #ffffff50;
  padding-left: 20px;
}
/* landing -style */
.land-page div {
  padding: 0%;
  margin: 0%;

}
.land-page {
  margin-inline-end: 8px;
  background-image: url(/resource/img/landing-page-bg.jpg);
  background-size: 100%;
  background-blend-mode: lighten;
  background-repeat: no-repeat;
  width: 100%;
  height: 400px;
  display: flex;
  gap: 120px;
  margin-block-end: 0%;
}
.land-page img {
  width: 200px;
  height: 200px;
  margin-inline-start: 30px;

}
.land-page h1 {
  font-family: "Lobster", sans-serif;
  font-size: var(--subheader-font-size);
  line-height: 0.9;
  margin-block-start: 50px;
  stroke: 1px rgba(248, 166, 22, 1);
  -webkit-text-stroke: 1px rgba(248, 166, 22, 1);
  font-weight: bolder;
  padding: 0%;
}
.land-page h1 span {
  font-size: var(--header-font-size);
  margin-bottom: 0%;
}
.land-page p {
  font-size: 20px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  stroke: none;
  -webkit-text-stroke: none;
  font-weight: bold;
  display: block;
  margin-inline-start: 600px;
  margin-top: 0;
  margin-bottom: 0;
}
/* description Paragraph */
.first-para {
  display: block;
  margin-top: 0%;
  text-align: center;
  font-size: 20px;
  margin-top: 0px;
  /* font-weight: 200; */
  font-family: var(--body-font);
  font-style: italic;
  padding-top: 16px;
  padding-bottom: 16px;
}

.para {
  width: 70%;
  margin: 0 auto;
}
.fstbody {
  /* background-image: url(/resource/img/Fst-bg-pics.png); */
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0;
}
@media only screen and (max-width: 1000px) {
  .first-para {
    font-size: 15px;
  }
}
@media only screen and (max-width: 768px) {
  .first-para {
    font-size: 12px;
  }
}

/* best sellers section */

.best-seller {
  margin: 0 auto;
  margin-top: 16px;
}
.best-seller h3 {
  font-size: 24px;
  font-weight: bolder;
  font-family: var(--body-font);
  text-align: center;
  margin-bottom: 16px;
}
@media only screen and (max-width: 1000px) {
  .best-seller h3 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .best-seller h3 {
    font-size: 15px;
  }
}

.best-seller-role1 {
  animation: scrollAnimation 2s ease-in-out;
  margin-bottom: 16px;
  display: flex;
  gap: 16px;
  justify-content: center;
}
.b-s-box1 {
  width: 250px;
  height: 350px;
  border-radius: 0px 0px 50px 50px;
  border: 1px solid #f8a616;
  background: #d9d9d980;
}
.b-s-box1 p {
  margin-top: 8px;
  text-align: center;
  font-family: Rounded Mplus 1c Bold;
  font-size: 15px;
  font-weight: 700;
  color: #000;
}
.best-seller-role2 {
  animation: scrollAnimation 0.5s ease-in-out;
  margin-bottom: 16px;
  display: flex;
  gap: 16px;
  justify-content: center;
}
@media only screen and (max-width: 1000px) {
  .b-s-box1 {
    width: 200px;
    height: 280px;
    font-size: 12px;
    border-radius: 0px 0px 35px 35px;
  }
  .b-s-box1 p {
    font-size: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .best-seller-role2,
  .best-seller-role1 {
    margin-bottom: 8px;
    gap: 8px;
  }
  .b-s-box1 {
    width: 150px;
    height: 220px;
    font-size: 10px;
    border-radius: 0px 0px 25px 25px;
    gap: 8px;
  }
  .b-s-box1 p {
    font-size: 10px;
    /* padding-bottom: 8px; */
  }
}
@media only screen and (max-width: 576px) {
  .b-s-box1 {
    width: 100px;
    height: 150px;
    border-radius: 0px 0px 20px 20px;
    gap: 8px;
  }
  .b-s-box1 p {
    font-size: 8px;
    /* padding-bottom: 8px; */
  }
}
.btn-container {
  margin-top: 32px;
  gap: 16px;
  display: flex;
  justify-content: center;
}
.btn2 {
  width: 378px;
  height: 70px;
  flex-shrink: 0;
  border-radius: 50px;
  background: #f8a616;
  padding: 0;
  color: #fff;
  text-align: center;
  font-family: Roboto Condensed;
  font-size: 28px;
  font-weight: 700;
}
@media only screen and (max-width: 1000px) {
  .btn2 {
    width: 278px;
    height: 50px;
    border-radius: 40px;
    font-size: 23px;
  }
}
@media only screen and (max-width: 768px) {
  .btn2 {
    width: 220px;
    height: 40px;
    border-radius: 30px;
    font-size: 15px;
  }
  .btn-container {
    margin-top: 16px;
    gap: 8px;
    display: flex;
    justify-content: center;
  }
}
@media only screen and (max-width: 576px) {
  .btn2 {
    width: 160px;
    height: 30px;
    border-radius: 20px;
    font-size: 10px;
  }
}
/* menu style */
.menu-box h1,
.app-section h1,
.event-header {
  color: #fff;
  text-align: center;
  font-family: Rounded Mplus 1c Bold;
  font-size: 100px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media only screen and (max-width: 1000px) {
  .menu-box h1,
  .app-section h1,
  .event-header{
    font-size: 80px;
  }
}
@media only screen and (max-width: 768px) {
  .menu-box h1,
  .app-section h1,
  .event-header{
    font-size: 60px;
  }
}
@media only screen and (max-width: 576px) {
  .menu-box h1,
  .app-section h1 ,
  .event-header{
    font-size: 35px;
  }
}
.food-menu {
  width: 377px;
  height: 400px;
  flex-shrink: 0;
  border-radius: 0px 0px 50px 50px;
  border: 3px solid #f8a616;
}
.food-menu ul li {
  display: block;
  color: #fff;
  font-family: Rounded Mplus 1c Bold;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
.food-menu h3 {
  color: #fff;
  font-family: Rounded Mplus 1c Bold;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 92.4px */
  margin-left: 30px;
  margin-top: 8px;
}
.menu-role {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-block-start: 16px;
  flex-wrap: wrap;
}
.menu-box {
  /* background-image: url(/resource/img/second-bg.png); */
  background-size: 100%;
  background-blend-mode: lighten;
  background-repeat: repeat-y;
  width: 100%;
  height: 100%;
  padding-bottom: 16px;
}
@media only screen and (max-width: 1000px) {
  .food-menu {
    width: 300px;
    height: 320px;
    border-radius: 0px 0px 45px 45px;
  }
}
.food-menu ul li {
  font-size: 18px;
}
.food-menu h3 {
  font-size: 30px;

  line-height: 120%; /* 92.4px */
  margin-left: 30px;
  margin-top: 8px;
  margin-bottom: 8px;
}
@media only screen and (max-width: 768px) {
  .food-menu {
    width: 250px;
    height: 270px;
    border-radius: 0px 0px 40px 40px;
  }
  .food-menu ul li {
    font-size: 15px;
  }
  .food-menu h3 {
    font-size: 20px;

    line-height: 120%; /* 92.4px */
    margin-left: 30px;
    margin-top: 8px;
  }
}
@media only screen and (max-width: 576px) {
  .food-menu {
    width: 200px;
    height: 220px;
    border-radius: 0px 0px 30px 30px;
  }
  .food-menu ul li {
    font-size: 12px;
  }
  .food-menu h3 {
    font-size: 18px;
    line-height: 80%; /* 92.4px */
    margin-left: 30px;
    margin-top: 8px;
  }
}
/* appreciation style */
.app {
  /* background-image: url(/resource/img/last-bg.png); */
  background-repeat: repeat-y;
  background-size: 100%;
}
.app-section {
  width: 1000px;
  height: fit-content;
  border-radius: 0px 0px 50px 50px;
  border: 3px solid #f8a616;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(18, 17, 17, 0.49) 0%,
    rgba(255, 255, 255, 0.27) 33.33%,
    rgba(26, 23, 23, 0.48) 71.88%
  );
  margin: 0 auto;
  margin-top: 32px;
  padding-bottom: 16px;
}
.app-section div {
  display: flex;
  gap: 16px;
}
.app-section p {
  color: #d9d9d9;
  font-family: Rounded Mplus 1c Bold;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  margin-top: 80px;
  margin-right: 16px;
}
.app-section img {
  width: 35%;
}
@media only screen and (max-width: 1000px) {
  .app-section {
    width: 800px;
    height: fit-content;
    margin: 0 auto;
    margin-top: 32px;
  }
  .app-section p {
    font-size: 15px;
    margin-top: 60px;
    margin-right: 16px;
  }
  .app-section img {
    width: 35%;
  }
}
@media only screen and (max-width: 768px) {
  .app-section {
    width: 700px;
    height: 400px;
    margin: 0 auto;
    margin-top: 16px;
  }
  .app-section p {
    font-size: 12px;
    margin-top: 40px;
    margin-right: 16px;
  }
  .app-section img {
    width: 35%;
  }
}
@media only screen and (max-width: 576px) {
  .app-section {
    width: 80%;
    height: fit-content;
    margin: 0 auto;
    /* margin-top: 8px; */
    padding: 8px;
  }
  .app-section p {
    font-size: 10px;
    margin-top: 8px;
    margin-right: 8px;
    padding-bottom: 20px;
  }
  .app-section img {
    width: 40%;
    margin: 0 auto;
    margin-bottom: 0%;
  }
  .app-section div {
    flex-wrap: wrap;
  }
}
/* footer style */
footer {
  height: 50px;
  margin-top: 100px;
  background-color: rgba(248, 166, 22, 0.49);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 auto;
  width: 100%;
}
footer div {
  display: flex;
}
footer img {
  width: 30px;
  height: 30px;
}
#contact {
  gap: 10px;
}
footer a,
footer p {
  color: #0a0a0a;
  font-family: Rounded Mplus 1c Bold;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
}
.fhat {
  margin-top: 8px;
  color: #d9d9d9;
  font-family: Rounded Mplus 1c Bold;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  justify-content: center;
}

@media only screen and (max-width: 1000px) {
  footer a,
  footer p {
    font-size: 20px;
  }
  footer img {
    width: 25px;
    height: 25px;
  }
  .fhat {
    font-size: 20px;
  }
}
@media only screen and (max-width: 768px) {
  footer a,
  footer p {
    font-size: 15px;
  }
  footer img {
    width: 20px;
    height: 20px;
  }
  footer {
    height: 30px;
    margin-top: 75px;
  }
  .fhat {
    font-size: 15px;
  }
}
@media only screen and (max-width: 576px) {
  footer a,
  footer p {
    font-size: 10px;
  }
  footer img {
    width: 15px;
    height: 15px;
    gap: 2px;
  }
  footer {
    height: 20px;
    margin-top: 50px;
  }
   #contact{
    gap: 2px;
  }
}
main{padding-inline:8px;}