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

/* =========================================
   MENU SECTION BASE
   ========================================= */

.menu-category {
  position: relative;
  padding: 108px 0;
  overflow: hidden;
}

.menu-category .container {
  position: relative;
  z-index: 2;
  max-width: 1360px;
}

.menu-category:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.menu-category:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(16, 37, 35, 0) 0%,
    rgba(16, 37, 35, 0.08) 18%,
    rgba(16, 37, 35, 0.08) 82%,
    rgba(16, 37, 35, 0) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.menu-category:last-of-type:after {
  display: none;
}

/* =========================================
   DEFAULT SECTIONS
   ========================================= */

.menu-category:not(.alt) {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.26) 0%,
      rgba(248, 244, 238, 0.58) 100%
    );
}

.menu-category:not(.alt):before {
  background:
    radial-gradient(circle at 10% 18%, rgba(142, 211, 238, 0.10) 0%, transparent 22%),
    radial-gradient(circle at 88% 14%, rgba(79, 163, 196, 0.08) 0%, transparent 18%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0.00) 46%,
      rgba(16, 37, 35, 0.03) 100%
    );
}

/* =========================================
   ALT SECTIONS
   ========================================= */

.menu-category.alt {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.58) 0%,
      rgba(247, 243, 238, 0.94) 100%
    );
}

.menu-category.alt:before {
  inset: 22px 16px;
  border-radius: 34px;
  border: 1px solid rgba(16, 37, 35, 0.06);
  background:
    radial-gradient(circle at top left, rgba(142, 211, 238, 0.09) 0%, transparent 28%),
    radial-gradient(circle at bottom right, rgba(242, 107, 94, 0.06) 0%, transparent 24%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.36) 0%,
      rgba(255, 255, 255, 0.08) 100%
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.30),
    0 18px 42px rgba(16, 37, 35, 0.04);
}

/* =========================================
   CATEGORY HEADER
   ========================================= */

.category-header {
  position: relative;
  max-width: 860px;
  margin: 40px auto 46px;
  text-align: center;
  z-index: 2;
}

.category-header:before {
  content: "";
  display: block;
  width: 104px;
  height: 5px;
  margin: 0 auto 22px;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      #8ed3ee 0%,
      #4fa3c4 40%,
      #1f6c8b 72%,
      #f2a65a 100%
    );
  box-shadow: 0 8px 22px rgba(79, 163, 196, 0.18);
}

.category-header h2 {
  margin: 0 0 14px;
  font-family: "Bunch Blossoms", cursive;
  font-size: 54px;
  line-height: 1.02;
  font-weight: 400;
  color: var(--forest-shadow);
  text-shadow: 0 10px 24px rgba(8, 23, 34, 0.05);
}

.category-header p {
  max-width: 760px;
  margin: 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: var(--charcoal);
}

/* =========================================
   CATEGORY HEADER - ALT VARIATION
   ========================================= */

.menu-category.alt .category-header {
  padding-top: 8px;
}

.menu-category.alt .category-header:before {
  width: 88px;
  margin-bottom: 20px;
  background:
    linear-gradient(
      90deg,
      rgba(31, 108, 139, 0.92) 0%,
      rgba(79, 163, 196, 0.92) 50%,
      rgba(242, 166, 90, 0.92) 100%
    );
}

/* =========================================
   MENU GRID
   ========================================= */

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

#deli .menu-grid,
#seasonal .menu-grid,
#bread .menu-grid,
#drinks .menu-grid,
#experimental .menu-grid,
#sides .menu-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

#sauces .menu-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

/* =========================================
   CATEGORY EMPHASIS BY SECTION
   ========================================= */

#pastries .category-header:before,
#experimental .category-header:before,
#seasonal .category-header:before {
  box-shadow: 0 10px 24px rgba(122, 111, 155, 0.16);
}

#bread .category-header:before,
#deli .category-header:before,
#sides .category-header:before,
#sauces .category-header:before,
#drinks .category-header:before {
  box-shadow: 0 10px 24px rgba(31, 108, 139, 0.16);
}

/* =========================================
   ANCHOR OFFSET
   ========================================= */

.menu-category[id],
.menu-nav[id] {
  scroll-margin-top: 130px;
}

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

@media screen and (max-width: 1200px) {
  .menu-category {
    padding: 94px 0;
  }

  .menu-category.alt:before {
    inset: 18px 14px;
    border-radius: 30px;
  }

  .category-header {
    max-width: 820px;
    margin-bottom: 42px;
  }

  .category-header h2 {
    font-size: 46px;
  }

  .category-header p {
    font-size: 17px;
  }

  .menu-grid {
    gap: 24px;
  }

  #sauces .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

@media screen and (max-width: 992px) {
  .menu-category {
    padding: 80px 0;
  }

  .menu-category.alt:before {
    inset: 14px 12px;
    border-radius: 26px;
  }

  .category-header {
    margin-bottom: 38px;
  }

  .category-header:before {
    width: 90px;
    margin-bottom: 20px;
  }

  .category-header h2 {
    font-size: 40px;
  }

  .category-header p {
    max-width: 680px;
    font-size: 17px;
    line-height: 1.72;
  }

  .menu-grid,
  #deli .menu-grid,
  #seasonal .menu-grid,
  #bread .menu-grid,
  #drinks .menu-grid,
  #experimental .menu-grid,
  #sides .menu-grid,
  #sauces .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}

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

@media screen and (max-width: 768px) {
  .menu-category {
    padding: 68px 0;
  }

  .menu-category:after {
    background: linear-gradient(
      90deg,
      rgba(16, 37, 35, 0) 0%,
      rgba(16, 37, 35, 0.06) 14%,
      rgba(16, 37, 35, 0.06) 86%,
      rgba(16, 37, 35, 0) 100%
    );
  }

  .menu-category.alt:before {
    inset: 10px 8px;
    border-radius: 22px;
  }

  .category-header {
    margin-bottom: 32px;
  }

  .category-header:before {
    width: 78px;
    height: 4px;
    margin-bottom: 18px;
  }

  .category-header h2 {
    font-size: 34px;
  }

  .category-header p {
    font-size: 16px;
    line-height: 1.68;
  }

  .menu-grid,
  #deli .menu-grid,
  #seasonal .menu-grid,
  #bread .menu-grid,
  #drinks .menu-grid,
  #experimental .menu-grid,
  #sides .menu-grid,
  #sauces .menu-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .menu-category[id],
  .menu-nav[id] {
    scroll-margin-top: 110px;
  }
}

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

@media screen and (max-width: 480px) {
  .menu-category {
    padding: 58px 0;
  }

  .menu-category.alt:before {
    inset: 8px 6px;
    border-radius: 18px;
  }

  .category-header {
    margin-bottom: 28px;
  }

  .category-header:before {
    width: 68px;
    margin-bottom: 16px;
  }

  .category-header h2 {
    font-size: 28px;
  }

  .category-header p {
    font-size: 15px;
    line-height: 1.62;
  }

  .menu-grid {
    gap: 18px;
  }

  .menu-category[id],
  .menu-nav[id] {
    scroll-margin-top: 98px;
  }
}

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

@media screen and (max-width: 300px) {
  .menu-category {
    padding: 48px 0;
  }

  .category-header:before {
    width: 56px;
    margin-bottom: 14px;
  }

  .category-header h2 {
    font-size: 24px;
  }

  .category-header p {
    font-size: 14px;
    line-height: 1.58;
  }

  .menu-grid {
    gap: 16px;
  }
}