@font-face {
  font-family: "peyda";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/PeydaWeb-Light.woff") format("woff");
}

@font-face {
  font-family: "peyda";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/PeydaWeb-Regular.woff") format("woff");
}

@font-face {
  font-family: "peyda";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/PeydaWeb-Medium.woff") format("woff");
}

@font-face {
  font-family: "peyda";
  font-style: normal;
  font-weight: bold;
  src: url("../fonts/PeydaWeb-Bold.woff") format("woff");
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "peyda", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  direction: rtl;

  --color-primary: #f8db13;
  --color-page-content-bg: #f3f3f3;
}

header {
  background-image: url("../images/hedmobile1.jpg"); /** Mobile **/
  background-repeat: no-repeat;
  background-size: cover;
  color: #ffffff;
  padding: 0;
  text-align: center;
  height: 140px;
}

#page-content {
  padding: 1rem;
}

#page-wrapper {
  background-color: var(--color-page-content-bg);
}

ul {
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
}

ul.navigation {
  overflow: auto;
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(0, 0, 0, 0.91);
  backdrop-filter: blur(10px);
  padding: 12px 16px;
  font-weight: bold;
}

ul.navigation li {
  padding: 4px;
  margin: 0 6px;
  background-color: transparent;
  border-radius: 10px;
  border: var(--color-primary) solid 2px;
  transition: all 0.3s ease;
  color: var(--color-primary);
}

ul.navigation li:first-child {
  margin-right: 0;
}
ul.navigation li:last-child {
  margin-left: 0;
}

ul.navigation li.active, ul.navigation li:hover {
  background-color: var(--color-primary);
  color: #333;
}

ul.navigation li a {
  color: inherit;
}

li {
  display: inline-block;

  padding: 0;
  margin: 0;
}

li a {
  display: inline-block;
  text-decoration: none;
  color: black;
  padding: 1px;
  margin: 3px;
}

.section {
  padding: 12px;
  border-radius: 20px;
  border: 1px solid var(--color-primary);
  margin: 2rem 0;
}

.section > ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.section > ul li {
  padding: 8px 0;
  position: relative;
}

.section li .food-title {
  margin-left: auto;
  margin-right: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section li .food-name {
  font-weight: 500;
}

.section li .food-description {
  font-size: 80%;
  color: #777777;
  text-align: right;
}

.section li .price {
  margin-right: 24px;
  font-weight: 500;
}

.section li .image-container {
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.section li .image-container img {
  object-fit: cover;
  display: block;
}

.section > ul li::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -8px;
  background-color: #e4dbdb;
}

.section > ul li:last-child::before {
  content: unset;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 20px;
  margin-top: -15px;
}

.menu-heading-content {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--color-page-content-bg);
  padding: 0 20px;
}

.heading-icon {
  width: 45px;
  height: 45px;
}

.heading-icon svg {
  background: transparent;
}

h2 {
  text-align: center;
}

section#contact {
  background-color: var(--color-page-content-bg);
  padding: 0;
}

footer {
  background-color: #f8db13;
  color: black;
  text-align: center;
  padding: 20px;
}

.three-dots {
  text-align: center;
  font-size: 280%;
  font-weight: bold;
  color: var(--color-primary);
}

.lightbox-image {
  border-radius: 1rem;
  object-fit: cover;
}

@media (min-width: 768px) {
  #page-wrapper {
    max-width: 736px;
    margin: 0 auto;
  }

  header {
    background-image: url("../images/hed.jpg"); /** Desktop **/
    height: 300px;
  }
}
