@charset "UTF-8";

/* ==========================================================================
   Page Header
   ========================================================================== */
.page-header {
  position: relative;
  height: 50vh;
  min-height: 400px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
}

.page-header__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.6);
  z-index: -1;
}

.page-header__title {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .page-header__title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .page-header__title {
    font-size: 3.75rem;
  }
}

.page-header__subtitle {
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .page-header__subtitle {
    font-size: 1.25rem;
  }
}

/* ==========================================================================
   Sticky Menu Navigation
   ========================================================================== */
.menu-nav {
  position: sticky;
  top: var(--header-height-sp);
  z-index: 30;
  background-color: rgba(250, 249, 246, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(212, 163, 115, 0.1);
  overflow-x: auto;
  /* Hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

@media (min-width: 768px) {
  .menu-nav {
    top: var(--header-height-pc);
  }
}

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

.menu-nav__list {
  display: flex;
  justify-content: flex-start;
  /* min-width: max-content; */
  max-width: 800px;
  flex-wrap: wrap;

}

@media (min-width: 768px) {
  .menu-nav__list {
    justify-content: center;
    margin-inline: auto;
  }
}

.menu-nav__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0.8rem;
  font-family: var(--font-serif);
  color: rgba(74, 64, 58, 0.6);
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.menu-nav__link:hover {
  color: var(--color-primary);
  background-color: rgba(212, 163, 115, 0.05);
}

.menu-nav__link.is-active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
  background-color: rgba(212, 163, 115, 0.05);
}

/* ==========================================================================
   Menu Sections
   ========================================================================== */
.menu-content {
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.menu-section {
  scroll-margin-top: calc(var(--header-height-sp) + 80px);
  /* Adjust for sticky nav */
}

@media (min-width: 768px) {
  .menu-section {
    scroll-margin-top: calc(var(--header-height-pc) + 80px);
  }
}

.menu-section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.menu-section__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  border-radius: 50%;
  background-color: rgba(212, 163, 115, 0.1);
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.menu-section__title {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.menu-section__desc {
  color: rgba(74, 64, 58, 0.7);
}

/* ==========================================================================
   Product Grid & Card
   ========================================================================== */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: var(--color-white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: rgba(212, 163, 115, 0.2);
}

.product-card__img-wrapper {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.product-card:hover .product-card__img {
  transform: scale(1.1);
}

.product-card__price {
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  padding: 0.5rem 1rem;
  font-family: var(--font-heading);
  font-weight: bold;
  font-size: 1.125rem;
  color: var(--color-text);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.product-card__body {
  flex-grow: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.product-card__name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-text);
  transition: color 0.3s ease;
}

.product-card:hover .product-card__name {
  color: var(--color-primary);
}

.product-card__desc {
  font-size: 0.875rem;
  color: rgba(74, 64, 58, 0.7);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.product-card__footer {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  justify-content: flex-end;
}

.product-card__more {
  font-size: 0.75rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--color-primary);
  opacity: 0;
  transform: translateY(0.5rem);
  transition: all 0.3s ease;
}

.product-card:hover .product-card__more {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Menu Bottom CTA
   ========================================================================== */
.menu-cta {
  background-color: rgba(235, 229, 206, 0.3);
  padding-top: 6rem;
  padding-bottom: 6rem;
  margin-top: 3rem;
}

.menu-cta__inner {
  text-align: center;
}

.menu-cta__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .menu-cta__title {
    font-size: 1.875rem;
  }
}

.menu-cta__text {
  max-width: 42rem;
  margin: 0 auto 2rem;
  color: rgba(74, 64, 58, 0.8);
  line-height: 2;
  text-align: left;
}

.menu-cta__link {
  display: inline-block;
  color: var(--color-primary);
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--color-primary);
  padding-bottom: 0.25rem;
  transition: all 0.3s ease;
}

.menu-cta__link:hover {
  color: var(--color-text);
  border-color: var(--color-text);
}