/*
  Netro static menu
  Mobile-first, no external fonts, and no framework.
  The palette is sampled from the real Netro logo.
*/

:root {
  --cream: #f7ead1;
  --cream-light: #fff8ea;
  --cream-deep: #efd9b4;
  --paper: #fffdf7;
  --ink: #2d2119;
  --ink-soft: #4f3a2c;
  --muted: #7b6758;
  --orange: #e8781a;
  --orange-dark: #bd501d;
  --gold: #f4b73d;
  --gold-soft: #ffd66c;
  --red: #d94d31;
  --leaf: #6d963f;
  --line: rgba(45, 33, 25, 0.13);
  --shadow: 0 20px 48px rgba(79, 48, 27, 0.14);
  --shadow-soft: 0 12px 28px rgba(79, 48, 27, 0.09);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 17px;
  --max-width: 760px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  min-width: 280px;
  background:
    radial-gradient(circle at 92% 2%, rgba(244, 183, 61, 0.25), transparent 20rem),
    radial-gradient(circle at 3% 20%, rgba(232, 120, 26, 0.11), transparent 18rem),
    var(--cream-light);
  color: var(--ink);
  font-family: Tahoma, Arial, "Noto Sans Arabic", sans-serif;
  line-height: 1.7;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(45, 33, 25, 0.075) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, #000, transparent 37rem);
  pointer-events: none;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-block-start: 0;
}

.skip-link {
  position: fixed;
  inset-block-start: 0.7rem;
  inset-inline-start: 0.7rem;
  z-index: 20;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream-light);
  padding: 0.55rem 0.85rem;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header,
.menu-page,
.site-footer {
  width: min(100% - 1.5rem, var(--max-width));
  margin-inline: auto;
}

.site-header {
  padding-block: 1rem 0.35rem;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.95rem;
  direction: ltr;
}

.brand-row > div {
  direction: rtl;
}

.brand-logo {
  display: block;
  width: clamp(5rem, 26vw, 7rem);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 10px rgba(79, 48, 27, 0.14));
}

.eyebrow,
.hero-kicker,
.section-heading p {
  margin: 0;
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.5rem, 14vw, 4.25rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.075em;
  text-shadow: 3px 3px 0 rgba(244, 183, 61, 0.58);
}

.hero-card {
  overflow: hidden;
  position: relative;
  isolation: isolate;
  border: 2px solid var(--ink);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 8% 0%, rgba(244, 183, 61, 0.22), transparent 12rem),
    linear-gradient(145deg, #38291f, #211914 70%);
  box-shadow:
    0 7px 0 var(--gold),
    var(--shadow);
  color: var(--cream-light);
  padding: 1.25rem;
  animation: settle-in 500ms ease both;
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 214, 108, 0.16);
  border-radius: 999px;
  pointer-events: none;
}

.hero-card::before {
  inset-block-start: -5.5rem;
  inset-inline-start: -3rem;
  width: 12rem;
  height: 12rem;
}

.hero-card::after {
  inset-block-end: -4rem;
  inset-inline-end: -2rem;
  width: 9rem;
  height: 9rem;
  background: rgba(232, 120, 26, 0.07);
}

.hero-kicker {
  color: var(--gold-soft);
}

.hero-card > p:not(.hero-kicker) {
  max-width: 28rem;
  margin-block-end: 0.65rem;
  color: #dccbbb;
  font-size: 0.95rem;
}

.hero-bio {
  position: relative;
  z-index: 1;
  margin: 0.75rem 0 0.7rem;
  border-inline-start: 3px solid var(--gold);
  padding-inline-start: 0.75rem;
}

.hero-card .instagram-bio {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #dccbbb;
  padding: 0;
}

.hero-card .instagram-bio p {
  color: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.65;
}

.hero-card .instagram-bio > span {
  height: 0.75rem;
  color: var(--gold);
  line-height: 0.75rem;
}

.hero-bio blockquote {
  margin: 0.6rem 0 0;
  color: #ffe5a1;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.65;
}

.product-showcase {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.28rem;
  direction: ltr;
  margin: 0.85rem -0.2rem 0.95rem;
}

.product-showcase img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 214, 108, 0.26);
  border-radius: 16px;
  background: linear-gradient(155deg, #fff6e5, #efd5aa);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  animation: product-float 4.8s ease-in-out infinite;
  will-change: transform;
}

.product-showcase img:nth-child(2) {
  animation-delay: -1.9s;
}

.product-showcase img:nth-child(3) {
  animation-delay: -3.2s;
}

.product-showcase img:nth-child(4) {
  animation-delay: -0.8s;
}

.product-showcase img:nth-child(5) {
  animation-delay: -2.6s;
}

