* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  color: #000000;
  font-family: sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 20px 20px;
}

/****************** TITLE SECTION */
#title {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px; /* Adds a specific gap between the pill and logo */
  width: 100%;
}

/* Side title (The MOSTA Pill) */
.side-title {
  flex-shrink: 0;
}

.side-title h2 {
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #b32330;
  border: 2px solid #b32330;
  text-shadow: 0.5px 0.5px 0px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: -9px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 9px 14px 7px;
}

/* Main title (The Brand) */
.main-title {
  width: 100%; /* Adjusted slightly to leave room for the pill */
  max-width: 450px;
}
.main-title img {
  width: 100%; /* Makes the image fill the .main-title div */
  height: auto; /* Maintains the aspect ratio */
  display: block; /* Removes any weird bottom gaps */
}

/****************** INFO SECTION */
#info {
  position: relative;
  display: flex;
  justify-content: flex-end; /* This pushes the text block to the right */
  margin-top: 50px;
  width: 100%;
  height: 200px; /* Height to give the cat and text room */
}

/* The Cat Mascot (Pinned Bottom Left) */
.logo {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.logo img {
  width: 100px; /* Adjusted size for better balance */
  height: auto;
  display: block;
}

/* Contact Details (Clean Block on Right) */
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* Aligns the boxes to the right */
  text-align: right; /* Aligns the text inside to the right */
  gap: 10px; /* Reduced gap for a tighter look */
  font-style: normal;
  margin-right: 10px;
}

.contact-info a {
  font-family: "Inter", sans-serif;
  text-decoration: none;
  font-weight: 550;
  line-height: 1.4;
}

/* The Address Fix */
.address {
  font-size: 14px; /* Smaller than the buttons */
  margin-bottom: 40px; /* Adds space before the buttons start */
  color: #b32330;
  max-width: 180px;
  transition: all 0.2s ease;
}
.address-arrow {
  font-size: 12px;
  vertical-align: super;
  color: #b32330;
}

.address-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2px;
  max-width: 180px;
}

.phone,
.email {
  color: #000;
  font-size: 14px;
  border: 1px solid #000;
  border-radius: 50px;
  padding: 7px 10px;
  transition: all 0.4s ease;
}
.phone:hover,
.email:hover {
  background-color: #000;
  color: #fff;
}

/****************** HIGHLIGHTS SECTION */
#highlights {
  width: 100%;
  margin-top: 50px; /* Space from the Cat and Info */
  padding: 0 15px; /* Slight inset so it's not touching the screen edges */
}

.video-wrap {
  position: relative; /* Essential for centering the loader */
  background-color: #000; /* Keeps it clean while loading */
  width: 100%;
  aspect-ratio: 9 / 16; /* Standard vertical phone ratio */
  max-height: 500px;
  border-radius: 15px; /* Rounded corners like your pill buttons */
  overflow: hidden;
  border: 1.5px solid #000; /* Thin black outline to match your style */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the video fills the box without stretching */
}

/* The YouTube-style Spinner */
.video-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45px;
  height: 45px;
  border: 3.5px solid rgba(255, 255, 255, 0.2); /* Faint background circle */
  border-top: 3.5px solid #b32330; /* Your Hikari Red! */
  border-radius: 50%;
  z-index: 10;
  animation: spin 0.8s linear infinite;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* Animation to rotate */
@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Class to hide the loader once playing */
.video-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

/****************** MENU & DISH SPLIT SECTION */
#menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px; /* Space between the image and the buttons */
  margin-top: 50px;
  width: 100%;
  min-height: 220px;
}

/* Left side: The Dish Box */
.dish-display {
  flex: 1;
  display: flex;
  justify-content: center;
}

.dish-box {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  border: 1.5px solid #000;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.dish-box img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.dish-box img.active {
  opacity: 1;
}

/* Right side: The Buttons */
.menu-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.hono-btn {
  position: relative;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Cinzel", serif;
  font-weight: 400;
  -webkit-text-stroke: 1px #000;
  font-size: 40px;
  line-height: 1;
}

.hono-btn::before {
  content: attr(data-jp); /* This pulls the text from an attribute in HTML */
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(10px);
  font-size: 18px;
  font-weight: 600;
  font-family: "Yuji Mai", serif;
  color: #b32330; /* Very faint grey (5% opacity) */
  z-index: -1; /* Puts it behind the English text */
  pointer-events: none;
  letter-spacing: 1px;
  line-height: normal;
  -webkit-text-stroke: 0px #000;
}

