:root {
  --purple: #6f1d9b;
  --deep-purple: #3c096c;
  --orange: #ff7a00;
  --lavender: #f3e8ff;
  --cream: #fff8f0;
  --text: #2b1238;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 122, 0, 0.22), transparent 30rem),
    radial-gradient(circle at top right, rgba(111, 29, 155, 0.20), transparent 26rem),
    radial-gradient(circle at bottom, rgba(243, 232, 255, 0.95), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, var(--cream) 46%, #ffffff 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  width: 18rem;
  height: 18rem;
  border-radius: 42% 58% 67% 33% / 44% 42% 58% 56%;
  opacity: 0.18;
  pointer-events: none;
}

body::before {
  top: -6rem;
  left: -8rem;
  background: var(--purple);
  transform: rotate(22deg);
}

body::after {
  right: -8rem;
  bottom: 6rem;
  background: var(--orange);
  transform: rotate(-18deg);
}

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  width: min(100%, 520px);
  margin: 0 auto;
  padding: 24px 14px 28px;
}

.site-header {
  position: relative;
  padding: 26px 18px 20px;
  text-align: center;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 8px 8px auto;
  height: 118px;
  border-radius: 34% 66% 48% 52% / 52% 45% 55% 48%;
  background:
    linear-gradient(135deg, rgba(111, 29, 155, 0.10), rgba(255, 122, 0, 0.11)),
    rgba(255, 255, 255, 0.44);
  filter: blur(0.2px);
  z-index: -1;
}

.logo-wrap {
  display: grid;
  place-items: center;
  width: 132px;
  min-height: 92px;
  margin: 0 auto 12px;
}

.logo {
  max-height: 92px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(60, 9, 108, 0.16));
}

.slogan {
  margin: 0;
  color: var(--deep-purple);
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 700;
}

.slogan.arabic {
  margin-top: 5px;
  color: rgba(43, 18, 56, 0.82);
  font-size: 0.95rem;
  font-weight: 600;
}

.divider {
  width: 108px;
  height: 6px;
  margin: 16px auto 0;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--purple) 0 42%, #ffffff 42% 49%, var(--orange) 49% 100%);
  box-shadow: 0 8px 18px rgba(111, 29, 155, 0.18);
}

.menu-gallery {
  display: grid;
  gap: 14px;
  padding: 4px 0 20px;
}

.menu-card {
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(111, 29, 155, 0.10);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(243, 232, 255, 0.78));
  box-shadow:
    0 18px 38px rgba(60, 9, 108, 0.12),
    0 3px 10px rgba(255, 122, 0, 0.06);
}

.menu-card img {
  width: 100%;
  min-height: 180px;
  border-radius: 15px;
  background:
    linear-gradient(135deg, rgba(243, 232, 255, 0.72), rgba(255, 248, 240, 0.92));
  object-fit: contain;
  cursor: zoom-in;
}

.menu-card.is-missing {
  display: grid;
  place-items: center;
  min-height: 180px;
  color: rgba(43, 18, 56, 0.56);
  font-size: 0.92rem;
  text-align: center;
}

.menu-card.is-missing::after {
  content: "Menu image coming soon";
}

.menu-card.is-missing img {
  display: none;
}

.site-footer {
  display: grid;
  gap: 5px;
  padding: 20px 16px 4px;
  color: rgba(43, 18, 56, 0.76);
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.45;
}

.site-footer strong {
  color: var(--deep-purple);
  font-size: 1.05rem;
}

.site-footer a {
  color: var(--purple);
  font-weight: 700;
  text-decoration: none;
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 44px 14px 22px;
  background: rgba(18, 8, 28, 0.88);
}

.image-modal.is-open {
  display: flex;
}

.modal-image {
  max-width: min(100%, 920px);
  max-height: 88vh;
  border-radius: 16px;
  background: #ffffff;
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.modal-close:focus-visible,
.menu-card img:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

@media (min-width: 560px) {
  .page-shell {
    padding-top: 38px;
  }

  .site-header {
    padding-top: 32px;
  }

  .logo-wrap {
    width: 152px;
    min-height: 104px;
  }

  .logo {
    max-height: 104px;
  }

  .menu-gallery {
    gap: 18px;
  }

  .menu-card {
    padding: 10px;
    border-radius: 24px;
  }

  .menu-card img {
    border-radius: 18px;
  }
}
