@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Jost:wght@400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0c0c0c;
  display: flex;
  justify-content: center;
  font-family: 'Jost', sans-serif;
}

.page {
  width: 100%;
  /* max-width: 1200px; */
  min-height: 100vh;
  background: #0c0c0c;
}


/* ---------- Hero ---------- */

.card {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2.6;
  overflow: hidden;
  isolation: isolate;
}

.backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 80%;
}

.vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.05) 35%,
    rgba(0, 0, 0, 0.6) 75%,
    rgba(12, 12, 12, 1) 100%
  ),
  radial-gradient(
    ellipse at center,
    transparent 55%,
    rgba(0, 0, 0, 0.45) 100%
  );
}

.content {
  position: absolute;
  left: 6%;
  bottom: 6%;
  right: 6%;
  color: #f4ede2;
}

.eyebrow {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: #d9a24b;
  margin-bottom: 10px;
}

.eyebrow span {
  margin: 0 6px;
  color: #a97c3a;
}

.hero-card {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2.6;
  overflow: hidden;
  isolation: isolate;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(28px, 8vw, 40px);
  letter-spacing: 0.01em;
  color: #fbf7ef;
  line-height: 1.05;
  margin-bottom: 8px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

.tagline {
  font-weight: 400;
  font-size: 13px;
  color: #d8cfc0;
}


/* ---------- Links section ---------- */

.links {
  padding: 20px 20px 32px;
}

.icon {
  margin-right: 8px;
  font-size: 15px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 500;
  font-size: 14px;
  padding: 15px;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-review {
  background: linear-gradient(180deg, #d9a24b, #d9a24b);
  color: #241a12;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 14px;
  box-shadow: 0 6px 18px rgba(217, 162, 75, 0.25);
  width: 100%;
}

.btn-review:hover {
  filter: brightness(1.05);
}

.btn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}

.btn-secondary {
  background: #FAF8F2 !important;
  color: black !important;
  border: 1px solid #2a2a2a;
}

.btn-secondary:hover {
  background: #212121;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 19px;
  color: #f4ede2;
  margin-bottom: 12px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.chip {
  text-decoration: none;
  color: #d9a24b;
  border: 1px solid rgba(217, 162, 75, 0.45);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
}

.chip:hover {
  background: rgba(217, 162, 75, 0.08);
}

.info-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 20px;
}

.info-card p {
  display: flex;
  align-items: center;
  font-size: 13.5px;
  color: #e7ded0;
  padding: 6px 0;
}

.review-card {
  background: rgba(217, 162, 75, 0.08);
  border: 1px solid rgba(217, 162, 75, 0.35);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 28px;
}

.review-title {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  color: #f1c979;
  margin-bottom: 6px;
}

.review-text {
  font-size: 13px;
  color: #cfc6b8;
  line-height: 1.5;
}

.footer {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #6b6b6b;
}

.footer span {
  margin: 0 6px;
}


/* ---------- Menu ---------- */

.trio_menu {
  background: black !important;
  color: white !important;
  border: 1px solid gray !important;
  border-radius: 8px !important;

  padding: 25px 22px !important;

  /* Fixed menu height */
  height: 400px !important;

  /* Inner scrolling */
  overflow-y: auto !important;
  overflow-x: hidden !important;

  /* Allow page scrolling at BOTH ends */
  overscroll-behavior: auto;

  /* Touch scrolling */
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;

  /* Smooth scrolling */
  scroll-behavior: smooth;
}


/* ---------- Menu Scrollbar ---------- */

.trio_menu::-webkit-scrollbar {
  width: 4px;
}

.trio_menu::-webkit-scrollbar-track {
  background: transparent;
}

.trio_menu::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 10px;
}

.trio_menu::-webkit-scrollbar-thumb:hover {
  background: #777;
}


/* ---------- Menu Title ---------- */

.menu-title {
  text-align: center;
  margin-bottom: 20px;
}

.menu-title span {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 2px;
  color: white;
}


/* ---------- Menu Items ---------- */

.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding: 16px 0;

  border-bottom: 1px solid #333;
}

.menu-item:last-child {
  border-bottom: none;
}


/* ---------- Item Name ---------- */

.menu-item h4 {
  margin: 0 0 5px;

  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;

  color: white;
}


/* ---------- Description ---------- */

.menu-item p {
  margin: 0;

  font-family: 'Jost', sans-serif;
  font-size: 12px;
  line-height: 1.4;

  color: #aaa;
}


/* ---------- Price ---------- */

.menu-item .price {
  flex-shrink: 0;

  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 600;

  color: white;

  white-space: nowrap;
}


/* ---------- Responsive ---------- */


/* ---------- Mobile ---------- */

@media (max-width: 576px) {

  .links {
    padding: 16px;
  }

  .btn-grid {
    grid-template-columns: 1fr;
  }

  .chip-row {
    gap: 8px;
  }

  .chip {
    font-size: 12px;
    padding: 7px 14px;
  }

  h1 {
    font-size: 32px;
  }


  /* Menu */

  .trio_menu {
    height: 350px !important;

    padding: 22px 18px !important;

    overflow-y: auto !important;
    overflow-x: hidden !important;

    /* Scroll transfers to page at top/bottom */
    overscroll-behavior: auto;

    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
  }

  .menu-title {
    margin-bottom: 18px;
  }

  .menu-title span {
    font-size: 22px;
  }

  .menu-item {
    padding: 14px 0;
    gap: 15px;
  }

  .menu-item h4 {
    font-size: 17px;
  }

  .menu-item p {
    font-size: 11px;
  }

  .menu-item .price {
    font-size: 15px;
  }
}


/* ---------- Tablet ---------- */

@media (min-width: 577px) and (max-width: 991px) {

  .btn-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trio_menu {
    height: 400px !important;

    overflow-y: auto !important;
    overflow-x: hidden !important;

    overscroll-behavior: auto;

    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
  }
}


/* ---------- Desktop ---------- */

@media (min-width: 992px) {

  .links {
    padding: 32px;
  }

  .btn-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .section-title {
    font-size: 24px;
  }

  .chip {
    font-size: 14px;
  }

  .info-card,
  .review-card {
    padding: 20px;
  }

  .trio_menu {
    height: 450px !important;

    overflow-y: auto !important;
    overflow-x: hidden !important;

    overscroll-behavior: auto;

    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
  }
}


/* ---------- Carousel ---------- */

#carouselExampleIndicators {
  width: 100%;
}

#carouselExampleIndicators .carousel-item {
  height: 55%;
}

#carouselExampleIndicators .carousel-item img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
  object-position: center;
}