.arrow {
  width: 38px;
  margin-left: 5px;
}

/************** WORKING HOURS SECTION */
#working-hours {
  margin-top: 50px;
  background-color: #fff;
  display: flex;
  justify-content: center;
}

.hours-container {
  width: 100%;
  max-width: 600px; /* Keeps it elegant and centered */
  border-top: 2px solid #000;
  align-items: flex-start;
}

.hours-title {
  font-family: "Cinzel", serif;
  font-weight: 400;
  -webkit-text-stroke: 1px #000;
  font-size: 35px;
  margin-bottom: 20px;
  line-height: 1;
  max-width: 80%;
}

.hours-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #e4e4e4; /* Light divider */
}

.en-day {
  display: block;
  font-family: "Space Mono", monospace;
  font-size: 24px;
  font-weight: 700;
}

.jp-day {
  font-family: "Yuji Mai", serif;
  color: #b32330;
  font-weight: 600;
  font-size: 20px;
}

.time {
  font-family: "Space Mono", monospace;
  font-size: 24px;
  font-weight: 400;
}

.hours-footer {
  margin: 10px 0;
  text-align: right;
}

.status-tag {
  background-color: #000;
  color: #fff;
  padding: 5px 15px;
  font-family: "Space Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
}

/* Add this to your existing CSS */

.delivery-row {
  margin-top: 20px;
  border-bottom: 1px solid #e4e4e4; /* Light divider */
  padding-bottom: 10px;
}

.day-group {
  max-width: 50%;
}

.partner-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.delivery-icon {
  width: 60px; /* Matches your typography scale */
  height: auto;
  margin-bottom: 8px;
}

.partner-name {
  display: block;
  font-family: "Space Mono", monospace;
  font-size: 12px;
  color: #b32330; /* Using your Sushi Red for the partner name */
  font-weight: 700;
  text-align: right;
  margin-bottom: 5px;
}

.partner-group .phone {
  font-family: "Inter", sans-serif;
  text-decoration: none;
  font-weight: 550;
  line-height: 1.4;
}

/****************** FOOTER SECTION */
.hono-red-footer {
  background: linear-gradient(to bottom, #b32330 0%, #b32330 30%, #571218 100%);
  color: #ffffff; /* White text for high contrast */
  padding: 60px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: "Space Mono", monospace;
}

.cat-mascot {
  width: 160px; /* Adjust based on your image size */
  height: auto;
  margin-bottom: 20px;
}

.footer-about {
  max-width: 700px;
  margin-bottom: 40px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.insta-icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.follow-us {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 550;
  text-decoration: none;
  color: #ffffff;
}

.contact-us {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 550;
  line-height: 1.4;
  text-decoration: none;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.contact-us .phone,
.contact-us .email {
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 50px;
  padding: 7px 10px;
  text-decoration: none;
  transition: all 0.4s ease;
}
.contact-us .phone:hover,
.contact-us .email:hover {
  background-color: #ffffff;
  color: #b32330; /* Sushi Red on hover */
}
.footer-copyright {
  font-size: 10px;
  letter-spacing: 2px;
  opacity: 0.7;
}
.footer-copyright a {
  color: #ffffff;
  text-decoration: underline;
}

/*********************** DYNAMIC OVERLAY SECTION */

.red-overlay {
  scroll-behavior: smooth;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #b32330;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 0px 50px 0;
  overflow-y: auto;

  /* Initial State: Tiny in the center */
  transform: scale(0);
  opacity: 0;
  pointer-events: none;

  /* The Opening Transition (1.2s) */
  transition:
    transform 1.2s cubic-bezier(0.85, 0, 0.3, 1),
    opacity 0.4s;
  -webkit-overflow-scrolling: touch;
}

.red-overlay.active {
  transform: scale(1);
  opacity: 1;
  pointer-events: auto;
}

/* THE REVERSE: When closing, we wait 0.6s for content to slide out first, 
   then we shrink back to scale(0) over exactly 1.2s */
#menu-overlay:not(.active) {
  transform: scale(0);
  opacity: 0;
  transition:
    transform 1.2s cubic-bezier(0.85, 0, 0.3, 1) 0.6s,
    opacity 0.4s 1.4s;
}

/*********************** BLACK CONTENT CARD */

.overlay-content {
  background-color: #000;
  color: #fff;
  width: 90%;
  max-width: 500px;
  min-height: 80vh;
  padding: 30px;

  /* Start WAY at the bottom (100% of viewport height) */
  transform: translateY(100vh);
  opacity: 0;

  /* OPENING: Waits for red (1.1s delay), then slides up */
  /* We use 'all' here to catch both transform and opacity */
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1) 1.1s;
}

.red-overlay.active .overlay-content {
  opacity: 1;
  transform: translateY(0);
}

/* THE REVERSE FIX: */
/* When the .active class is removed, the content MUST stay visible 
   long enough to slide down. We remove 'visibility' to prevent the 'cut' */
#menu-overlay:not(.active) .overlay-content {
  opacity: 0;
  transform: translateY(100vh);

  /* NO DELAY: It starts sliding down the millisecond you click 'X' */
  /* 0.6s duration matches the opening slide speed exactly */
  transition: all 0.6s cubic-bezier(0.5, 0, 0.75, 0) 0s;
}

