* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  color: black;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

body {
  overflow-x: hidden;
}

.headerbar {
  display: none;
  /* headerbar is hidden */
}

.searchicon {
  display: block;
}

.bar {
  font-size: 18px;
  display: none;
}

/* Header for laptop (start) */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 0 7vw;
  background-color: white;
  border-bottom: 2px solid rgb(252, 196, 132);
  box-shadow: 0 2px 20px rgb(253, 124, 124);
}

.header ul {
  display: flex;
  align-items: center;
}

.header ul li:hover {
  color: rgb(253, 57, 8);
}

.header ul li i:hover {
  color: rgb(253, 57, 8);
}

.nav ul li {
  padding: 0 15px;
  font-size: 14px;
  font-weight: bold;
}

.account {
  flex: 0.1;
}

.account ul {
  display: flex;
  justify-content: end;
}

.account ul li {
  padding: 0 15px;
  font-size: 18px;
}

.logo img {
  width: 120px;
}

.bar i:hover {
  color: rgb(253, 57, 8);
}

.search {
  width: 200px;
  display: none;
  justify-content: center;
}

.search input {
  width: 100%;
  outline: none;
  border: none;
  padding: 5px;
}

.srchicon {
  display: block;
  background-color: rgb(255, 210, 210);
  padding: 4px 5px;
  cursor: pointer;
}

/* Home page  */

.home,
.about,
.menu {
  background-color: rgb(248, 232, 217);
  padding: 0 7vw;
}

/* section 1 */

.main_slide {
  display: flex;
  align-items: center;
  flex-wrap: wrap-reverse;
}

.main_slide div:nth-child(2) {
  flex: 1;
  display: flex;
  justify-content: center;
  padding-top: 40px;
}

.main_slide div:nth-child(2) img {
  width: min(45vw, 500px);
  max-width: 100%;
  height: auto;
}

.main_slide div:nth-child(1) {
  padding-top: 20px;
  flex: 1;
  font-size: 30px;
}

.main_slide div:nth-child(1) p {
  font-size: 13px;
  padding: 20px 0;
}

.main_slide div:nth-child(1) span {
  color: rgb(253, 57, 8);
  text-decoration: underline;
  text-underline-offset: 10px;
  text-decoration-color: rgb(253, 176, 34);
}

/* Button CSS */

.red_btn {
  display: inline-block;
  text-align: center;
  cursor: pointer;
  margin-top: 20px;
  width: 160px;
  font-weight: bold;
  color: white;
  line-height: 50px;
  background-color: rgb(253, 77, 8);
  border-radius: 5px;
  border: 1px solid rgb(253, 77, 8);
  box-shadow: 0 10px 15px rgb(250, 120, 69);
  transition: all 0.2s;
}

.red_btn i {
  color: white;
}

.red_btn:hover {
  background-color: white;
  box-shadow: 0 2px 15px rgb(250, 120, 69);
  border: 1px solid rgb(253, 77, 8);
  color: rgb(253, 77, 8);
}

.red_btn:hover i {
  color: rgb(253, 77, 8);
}

.white_btn {
  cursor: pointer;
  margin-top: 20px;
  width: 160px;
  font-weight: bold;
  color: rgb(253, 77, 8);
  line-height: 50px;
  border: 1px solid rgb(253, 77, 8);
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 2px 15px rgb(250, 120, 69);
  transition: all 0.2s;
}

.white_btn:hover {
  color: white;
  background-color: rgb(253, 77, 8);
  box-shadow: 0 10px 15px rgb(250, 120, 69);
}

/* Section 2 */

