/* BRIDGE — shared "inner page" hero pattern + restaurant/menu styles */

.page-hero {
  position: relative;
  min-height: 62svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--color-ink-950);
}

.page-hero__media {
  position: absolute;
  inset: 0;
}

.page-hero__media img,
.page-hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 21, 18, 0.2) 0%, rgba(11, 21, 18, 0.72) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  padding-block: var(--space-xl) var(--space-lg);
  color: var(--color-text-inverse);
}

.page-hero__title {
  font-size: var(--fs-h1);
  color: var(--color-text-inverse);
  margin-top: var(--space-xs);
  max-width: 16ch;
}

/* ---- Restoran hero: guaranteed text contrast across the slideshow ----
   The scrim above is tuned for a single static photo; the food slideshow
   rotates through frames with very different brightness (dark plated food
   vs. bright terrace/river daylight). Scoped to the Restoran page only
   (.page-hero--restaurant) so the shared page-hero pattern used by other
   inner pages is untouched — a steeper, bottom-weighted gradient plus a
   very soft text-shadow as a quiet safety net, never a solid panel. */
.page-hero--restaurant {
  min-height: 78svh;
}

.page-hero--restaurant .page-hero__scrim {
  /* Two layers: a tight, dark pool anchored directly behind the text corner
     (bottom-left) that fades out within a short radius — this is the part
     doing the real contrast work, kept local so it doesn't wash out the
     food photography elsewhere in frame — plus the original soft
     bottom-weighted gradient at reduced strength, just enough to keep the
     transition from the radial pool reading as intentional rather than a
     visible patch. Needs to hold up across every slideshow frame, including
     the brightest/busiest one (fish, lemon, vegetables). */
  background:
    radial-gradient(
      130% 95% at 0% 100%,
      rgba(6, 10, 9, 0.82) 0%,
      rgba(6, 10, 9, 0.58) 28%,
      rgba(6, 10, 9, 0.26) 50%,
      rgba(6, 10, 9, 0.06) 68%,
      transparent 80%
    ),
    linear-gradient(
      180deg,
      rgba(8, 14, 12, 0.06) 0%,
      rgba(8, 14, 12, 0.14) 40%,
      rgba(8, 14, 12, 0.34) 74%,
      rgba(8, 14, 12, 0.5) 100%
    );
}

.page-hero--restaurant .page-hero__title {
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.65),
    0 6px 20px rgba(0, 0, 0, 0.55);
}

.page-hero--restaurant .page-hero__content .eyebrow {
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.6),
    0 3px 12px rgba(0, 0, 0, 0.5);
}

/* ---- Concept ---- */
.concept__grid {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

.concept__image {
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-lg);
}

@media (max-width: 959px) {
  .concept__grid {
    gap: var(--space-md);
  }
}

@media (min-width: 960px) {
  .concept__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---- Menu notice ---- */
.menu-notice {
  background: var(--color-stone-100);
  border: var(--line-hairline) solid var(--color-line);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  max-width: 62ch;
}

/* ---- Menu ---- */
.menu {
  display: grid;
  gap: var(--space-lg);
}

.menu__nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  position: sticky;
  top: 84px;
  z-index: 2;
  background: var(--color-bg);
  padding-block: var(--space-xs);
}

.menu__nav-link {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  border: var(--line-hairline) solid var(--color-line);
  font-size: var(--fs-small);
  white-space: nowrap;
}

.menu__nav-link.is-active {
  background: var(--color-ink-950);
  color: var(--color-text-inverse);
  border-color: var(--color-ink-950);
}

.menu__categories {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.menu__category-title {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: var(--line-hairline) solid var(--color-line);
}

.menu__item {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  padding-block: var(--space-sm);
  border-bottom: var(--line-hairline) dashed var(--color-line);
}

.menu__item-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.menu__item-desc {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  margin-top: 4px;
}

.menu__item-price {
  font-weight: 600;
  white-space: nowrap;
}

.menu__item--placeholder {
  opacity: 0.6;
  font-style: italic;
}

/* ---- Gallery strip (used on restaurant + other pages) ---- */
.gallery-strip__grid {
  margin-top: var(--space-lg);
  display: grid;
  gap: var(--space-sm);
  grid-template-columns: 1fr;
}

.gallery-strip__item {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 720px) {
  .gallery-strip__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