.hours-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(255, 214, 108, 0.28);
  border-radius: 999px;
  background: rgba(244, 183, 61, 0.11);
  color: #ffe5a1;
  padding: 0.43rem 0.78rem;
  font-size: 0.87rem;
  font-weight: 900;
}

.hours-pill::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 0.24rem rgba(244, 183, 61, 0.12);
}

.hours-pill[data-state="open"] {
  border-color: rgba(136, 207, 91, 0.42);
  background: rgba(109, 150, 63, 0.16);
  color: #e4f7ce;
}

.hours-pill[data-state="open"]::before {
  background: #8ed05f;
  box-shadow: 0 0 0 0.24rem rgba(142, 208, 95, 0.14);
}

.hours-pill[data-state="closed"] {
  border-color: rgba(239, 108, 76, 0.42);
  background: rgba(217, 77, 49, 0.13);
  color: #ffd8cf;
}

.hours-pill[data-state="closed"]::before {
  background: #ef7658;
  box-shadow: 0 0 0 0.24rem rgba(239, 118, 88, 0.14);
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 0.85rem;
}

.whatsapp-button,
.instagram-button,
.phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  border-radius: 999px;
  padding: 0.58rem 0.45rem;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 900;
  white-space: nowrap;
  transition:
    transform 170ms ease,
    box-shadow 170ms ease,
    background 170ms ease;
}

.whatsapp-button {
  border: 1px solid #ffdd88;
  background: linear-gradient(135deg, var(--gold-soft), var(--orange));
  color: var(--ink);
  box-shadow: 0 10px 22px rgba(232, 120, 26, 0.2);
}

.instagram-button {
  border: 1px solid rgba(255, 248, 233, 0.22);
  background: rgba(255, 255, 255, 0.09);
  color: #fff8e9;
}

.phone-link {
  border: 1px solid rgba(255, 248, 233, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff7e7;
}

.whatsapp-button:hover,
.instagram-button:hover,
.phone-link:hover {
  transform: translateY(-2px);
}

.whatsapp-button:active,
.instagram-button:active,
.phone-link:active {
  transform: translateY(0);
}

.category-nav {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  gap: 0.5rem;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 0.86rem 0.75rem;
  overflow-x: auto;
  background: rgba(255, 248, 234, 0.91);
  backdrop-filter: blur(12px);
  scrollbar-width: none;
}

.category-nav::-webkit-scrollbar {
  display: none;
}

.category-nav a {
  flex: 1 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.82);
  color: var(--ink-soft);
  box-shadow: 0 7px 16px rgba(79, 48, 27, 0.06);
  padding: 0.66rem 0.9rem;
  text-align: center;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 900;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.category-nav a:hover,
.category-nav a:focus-visible {
  border-color: rgba(189, 80, 29, 0.35);
  background: #ffe5ad;
  transform: translateY(-1px);
}

.menu-page {
  padding-block: 0.3rem 1.3rem;
}

.menu-section {
  scroll-margin-top: 5rem;
  padding-block: 1.25rem 0.35rem;
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.12rem;
  margin-bottom: 1rem;
  padding-inline: 0.1rem;
  text-align: center;
}

.section-heading::after {
  content: "";
  width: 3.2rem;
  height: 0.72rem;
  margin-top: 0.35rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold) 0 32%, var(--orange) 32% 66%, var(--red) 66%);
  box-shadow: 3px 3px 0 rgba(45, 33, 25, 0.11);
}

.section-heading h2 {
  margin: 0.05rem 0 0;
  color: var(--ink);
  font-size: clamp(1.75rem, 7.5vw, 2.35rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.menu-list {
  display: grid;
  gap: 0.75rem;
}

.menu-item {
  display: grid;
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.35rem 0.85rem;
  align-items: center;
  min-height: 7.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 248, 234, 0.78)),
    var(--paper);
  box-shadow: var(--shadow-soft);
  padding: 0.88rem;
  transition:
    transform 170ms ease,
    box-shadow 170ms ease,
    border-color 170ms ease;
}