.food-items {
  margin: 70px 0;
  padding: 20px 0;
  background-color: white;
  border-radius: 30px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.item {
  width: 250px;
  padding: 30px;
  text-align: center;
}

.item div {
  height: 160px;
}

.item img {
  width: 160px;
  margin-bottom: 15px;
}

.item p {
  font-size: 12px;
  margin-top: 15px;
  margin-bottom: 10px;
}

.item .red_btn {
  width: 120px;
  line-height: 35px;
}

.item .white_btn {
  width: 120px;
  line-height: 35px;
}

/* Section 3 */

.main_slide2 {
  margin: 80px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.foodimg {
  flex: 0.5;
}

.foodimg img {
  max-width: 500px;
  width: 45vw;
  animation: float-soft 4.5s ease-in-out infinite;
  filter: drop-shadow(0 18px 16px rgba(94, 42, 20, 0.2));
}

.question {
  flex: 0.5;
  flex-direction: column;
  margin-left: 40px;
}

.question h2 {
  font-size: 35px;
  margin-bottom: 15px;
}

.q-ans {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 15px 0;
  cursor: pointer;
}

.q-ans div:first-child {
  padding: 10px;
  border-radius: 50%;
  height: 65px;
  text-align: center;
  background-color: white;
  margin-right: 20px;
}

.q-ans img {
  width: 45px;
}

.q-ans div:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.q-ans div:nth-child(2) p {
  margin-top: 10px;
  font-size: 13px;
}

/* Section 4 */

.main_slide3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.main_slide3 .fav-head {
  text-align: center;
  width: 450px;
  margin-bottom: 30px;
}

.main_slide3 .fav-head h3 {
  font-size: 30px;
  padding: 20px 0;
}

.main_slide3 .fav-head p {
  font-size: 13px;
  text-align: center;
}

.main_slide3 .fav-food {
  margin: 30px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  width: 90%;
}

.main_slide3 .fav-food .item {
  background-color: white;
  border-radius: 5px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(119, 119, 119, 0.438);
}

.main_slide3 .fav-food .item {
  width: 220px;
  padding: 15px;
  padding-top: 20px;
  text-align: center;
  cursor: pointer;
}

.main_slide3 .fav-food .item div {
  height: 160px;
  margin-bottom: 15px;
}

.main_slide3 .fav-food .item img {
  width: 160px;
  margin-bottom: 15px;
}

.main_slide3 .fav-price {
  color: red;
  font-weight: bold;
  font-size: 15px;
}

.main_slide3 .dsgn {
  background-color: rgb(255, 214, 176);
  height: 50%;
  width: 100%;
  position: absolute;
  z-index: -1;
  bottom: 0;
  border-radius: 10px;
}

/* Section 5 */

.main_slide4 {
  margin-top: 270px;
  display: flex;
  flex-wrap: wrap-reverse;
}

.main_slide4 .chef-feed {
  flex: 0.5;
  margin-top: 30px;
}

.main_slide4 .chef {
  flex: 0.5;
  text-align: right;
}

.main_slide4 .chef img {
  margin-top: -130px;
  width: 50vw;
  max-width: 490px;
}

.main_slide4 .chef-feed h2 {
  font-size: 32px;
  margin-bottom: 25px;
}

.main_slide4 .chef-feed p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 10px;
}

.main_slide4 .chef-detail {
  margin-top: 20px;
  display: flex;
  margin: 25px 0;
  align-items: center;
}

.main_slide4 .chef-detail img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
  border: 4px solid white;
}

.main_slide4 .chef-detail h6 {
  font-size: 14px;
}

.main_slide4 .chef-detail p {
  font-size: 11px;
  color: red;
}

.main_slide4 .chef-vic {
  display: flex;
  align-items: center;
  padding: 25px 20px;
  background-color: rgb(255, 219, 185);
  border-radius: 0 100px 0 0;
  margin-top: 40px;
  width: 100%;
}

.main_slide4 .chef-vic div {
  display: flex;
  align-items: center;
  margin-right: 20px;
  flex: 0.5;
  height: 27px;
  overflow: hidden;
}

.main_slide4 .chef-vic div i,
.main_slide4 .chef-vic div h4 {
  font-size: 27px;
  margin-right: 8px;
}

.main_slide4 .chef-vic div h4 {
  color: red;
}

.main_slide4 .chef-vic div p {
  font-size: 11px;
  padding-top: 8px;
  line-height: 13px;
}

/* Section 6 */

.letter {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 100px 0;
}

.letter-head {
  flex: 0.5;
}

.letter-head h2 {
  font-size: 30px;
}

.letter-head span {
  color: red;
}

.letter-input {
  margin-top: 20px;
  display: flex;
  flex: 1 1 320px;
  min-width: 0;
}

.letter-input div {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  background-color: rgb(255, 219, 185);
}

.letter-input input {
  font-size: 15px;
  padding: 10px;
  outline: none;
  width: 100%;
  border: none;
  background-color: rgb(255, 219, 185);
}