/*********************** CLOSE BUTTON (THUMB-FRIENDLY) */

.close-overlay {
  position: fixed;
  top: 18px;
  right: -3px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent; /* Back to your original transparent look */
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  z-index: 10001;

  /* Initial State */
  opacity: 0;
  pointer-events: none;

  /* Your original 1.2s delay for the opening */
  transition: opacity 0.3s ease 1.2s;
}

/* Logic for when the menu is OPEN */
#menu-overlay.active + .close-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* Logic for when the menu is CLOSED */
#menu-overlay:not(.active) + .close-overlay {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease 0s; /* Fast exit like before */
}

/**************************************** MENU ***************/
/*************************************************************/
/*************************************************************/
/*************************************************************/
/*************************************************************/

/* Centers your logo and "MENU" text */
.menu-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0 20px 0;
}

/* The Brand Image */
.menu-meta {
  width: 180px; /* Adjust based on your image dimensions */
  height: auto;
  margin-bottom: 10px;
}

/* The MENU title */
.section-title {
  font-family: "Cinzel", serif; /* Elegant font style */
  font-size: 28px;
  letter-spacing: 6px; /* Luxury spacing */
  color: #fff;
  text-transform: uppercase;
}

/* Sticky Nav Bar */
.menu-nav {
  position: sticky;
  top: -80px;
  /* Changed to semi-transparent black so you can see the blur effect */
  background: rgba(0, 0, 0, 0.7);
  /* The blur effect for items passing behind */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);

  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding: 30px 5px 15px 5px;
  z-index: 100;
  border-bottom: 1px solid #b32330;
  margin-bottom: 30px;

  /* Default state: Mask is active */
  -webkit-mask-image: linear-gradient(to right, black 80%, transparent 100%);
  mask-image: linear-gradient(to right, black 80%, transparent 100%);

  /* Smoothly transition the mask change */
  transition:
    mask-image 0.4s ease,
    -webkit-mask-image 0.4s ease;

  -ms-overflow-style: none;
  scrollbar-width: none;
}

.menu-nav::-webkit-scrollbar {
  display: none;
}

/* When at the end, the mask becomes fully solid (no fade) */
.menu-nav.is-at-end {
  -webkit-mask-image: linear-gradient(to right, black 100%, black 100%);
  mask-image: linear-gradient(to right, black 100%, black 100%);
}

.menu-nav a {
  color: #fff;
  text-decoration: none;
  font-family: "Space Mono", monospace;
  font-size: 11px;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 5px 10px;
  transition: all 0.3s ease;
}

/* Optional: Highlight the button when they tap it */
.menu-nav a:active {
  background: #b32330;
  border-color: #b32330;
}

/* Dish Rows */
.dish-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
  gap: 20px;
}

.dish-row:nth-of-type(even) {
  flex-direction: row-reverse;
}

/* Circular Images with Dashed Border */
.dish-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px dashed rgba(255, 255, 255, 0.5);
  padding: 5px; /* Creates that space between dash and image */
}

/* Text and Connectors */
.dish-text {
  flex: 1;
}