.menu-item::after {
  content: "N";
  position: absolute;
  inset-block-end: -1.2rem;
  inset-inline-start: 0.35rem;
  color: rgba(232, 120, 26, 0.055);
  direction: ltr;
  font-family: Arial, sans-serif;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.menu-item.has-art {
  grid-template-columns: 5.6rem minmax(0, 1fr);
}

.menu-item:hover {
  border-color: rgba(189, 80, 29, 0.28);
  box-shadow: 0 17px 34px rgba(79, 48, 27, 0.13);
  transform: translateY(-2px);
}

.featured-item {
  border-color: rgba(232, 120, 26, 0.32);
  background:
    radial-gradient(circle at 100% 0%, rgba(244, 183, 61, 0.24), transparent 9rem),
    linear-gradient(135deg, #fff8e8, #fffdf7);
}

.product-art {
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(45, 33, 25, 0.12);
  border-radius: var(--radius-md);
  background: linear-gradient(155deg, #fff7e3, #efd4a8);
  box-shadow:
    0 9px 18px rgba(79, 48, 27, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.product-art img {
  display: block;
  width: 96%;
  height: auto;
  transition: transform 220ms ease;
}

.menu-item:hover .product-art img {
  transform: rotate(-2deg) scale(1.04);
}

.item-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.item-copy h3 {
  margin-block-end: 0.16rem;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.item-copy p {
  margin-block-end: 0;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.55;
}

.price {
  position: relative;
  z-index: 1;
  grid-column: 1;
  justify-self: start;
  margin: 0.25rem 0 0;
  border: 1px solid rgba(45, 33, 25, 0.1);
  border-radius: 999px;
  background: var(--ink);
  color: var(--gold-soft);
  box-shadow: 0 7px 15px rgba(45, 33, 25, 0.12);
  padding: 0.28rem 0.7rem;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.3;
  white-space: nowrap;
}

.has-art .price {
  grid-column: 2;
}

.instagram-bio {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 214, 108, 0.28);
  border-radius: var(--radius-lg);
  background: var(--cream-light);
  color: var(--ink);
  padding: 0.9rem;
}

.instagram-bio p {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.75;
}

.instagram-bio > span {
  display: block;
  height: 1rem;
  color: var(--orange);
  font-weight: 900;
  line-height: 1rem;
}

.site-footer {
  padding: 1rem 0 2rem;
  color: var(--muted);
  text-align: center;
  font-size: 0.87rem;
}

.site-footer p {
  margin-block-end: 0.65rem;
}

.site-footer a {
  display: inline-flex;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--gold-soft);
  padding: 0.52rem 0.85rem;
  text-decoration: none;
  font-weight: 900;
}

.snack-companion {
  position: fixed;
  inset-block: 6.25rem 4.75rem;
  inset-inline-end: 0.34rem;
  z-index: 4;
  width: 2.65rem;
  pointer-events: none;
}

.snack-companion::before {
  content: "";
  position: absolute;
  inset-block: 0.4rem;
  inset-inline-start: 50%;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(232, 120, 26, 0.3), rgba(244, 183, 61, 0.44), transparent);
  transform: translateX(-50%);
}

.travel-waffle {
  --snack-y: 0px;
  --snack-rotate: -12deg;
  --snack-scale: 1;
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 50%;
  width: 2.35rem;
  aspect-ratio: 1;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 0.68rem;
  background:
    repeating-linear-gradient(0deg, transparent 0 0.45rem, rgba(128, 70, 24, 0.55) 0.45rem 0.58rem),
    repeating-linear-gradient(90deg, transparent 0 0.45rem, rgba(128, 70, 24, 0.55) 0.45rem 0.58rem),
    linear-gradient(135deg, #ffc95b, #e48a25);
  box-shadow: 0 7px 16px rgba(79, 48, 27, 0.25);
  transform: translate3d(-50%, var(--snack-y), 0) rotate(var(--snack-rotate)) scale(var(--snack-scale));
  transform-origin: center;
  will-change: transform;
  contain: layout paint style;
}

.travel-waffle::after {
  content: "";
  position: absolute;
  inset-block-start: -0.18rem;
  inset-inline-end: -0.24rem;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background: var(--cream-light);
  box-shadow: -0.48rem 0.15rem 0 -0.2rem var(--cream-light);
}

.travel-waffle span {
  position: absolute;
  inset: -40%;
  background: linear-gradient(110deg, transparent 38%, rgba(255, 255, 255, 0.32), transparent 58%);
  transform: translateX(-60%);
  animation: waffle-sheen 4.2s ease-in-out infinite;
}

@media (min-width: 720px) {
  .site-header {
    padding-top: 1.5rem;
  }

  .hero-card {
    padding: 1.65rem;
  }

  .product-showcase {
    max-width: 34rem;
    gap: 0.5rem;
  }

  .menu-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-item {
    min-height: 8.1rem;
  }

}

@keyframes settle-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes product-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1deg);
  }

  50% {
    transform: translate3d(0, -4px, 0) rotate(1deg);
  }
}

@keyframes waffle-sheen {
  0%,
  45% {
    transform: translateX(-60%);
  }

  75%,
  100% {
    transform: translateX(60%);
  }
}

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

  .snack-companion {
    display: none;
  }

  html {
    scroll-behavior: auto;
  }
}