.letter-input .red_btn {
  margin: 0;
  font-size: 18px;
  box-shadow: none;
  border-radius: 0 10px 10px 0;
}

/* Footer Start here  */

.footer {
  padding: 60px 0;
  border-top: 2px solid rgb(252, 184, 107);
  background-color: whitesmoke;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}

.footer-1 .logo img {
  width: 200px;
}

.footer-1 p {
  cursor: pointer;
  font-size: 25px;
  padding: 2px;
  color: black;
  font-family: "Verdana, Geneva, Tahoma, sans-serif";
}

.footer-2 {
  text-align: center;
  cursor: pointer;
}

.footer-2 h2 {
  font-family: "Verdana, Geneva, Tahoma, sans-serif";
}

.footer-2 img {
  width: 250px;
  margin-bottom: 5px;
}

/* Signup/signin Form */

.sign {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(8px);
  display: none;
  justify-content: space-around;
  align-items: center;
}

.sign-box {
  transition: all 0.4s;
  background-color: white;
  max-width: 500px;
  width: 500px;
  border-radius: 20px;
  padding: 35px;
  transform: scale(0);
}

.sign-box h3 {
  text-align: center;
  font-size: 28px;
  color: rgb(255, 72, 0);
  padding-bottom: 20px;
}

.sign-box form input {
  padding: 5px;
  margin-top: 5px;
  margin-bottom: 15px;
  width: 100%;
  font-size: 14px;
  outline: none;
}

.sign-box .signin form input {
  margin-bottom: 20px;
}

.sign-box .signin form input:last-of-type {
  margin-top: 20px;
}

.sign-box form input:last-of-type {
  background-color: rgb(253, 128, 78);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  border-radius: 5px;
  line-height: 30px;
  outline: none;
  margin-bottom: 30px;
}

.sign-box form input:last-of-type:hover {
  background-color: rgb(253, 99, 38);
}