.dish-name {
  font-family: "open sans", sans-serif;
  text-align: center;
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.dish-meta {
  display: flex;
  align-items: center;
  font-family: "Space Mono", monospace;
  font-size: 12px;
}

.connector-dots {
  flex-grow: 1;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
  margin: 0 10px;
}

.price {
  background: #b32330; /* The Red Price Tag from the menu */
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 400;
}

/* This creates an invisible 'buffer' at the top of every category */
.menu-category {
  scroll-margin-top: 90px;
  padding-top: 20px; /* Optional: extra space inside the black box */
}

.variant-label {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6); /* Slightly dimmed so NEMS stands out */
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Add a little gap between the variants */
.dish-meta + .variant-label {
  margin-top: 15px;
}

.category-title {
  font-family: "Cinzel", serif; /* Or your main heading font */
  font-size: 26px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin: 40px 0 60px 0;
  position: relative;
  padding-bottom: 15px;
}

/* The red underline accent */
.category-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #b32330; /* Your red brand color */
}

/*WOK*/
.wok-hero {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.hero-large {
  width: 220px; /* Makes the Wok image stand out more than the circles */
  height: 220px;
}

.wok-list {
  max-width: 400px;
  margin: 0 auto; /* Centers the list on the page */
  padding: 0 20px;
}

.wok-list .dish-meta {
  margin-bottom: 20px;
  font-size: 14px;
}

.dish-name-sub {
  font-family: "Space Mono", monospace;
  letter-spacing: 1px;
  color: #fff;
}

/*drinks and menu footer*/
/* Beverage Grid */
.drink-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 15px;
  padding: 0 10px;
  text-align: center;
}

.drink-card {
  border: 2px dashed rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  padding: 8px;
  margin-bottom: 10px;
  aspect-ratio: 2/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drink-card img {
  max-width: 100%;
  height: auto;
  border-radius: 2px;
}

.drink-name {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  color: #fff;
  margin-bottom: 5px;
  line-height: 1.2;
}

.drink-price {
  font-family: "Space Mono", monospace;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}

/* Mascot Footer */
.menu-footer {
  text-align: center;
  margin-top: 80px;
  padding-bottom: 50px;
}

.footer-mascot {
  width: 120px; /* Adjust based on your image size */
  height: auto;
  opacity: 0.9;
}

.bon-appetit {
  font-family: "Cinzel", serif; /* Elegant font style */
  font-size: 16px;
  letter-spacing: 3px;
  color: #fff;
  text-transform: uppercase;
}

.jp-farewell {
  color: #b32330;
  font-family: "Yuji Mai", serif;
  font-size: 16px;
  letter-spacing: 6px; /* High spacing for that Japanese design look */
  text-transform: uppercase;
}

.overlay-section {
  display: none; /* Hide sections by default */
}

.overlay-section.active {
  display: block; /* Only show the active one */
}

/*share it*/
#share-section {
  padding: 40px 20px;
  text-align: center;
  background: #fff; /* Keeping it clean like your main body */
}

.share-container p {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Mono", monospace;
  font-size: 16px;
  font-weight: 400;
  color: #b32330;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#share-btn {
  text-align: center;
  gap: 0px;
  border: none;
  background: transparent;
  cursor: pointer;
  align-items: center;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Cinzel", serif;
  font-weight: 400;
  -webkit-text-stroke: 1px #000;
  font-size: 40px;
  line-height: 1;
  position: relative; /* Add this to allow JP text to anchor to it */
  display: inline-flex; /* Add this to help with centering */
  justify-content: center;
}
#share-btn::before {
  content: attr(data-jp);
  position: absolute;
  bottom: -11px; /* Adjust this to move the JP text up or down */
  transform: translateX(-50%) translateX(-44px);
  font-family: "Yuji Mai", serif; /* Matches your other JP styling */
  font-size: 18px;
  color: #b32330;
  -webkit-text-stroke: 0px; /* Removes the black stroke from the JP text */
  font-weight: 600;
  letter-spacing: 2px;
  z-index: 100;
  pointer-events: none;
}

.tilt {
  transform: rotate(-45deg);
  gap: 0;
  margin-left: 0;
}
#share-btn:active {
  transform: scale(0.95); /* Tactile feedback on click */
}

.share-icon {
  width: 18px;
}

/*loading screen*/
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 9999; /* Stays above everything */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-content {
  text-align: center;
  transform: translateY(-10%);
}

