@charset "UTF-8";
/* CSS Document */

/* =========================================
   MENU CARDS
   ========================================= */

.menu-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(247, 243, 238, 0.98) 100%
    );
  border: 1px solid rgba(16, 37, 35, 0.08);
  box-shadow:
    0 20px 40px rgba(16, 37, 35, 0.08),
    0 8px 18px rgba(16, 37, 35, 0.04);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.menu-card:hover,
.menu-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(79, 163, 196, 0.20);
  box-shadow:
    0 28px 52px rgba(16, 37, 35, 0.12),
    0 12px 24px rgba(16, 37, 35, 0.06);
}

/* =========================================
   TOP ACCENT
   ========================================= */

.menu-card:before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background:
    linear-gradient(
      90deg,
      #8ed3ee 0%,
      #4fa3c4 38%,
      #1f6c8b 68%,
      #f2a65a 100%
    );
  z-index: 3;
}

.menu-card:after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(142, 211, 238, 0.22) 0%, rgba(142, 211, 238, 0) 72%);
  pointer-events: none;
  z-index: 1;
}

/* =========================================
   CARD IMAGE
   ========================================= */

.menu-card img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  background-color: #e9e2d8;
  transition:
    transform 0.6s ease,
    filter 0.35s ease;
}

.menu-card:hover img,
.menu-card:focus-within img {
  transform: scale(1.04);
  filter: saturate(1.04) contrast(1.01);
}

/* =========================================
   IMAGE OVERLAY
   ========================================= */

.menu-card .menu-card-content {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 24px 24px 26px;
  z-index: 2;
}

.menu-card .menu-card-content:before {
  content: "";
  position: absolute;
  top: -72px;
  left: 0;
  width: 100%;
  height: 72px;
  background:
    linear-gradient(
      180deg,
      rgba(8, 23, 34, 0.00) 0%,
      rgba(8, 23, 34, 0.08) 100%
    );
  pointer-events: none;
}

/* =========================================
   TITLE
   ========================================= */

.menu-card h3 {
  position: relative;
  margin: 0 0 12px;
  padding-right: 18px;
  font-family: "Shameimaru Sans", Arial, sans-serif;
  font-size: 21px;
  line-height: 1.24;
  letter-spacing: 0.2px;
  color: var(--forest-shadow);
}

/* =========================================
   DESCRIPTION
   ========================================= */

.menu-card p {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--charcoal);
}

/* =========================================
   DARKER ALT SECTION CARD VARIATION
   ========================================= */

.menu-category.alt .menu-card {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.94) 0%,
      rgba(244, 239, 232, 0.98) 100%
    );
  box-shadow:
    0 18px 38px rgba(16, 37, 35, 0.07),
    0 8px 18px rgba(16, 37, 35, 0.04);
}

/* =========================================
   SAUCES - SMALLER CARD FEEL
   ========================================= */

#sauces .menu-card {
  border-radius: 24px;
}

#sauces .menu-card img {
  height: 220px;
}

#sauces .menu-card .menu-card-content {
  padding: 20px 20px 22px;
}

#sauces .menu-card h3 {
  font-size: 18px;
  line-height: 1.25;
}

#sauces .menu-card p {
  font-size: 14px;
  line-height: 1.7;
}

/* =========================================
   DRINKS - SLIGHTLY RICHER IMAGE CROP
   ========================================= */

#drinks .menu-card img,
#seasonal .menu-card img,
#experimental .menu-card img {
  object-position: center center;
}

/* =========================================
   EXPERIMENTAL - MORE EDITORIAL FEEL
   ========================================= */

#experimental .menu-card {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.97) 0%,
      rgba(248, 243, 239, 1) 100%
    );
}

#experimental .menu-card h3 {
  color: #173648;
}

/* =========================================
   SEASONAL - SOFTER ACCENT
   ========================================= */

#seasonal .menu-card:before {
  background:
    linear-gradient(
      90deg,
      #f2a65a 0%,
      #f26b5e 34%,
      #7a6f9b 68%,
      #4fa3c4 100%
    );
}

/* =========================================
   IMAGE RATIO HELPERS FOR DENSE CONTENT
   ========================================= */

#pastries .menu-card img,
#bread .menu-card img,
#deli .menu-card img {
  height: 310px;
}

#sides .menu-card img {
  height: 270px;
}

/* =========================================
   FOCUS ACCESSIBILITY
   ========================================= */

.menu-card:focus-within {
  outline: 2px solid rgba(242, 107, 94, 0.68);
  outline-offset: 4px;
}

/* =========================================
   RESPONSIVE - 1200
   ========================================= */

@media screen and (max-width: 1200px) {
  .menu-card {
    border-radius: 24px;
  }

  .menu-card img,
  #pastries .menu-card img,
  #bread .menu-card img,
  #deli .menu-card img {
    height: 280px;
  }

  #sides .menu-card img {
    height: 250px;
  }

  #sauces .menu-card img {
    height: 205px;
  }

  .menu-card .menu-card-content {
    padding: 22px 22px 24px;
  }

  .menu-card h3 {
    font-size: 19px;
  }

  .menu-card p {
    font-size: 15px;
    line-height: 1.72;
  }
}

/* =========================================
   RESPONSIVE - 992
   ========================================= */

@media screen and (max-width: 992px) {
  .menu-card:hover,
  .menu-card:focus-within {
    transform: translateY(-5px);
  }

  .menu-card img,
  #pastries .menu-card img,
  #bread .menu-card img,
  #deli .menu-card img,
  #sides .menu-card img,
  #sauces .menu-card img {
    height: 260px;
  }

  .menu-card h3 {
    font-size: 18px;
    line-height: 1.24;
  }

  .menu-card p {
    font-size: 14px;
    line-height: 1.68;
  }
}

/* =========================================
   RESPONSIVE - 768
   ========================================= */

@media screen and (max-width: 768px) {
  .menu-card {
    border-radius: 22px;
  }

  .menu-card img,
  #pastries .menu-card img,
  #bread .menu-card img,
  #deli .menu-card img,
  #sides .menu-card img,
  #sauces .menu-card img {
    height: 240px;
  }

  .menu-card .menu-card-content {
    padding: 20px 18px 22px;
  }

  .menu-card h3 {
    margin-bottom: 10px;
    font-size: 17px;
  }

  .menu-card p {
    font-size: 14px;
    line-height: 1.65;
  }

  .menu-card:after {
    top: 14px;
    right: 14px;
    width: 58px;
    height: 58px;
  }
}

/* =========================================
   RESPONSIVE - 480
   ========================================= */

@media screen and (max-width: 480px) {
  .menu-card {
    border-radius: 20px;
  }

  .menu-card img,
  #pastries .menu-card img,
  #bread .menu-card img,
  #deli .menu-card img,
  #sides .menu-card img,
  #sauces .menu-card img {
    height: 220px;
  }

  .menu-card .menu-card-content {
    padding: 18px 16px 20px;
  }

  .menu-card h3 {
    font-size: 16px;
  }

  .menu-card p {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* =========================================
   RESPONSIVE - 300
   ========================================= */

@media screen and (max-width: 300px) {
  .menu-card img,
  #pastries .menu-card img,
  #bread .menu-card img,
  #deli .menu-card img,
  #sides .menu-card img,
  #sauces .menu-card img {
    height: 190px;
  }

  .menu-card .menu-card-content {
    padding: 16px 14px 18px;
  }

  .menu-card h3 {
    font-size: 15px;
    line-height: 1.25;
  }

  .menu-card p {
    font-size: 13px;
    line-height: 1.56;
  }
}