.sign-box form label {
  font-size: 16px;
  font-weight: bold;
  color: rgb(46, 46, 46);
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

.sign-box p {
  font-size: 13px;
  color: rgb(252, 30, 30);
  cursor: pointer;
  margin-bottom: 5px;
  text-align: center;
}

.sign-box p:hover {
  text-decoration: underline;
}

.sign-box .form-message {
  margin-top: 12px;
  color: #157347;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}

.sign .bar {
  display: block;
  position: fixed;
  top: 30px;
  right: 50px;
  font-size: 30px;
  cursor: pointer;
}

.signin {
  display: none;
}

/*Book table page CSS*/

.table {
  width: 100%;
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background: url(./images/table2.jpg) center / cover;
}

.table .sign {
  height: 100%;
  width: 100%;
  position: relative;
  display: block;
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.table .sign-box {
  background-color: white;
  max-width: 500px;
  width: calc(100% - 32px);
  border-radius: 20px;
  padding: 35px;
  padding-bottom: 10px;
  transform: scale(1);
  box-shadow: 0 0 10px rgba(32, 32, 32, 0.384);
}

.table .signup h3 {
  text-align: left;
}

/* Food menu page CSS*/

.menu1 {
  padding: 100px 0;
  padding-top: 50px;
}

.menu h1 {
  font-size: 3rem;
  font-family: cursive;
  text-align: center;
  padding: 30px;
  padding-top: 20px;
}

.menu .fav-food {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.menu .item {
  background-color: white;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  height: 280px;
  margin-top: 40px;
  margin-bottom: 20px;
  transition: all 0.5s;
  box-shadow: 0 2px 5px rgb(53, 0, 0);
  cursor: pointer;
}

.menu .item div {
  width: 100%;
}

.menu .item:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 10px rgb(53, 0, 0);
}

.menu .item div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu .item h3 {
  padding: 15px;
  padding-bottom: 0px;
}

.menu .item p {
  font-size: 12px;
  padding: 0 15px;
  margin-top: 10px;
  margin-bottom: 5px;
  text-align: left;
}

.menu .item .fav-price {
  font-size: 17px;
  color: red;
  padding-bottom: 10px;
  text-align: right;
  margin: 5px 0;
  font-weight: bold;
}

/* CSS code for Tablet */

@media only screen and (max-width: 768px) {
  .header .nav,
  .header .account {
    display: none;
    /* header for laptop hidden */
  }
  .search {
    width: 60vw;
  }
  .bar {
    display: block;
    cursor: pointer;
  }
  /* Hidden headerbar  */
  .headerbar {
    overflow: hidden;
    transition: right 0.5s;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    width: 100%;
    right: -100%;
    background-color: rgb(252, 231, 216);
    height: 100vh;
  }
  .headerbar .nav,
  .headerbar .account {
    display: block;
    font-size: 18px;
  }
  .bar .fa-xmark {
    display: none;
    cursor: pointer;
    top: 20px;
    right: 5vw;
    position: absolute;
    font-size: 25px;
  }
  .headerbar .nav ul {
    flex-direction: column;
    margin-top: 10px;
    text-align: center;
  }
  .headerbar .nav li {
    width: 96vw;
    margin: 10px 0;
    padding: 15px 30px;
    box-shadow: 0 2px 15px rgb(253, 193, 169);
    font-size: 15px;
    margin-top: 5px;
    transition: all 0.7s;
  }
  .headerbar .account {
    line-height: 40px;
    margin-top: 60px;
    background-color: rgb(252, 210, 182);
    padding: 15px;
  }
  .headerbar .account ul {
    justify-content: space-between;
  }
  /* Section 3 */
  .foodimg {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  .foodimg img {
    width: 70vw;
  }
  .question {
    flex: 1 1 100%;
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }
  .question h2 {
    font-size: 25px;
  }
  .q-ans div:nth-child(2) p {
    font-size: 11px;
  }
  /* Section 4 */
  .main_slide3 {
    margin-top: 100px;
  }
  .main_slide3 .dsgn {
    height: 60%;
  }
  .main_slide3 .fav-head {
    width: 80%;
    margin-bottom: 20px;
  }
  /* Section 5 */
  .main_slide4 {
    margin-top: 150px;
  }
  .main_slide4 .chef-feed {
    flex: 1;
  }
  .main_slide4 .chef {
    flex: 1;
    text-align: center;
    margin-bottom: 40px;
  }
  .main_slide4 .chef img {
    width: 80vw;
  }
  /* Section 6 */
  .letter-head h2 {
    font-size: 20px;
  }
  .letter-input input {
    font-size: 12px;
    padding: 15px;
    width: 100%;
  }
  .letter-input .red_btn {
    line-height: 40px;
    width: 120px;
    font-size: 12px;
  }
  /* Footer  */
  .footer .footer-1 div {
    margin: 0;
  }
  .footer div {
    margin-bottom: 40px;
  }
  /* Signup/signin form  */
  .sign-box h3 {
    text-align: left;
    margin-bottom: 25px;
  }
  #x-sign-mb {
    display: block;
    position: absolute;
    top: 10px;
    right: 0;
  }
  .sign-box form input:last-of-type:active {
    background-color: rgb(253, 99, 38);
  }
}

/* CSS code for Mobile  */

@media only screen and (max-width: 550px) {
  /* Header  */
  .headerbar .nav li {
    width: 96vw;
  }
  .headerbar {
    width: 100%;
    right: -100%;
  }
  .search {
    width: 60vw;
  }
  /* Section 1 */
  .main_slide div:nth-child(1) {
    font-size: 18px;
  }
  .main_slide div:nth-child(1) p {
    padding-top: 5px;
    margin: 10px 0;
    font-size: 11px;
  }
  /* Button  */
  .red_btn {
    margin-top: 10px;
    width: 120px;
    line-height: 30px;
    font-size: 12px;
    padding: 0 10px;
  }
  .main_slide div:nth-child(1) span {
    text-underline-offset: 5px;
  }
  .main_slide div:nth-child(2) img {
    width: 70vw;
  }
  /* Section 2 */
  .food-items {
    padding: 10px 0;
  }
  .item {
    width: 60%;
    padding: 30px 5px;
  }
  .item h3 {
    font-size: 20px;
    margin-bottom: 5px;
  }
  /* Section 4 */
  .main_slide3 .fav-head {
    width: 100%;
  }
  .main_slide3 .fav-head h3 {
    font-size: 25px;
  }
  .main_slide3 .fav-head p {
    font-size: 11px;
  }
  .main_slide3 .dsgn {
    display: none;
  }
  /* Section 5 */
  .main_slide4 .chef-vic div p {
    display: none;
  }
  /* Section 6 */
  .letter {
    justify-content: center;
  }
  .letter-head {
    flex: 1;
    text-align: center;
  }
  /* Footer  */
  .footer div:last-child {
    margin-bottom: 0;
  }
  .footer {
    padding-bottom: 25px;
  }
  .footer-2 h2 {
    font-size: 20px;
  }
  /* signup form  */
  .sign {
    padding: 5vw;
  }
  .sign-box {
    width: 80vw;
    border-radius: 20px;
    padding: 25px;
    padding-bottom: 30px;
  }
  .sign-box h3 {
    text-align: left;
    font-size: 24px;
    padding-top: 15px;
    padding-bottom: 10px;
  }
  .sign-box form input {
    font-size: 12px;
  }
  .sign-box .signin form input:last-of-type {
    margin-top: 15px;
  }
  .sign-box form label {
    font-size: 14px;
  }
  /*food menu page*/
  .menu1 {
    padding-top: 20px;
    padding-bottom: 30px;
  }
  .menu h1 {
    font-size: 2.5rem;
  }
  .menu .item {
    margin-top: 20px;
    margin-bottom: 20px;
    height: auto;
    width: 85%;
  }
  .menu .item div {
    width: 100%;
  }
  .menu .item h3 {
    padding: 15px;
    text-align: left;
    padding-bottom: 0px;
  }
  .menu .item p {
    font-size: 10px;
    padding: 0 15px;
    margin-top: 5px;
  }
  .menu .item .fav-price {
    font-size: 13px;
    color: red;
    padding-bottom: 15px;
  }
  .menu .item:hover {
    transform: scale(1);
    box-shadow: 0 2px 5px rgb(53, 0, 0);
  }
}

/* Interaction and motion effects */
@keyframes float-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.main_slide > div,
.about1 > div,
.main_slide4 > div {
  animation: fade-up 0.7s ease both;
}

.main_slide > div:nth-child(2) img,
.aboutimg img {
  animation: float-soft 4.5s ease-in-out infinite;
}

.nav ul a {
  position: relative;
}

.nav ul a::after {
  position: absolute;
  right: 15px;
  bottom: -8px;
  left: 15px;
  height: 2px;
  content: "";
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.nav ul a:hover::after {
  transform: scaleX(1);
}

.red_btn:hover {
  box-shadow: 0 13px 24px rgba(233, 88, 34, 0.35);
}

.menu .item div {
  overflow: hidden;
}

.menu .item div img {
  transition: transform 0.4s ease;
}

.menu .item:hover div img {
  transform: scale(1.08);
}

.search input:focus,
.letter-input input:focus,
.sign-box form input:focus {
  box-shadow: 0 0 0 3px rgba(233, 88, 34, 0.16);
}

.footer-2 img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-2 img:hover {
  filter: drop-shadow(0 8px 12px rgba(94, 42, 20, 0.2));
  transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Customer-feedback layout for desktop screens. */
@media only screen and (min-width: 769px) {
  .main_slide4 {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(32px, 5vw, 72px);
    margin-top: 150px;
    padding: 40px clamp(28px, 4vw, 56px);
    background: linear-gradient(135deg, #fff8f2, #ffe4cd);
    border-radius: 28px;
    box-shadow: 0 14px 35px rgba(164, 80, 25, 0.12);
  }

  .main_slide4 .chef {
    order: -1;
    min-height: 420px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    text-align: center;
    background: linear-gradient(180deg, #ffd8b9, #f9b580);
    border-radius: 22px;
    overflow: hidden;
  }

  .main_slide4 .chef img {
    width: auto;
    max-width: 90%;
    height: 420px;
    margin-top: 0;
    display: block;
  }

  .main_slide4 .chef-feed {
    margin-top: 0;
    padding: 8px 0;
  }

  .main_slide4 .chef-feed h2 {
    font-size: clamp(30px, 3vw, 42px);
    margin-bottom: 18px;
  }

  .main_slide4 .chef-feed > p {
    font-size: 15px;
    line-height: 1.8;
  }

  .main_slide4 .chef-vic {
    margin-top: 28px;
    padding: 18px 20px;
  }
}

/* =========================================================
   VISUAL POLISH — shared restaurant theme
   ========================================================= */
:root {
  --brand: #e95822;
  --brand-dark: #b93712;
  --cream: #fff8f2;
  --peach: #ffe5d2;
  --ink: #2e1b14;
  --muted: #725c52;
  --surface: #ffffff;
  --shadow: 0 14px 34px rgba(94, 42, 20, 0.12);
}

body {
  color: var(--ink);
  background: var(--cream);
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 72px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 5px 22px rgba(103, 49, 25, 0.12);
}

.header .logo img {
  width: 132px;
}

.nav ul li {
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.home,
.about,
.menu {
  background: linear-gradient(180deg, #fff9f4 0%, #fff0e4 100%);
}

.red_btn,
.white_btn {
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.red_btn {
  background-color: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 9px 18px rgba(233, 88, 34, 0.26);
}

.red_btn:hover,
.white_btn:hover {
  transform: translateY(-2px);
}

.main_slide {
  min-height: 440px;
  padding: 34px 0 48px;
}

.main_slide div:nth-child(1) h1 {
  line-height: 1.22;
  letter-spacing: -0.03em;
}

.food-items {
  border: 1px solid rgba(233, 88, 34, 0.1);
  box-shadow: var(--shadow);
}

.item,
.main_slide3 .fav-food .item {
  border-radius: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.item:hover,
.main_slide3 .fav-food .item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 28px rgba(94, 42, 20, 0.16);
}

.main_slide3 .fav-head h3,
.menu h1 {
  color: var(--brand-dark);
}

.menu .item {
  border: 1px solid rgba(233, 88, 34, 0.1);
  box-shadow: var(--shadow);
}

.footer {
  gap: 45px;
  padding: 48px 7vw;
  background: transparent;
  border-top: 0;
  justify-content: space-between;
}

.footer-1,
.footer-2 {
  margin: 0;
}

.footer p,
.footer address,
.footer h2 {
  color: var(--ink);
}

.footer-2 img {
  max-width: 220px;
  height: auto;
}

.contact-details {
  font-style: normal;
  line-height: 1.6;
}

.contact-details a {
  display: inline-block;
  color: var(--ink);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 600;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.contact-details a:hover {
  color: var(--brand);
  text-decoration: underline;
}

.contact-details p {
  margin: 10px 0 0;
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.65;
}

.contact-details strong {
  font-weight: 700;
}

/* Consistent price labels for featured and menu food cards. */
.fav-price {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff0e5;
  color: var(--brand) !important;
  font-size: 16px !important;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.menu .item {
  display: flex;
  flex-direction: column;
}

.menu .item > div {
  height: 125px;
  overflow: hidden;
  flex-shrink: 0;
}

.menu .item .fav-price {
  align-self: flex-end;
  margin: auto 15px 14px auto;
  padding: 7px 12px;
}

@media only screen and (min-width: 769px) {
  .main_slide3 .fav-food .item {
    display: flex;
    flex-direction: column;
    min-height: 250px;
  }

  .main_slide3 .fav-food .item .fav-price {
    align-self: center;
    margin: auto 0 0;
  }

  .menu .fav-food {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 260px));
    justify-content: center;
    gap: 28px;
  }

  .menu .item {
    width: 100%;
    height: 310px;
    margin: 0;
  }

  .menu .item > div {
    height: 145px;
  }
}

.table .sign-box,
.sign-box {
  border: 1px solid rgba(233, 88, 34, 0.16);
  box-shadow: 0 18px 46px rgba(47, 24, 14, 0.25);
}

@media only screen and (max-width: 550px) {
  .header {
    height: 64px;
  }

  .home,
  .about,
  .menu {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .main_slide {
    min-height: 0;
    padding-top: 22px;
  }

  .footer {
    flex-direction: column;
    gap: 8px;
    padding: 24px 5vw 18px;
    text-align: center;
  }

  .footer > div {
    width: 100%;
    margin-bottom: 8px;
  }

  .footer > div:last-child {
    margin-bottom: 0;
  }

  .footer-2 img {
    max-width: 150px;
  }

  .fav-price,
  .menu .item .fav-price {
    font-size: 15px !important;
  }

  .menu .item > div {
    height: 180px;
  }

  .contact-details {
    text-align: center;
  }

  .contact-details a,
  .contact-details p {
    font-size: 17px;
  }
}