.welcome-text {
  font-family: "Cinzel", serif;
  font-size: 32px;
  letter-spacing: 8px;
  position: relative;
  margin-bottom: 40px;
}

/* The Japanese 'Welcome' underneath */
.welcome-text::after {
  content: attr(data-jp);
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Yuji Mai", serif;
  font-size: 26px;
  color: #b32330;
  letter-spacing: 4px;
}

.loading-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.load-logo {
  width: 160px;
  height: auto;
}

.load-mascot {
  margin-top: 50px;
  width: 80px;
  height: auto;
  animation: pulse 1.5s infinite ease-in-out;
}

.loading-bar-container {
  width: 120px;
  height: 2px;
  background: #f0f0f0;
  margin: 30px auto 0;
  overflow: hidden;
  border-radius: 2px;
}

.loading-bar {
  width: 100%;
  height: 100%;
  background: #b32330;
  transform: translateX(-100%);
  animation: loadProgress 1s forwards;
}

@keyframes loadProgress {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(0%); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

/* Class to hide the loader */
.loader-hidden {
  opacity: 0;
  visibility: hidden;
}



/*********************** RESPONSIVE STYLES *******************/
/*************************************************************/
/*************************************************************/
/*************************************************************/
@media screen and (max-width: 391px) {
  .overlay-content {
    padding: 20px;
  }

  .close-overlay {
    top: 12px;
    right: -5px;
    font-size: 26px;
    width: 45px;
    height: 45px;
  }

  .menu-nav {
    padding: 25px 5px 15px 5px;
  }

  .hono-btn {
    font-size: 38px;
  }

  .hono-btn::before {
    font-size: 16px;
    transform: translateY(8px);
  }

  .dish-box {
    max-width: 250px;
  }

  .arrow {
    width: 36px;
  }

  .dish-circle {
    width: 140px;
    height: 140px;
  }

  .hero-large {
    width: 200px;
    height: 200px;
  }

  .dish-name {
    font-size: 16px;
  }

  .dish-meta {
    font-size: 11px;
  }

  .connector-dots {
    margin: 0 5px;
  }

  .footer-mascot {
    width: 110px;
  }

  .bon-appetit {
    font-size: 14px;
  }

  .jp-farewell {
    font-size: 14px;
  }

  .drink-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 12px;
  }

  .drink-card {
    padding: 0px;
  }

  .share-container p {
    font-size: 15px;
  }

  #share-btn {
    font-size: 35px;
  }

  #share-btn::before {
    font-size: 16px;
    bottom: -10px;
    transform: translateX(-50%) translateX(-40px);
  }
}

@media screen and (max-width: 365px) {
  .overlay-content {
    padding: 10px;
  }

  .close-overlay {
    top: 8px;
    right: -8px;
    font-size: 24px;
    width: 40px;
    height: 40px;
  }

  .menu-nav {
    padding: 20px 5px 10px 5px;
  }

  .menu-nav a {
    font-size: 10px;
  }

  .side-title h2 {
    font-size: 16px;
    letter-spacing: -6px;
    padding: 5px 7px 12px 6px;
  }

  .logo img {
    width: 80px;
  }

  .hono-btn {
    font-size: 30px;
  }

  .hono-btn::before {
    font-size: 14px;
    transform: translateY(8px);
  }

  .dish-box {
    max-width: 250px;
  }

  .arrow {
    width: 32px;
  }

  .hours-title {
    font-size: 30px;
  }

  .en-day {
    font-size: 20px;
  }

  .jp-day {
    font-size: 18px;
  }

  .time {
    font-size: 20px;
  }

  .hours-footer {
    font-size: 14px;
  }

  .dish-circle {
    width: 120px;
    height: 120px;
  }

  .hero-large {
    width: 180px;
    height: 180px;
  }

  .dish-name {
    font-size: 14px;
  }

  .dish-meta {
    font-size: 10px;
  }

  .connector-dots {
    margin: 0 3px;
  }

  .footer-mascot {
    width: 100px;
  }

  .bon-appetit {
    font-size: 12px;
  }

  .jp-farewell {
    font-size: 12px;
  }

  .drink-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }

  .share-container p {
    font-size: 14px;
  }

  #share-btn {
    font-size: 30px;
  }
  #share-btn::before {
    font-size: 14px;
    bottom: -9px;
    transform: translateX(-50%) translateX(-36px);
  }
}
