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

/* =========================================
   MENU HERO
   ========================================= */

.menu-hero {
  position: relative;
  padding: 190px 0 120px;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(8, 23, 34, 0.92) 0%,
      rgba(11, 27, 41, 0.88) 18%,
      rgba(18, 52, 74, 0.72) 52%,
      rgba(18, 52, 74, 0.22) 100%
    );
}

.menu-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 14%, rgba(142, 211, 238, 0.28) 0%, transparent 24%),
    radial-gradient(circle at 88% 16%, rgba(79, 163, 196, 0.22) 0%, transparent 20%),
    radial-gradient(circle at 50% 80%, rgba(242, 107, 94, 0.10) 0%, transparent 30%);
  pointer-events: none;
  z-index: 0;
}

.menu-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0.01) 22%,
      rgba(8, 23, 34, 0.16) 62%,
      rgba(8, 23, 34, 0.22) 100%
    );
  pointer-events: none;
  z-index: 0;
}

.menu-hero .container {
  position: relative;
  z-index: 3;
}

/* =========================================
   HERO GRID
   ========================================= */

.menu-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: 54px;
}

/* =========================================
   HERO CONTENT
   ========================================= */

.menu-hero-content {
  position: relative;
  z-index: 3;
}

.menu-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 14px 28px rgba(8, 23, 34, 0.14);
  font-family: "Shameimaru Sans", Arial, sans-serif;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--snow);
}

.menu-hero-title {
  max-width: 700px;
  margin: 0 0 20px;
  font-family: "Bunch Blossoms", cursive;
  font-size: 86px;
  line-height: 0.95;
  font-weight: 400;
  color: var(--snow);
  text-shadow: 0 12px 30px rgba(8, 23, 34, 0.26);
}

.menu-hero-text {
  max-width: 640px;
  margin: 0 0 30px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.88);
}

.menu-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

/* =========================================
   HERO HIGHLIGHTS
   ========================================= */

.menu-hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 760px;
}

.menu-hero-highlight {
  position: relative;
  min-height: 120px;
  padding: 20px 18px 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.14) 0%,
      rgba(255, 255, 255, 0.07) 100%
    );
  box-shadow: 0 18px 34px rgba(8, 23, 34, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}

.menu-hero-highlight:before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background:
    linear-gradient(
      90deg,
      #8ed3ee 0%,
      #4fa3c4 40%,
      #1f6c8b 75%,
      #f2a65a 100%
    );
}

.menu-hero-highlight h3 {
  margin: 0 0 10px;
  font-family: "Shameimaru Sans", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.4px;
  color: var(--snow);
}

.menu-hero-highlight p {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

/* =========================================
   HERO MEDIA
   ========================================= */

.menu-hero-media {
  position: relative;
  z-index: 2;
}

.menu-hero-media-frame {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  min-height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 28px 60px rgba(8, 23, 34, 0.26),
    0 10px 24px rgba(8, 23, 34, 0.16);
  background-color: rgba(255, 255, 255, 0.06);
}

.menu-hero-media-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.menu-hero-media-frame:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(8, 23, 34, 0.04) 0%,
      rgba(8, 23, 34, 0.12) 38%,
      rgba(8, 23, 34, 0.42) 100%
    );
  z-index: 1;
  pointer-events: none;
}

.menu-hero-media-frame:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 34px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.10);
  z-index: 2;
  pointer-events: none;
}

/* =========================================
   OPTIONAL FLOATING INFO CARD
   ========================================= */

.menu-hero-badge-card {
  position: absolute;
  left: -18px;
  bottom: 24px;
  z-index: 4;
  max-width: 260px;
  padding: 20px 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.18) 0%,
      rgba(255, 255, 255, 0.10) 100%
    );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 40px rgba(8, 23, 34, 0.22);
}

.menu-hero-badge-card span {
  display: inline-block;
  margin-bottom: 8px;
  font-family: "Shameimaru Sans", Arial, sans-serif;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.menu-hero-badge-card strong {
  display: block;
  margin: 0 0 8px;
  font-family: "Shameimaru Sans", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.2;
  color: var(--snow);
}

.menu-hero-badge-card p {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

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

@media screen and (max-width: 1200px) {
  .menu-hero {
    padding: 180px 0 110px;
  }

  .menu-hero-grid {
    gap: 42px;
  }

  .menu-hero-title {
    font-size: 74px;
  }

  .menu-hero-media-frame,
  .menu-hero-media-frame img {
    min-height: 560px;
  }
}

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

@media screen and (max-width: 992px) {
  .menu-hero {
    padding: 168px 0 96px;
  }

  .menu-hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .menu-hero-content {
    max-width: 100%;
  }

  .menu-hero-title {
    max-width: 100%;
    font-size: 62px;
  }

  .menu-hero-text {
    max-width: 100%;
    font-size: 17px;
  }

  .menu-hero-highlights {
    max-width: 100%;
  }

  .menu-hero-media {
    order: -1;
  }

  .menu-hero-media-frame,
  .menu-hero-media-frame img {
    min-height: 500px;
  }

  .menu-hero-badge-card {
    left: 18px;
    bottom: 18px;
  }
}

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

@media screen and (max-width: 768px) {
  .menu-hero {
    padding: 150px 0 82px;
  }

  .menu-hero-title {
    font-size: 50px;
    line-height: 0.98;
  }

  .menu-hero-text {
    font-size: 16px;
    line-height: 1.75;
  }

  .menu-hero-actions {
    gap: 12px;
    margin-bottom: 26px;
  }

  .menu-hero-highlights {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .menu-hero-highlight {
    min-height: auto;
  }

  .menu-hero-media-frame,
  .menu-hero-media-frame img {
    min-height: 420px;
  }

  .menu-hero-badge-card {
    position: static;
    max-width: 100%;
    margin-top: 16px;
  }
}

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

@media screen and (max-width: 480px) {
  .menu-hero {
    padding: 138px 0 72px;
  }

  .menu-hero-eyebrow {
    padding: 9px 14px;
    font-size: 12px;
    letter-spacing: 1.6px;
  }

  .menu-hero-title {
    font-size: 40px;
  }

  .menu-hero-text {
    font-size: 15px;
  }

  .menu-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .menu-hero-highlight {
    padding: 18px 16px;
    border-radius: 20px;
  }

  .menu-hero-media-frame {
    min-height: 340px;
    border-radius: 24px;
  }

  .menu-hero-media-frame img {
    min-height: 340px;
  }

  .menu-hero-media-frame:after {
    border-radius: 24px;
  }

  .menu-hero-badge-card {
    padding: 18px 16px;
    border-radius: 20px;
  }
}

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

@media screen and (max-width: 300px) {
  .menu-hero-title {
    font-size: 32px;
  }

  .menu-hero-text,
  .menu-hero-highlight p,
  .menu-hero-badge-card p {
    font-size: 14px;
  }

  .menu-hero-highlight h3,
  .menu-hero-badge-card strong {
    font-size: 16px;
  }

  .menu-hero-media-frame,
  .menu-hero-media-frame img {
    min-height: 280px;
  }
}