@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@100;300;400;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* Ensures padding doesn't break width */
}

/* Navbar */
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Prompt', sans-serif;
  height: 100vh;
  margin: 0;
  padding: 0;
  background: hsl(0, 0%, 100%);
}

/* Navbar container */
nav {
  width: 100vw;
  height: 64px; /* Set your desired navbar height */
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  font-family: 'Prompt', sans-serif;
}

/* Navbar styles */
nav {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  background: rgb(255, 255, 255);
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

ul {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  list-style: none;
  margin: 0 auto;
  padding: 0.5rem 2rem;
  max-width: 1200px;
}

/* Remove centering from body for navbar layout */
body {
  display: block;
  justify-content: unset;
  align-items: unset;
  padding-top: 64px; /* Same as nav height */
}

.link {
  text-decoration: none;
  color: #000000;
  font-size: 18px;
  padding: 0.5rem;
  position: relative;
}

.link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #050505;
  border-radius: 5px;
  transform: scaleX(0);
  transition: all 0.6s ease;
}

.link::before {
  bottom: 0;
  left: 0;
}

.link:hover::before {
  transform: scaleX(1);
}

/* Full-Length Horizontal Image Section */
.horizontal-image-section {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: auto; /* Adjust height as needed */
    overflow: hidden;
}

.scroll-container {
  display: flex;
  overflow: hidden; /* Hide the scrollbar */
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  transition: scroll-left 0.1s; /* 0.5s = 500ms */
  width: 100%;
  height: 100%;
}

.scroll-container img {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensure the entire image is visible */
}

.scroll-btn {
    background: none; /* Remove background */
    border: none; /* Remove border */
    color: #333; /* Arrow color */
    font-size: 50px; /* Make the arrow bigger */
    cursor: pointer;
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
}

.left-btn {
    left: 10px;
}

.right-btn {
    right: 10px;
}

.scroll-btn:hover {
    color: #000; /* Darker color on hover */
}

/* Dropdown styles for navbar menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  color: #222;
  min-width: 180px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  border-radius: 8px;
  padding: 12px 0;
  z-index: 999;
  font-size: 1rem;
}

.dropdown-menu li {
  padding: 10px 24px;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  font-size: 1.08em;
  transition: background 0.2s;
  font-weight: bold;
}

.dropdown-menu li:hover {
  background: #f5f5f5;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: block;
}

.lang-switcher {
  background-color: #000000;
  display: flex;
  align-items: center;
  color: rgb(255, 255, 255);
  border-radius: 5px;
  padding: 0.2rem 0.5rem;
  transition: all 0.6s ease;
}

.lang-switcher:hover {
  background-color: transparent;
  color: #000000;
  padding: 0.5rem;
  
}

.lang-switcher i {
  margin-right: 0.5rem;
}

.lang-switcher {
  text-decoration: none;
  color: #000000;
  font-size: 18px;
  padding: 0.5rem;
  position: relative;
}

.lang-switcher::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #000000;
  border-radius: 5px;
  transform: scaleX(0);
  transition: all 0.6s ease;
}

.lang-switcher::before {
  bottom: 0;
  left: 0;
}

.lang-switcher:hover::before {
  transform: scaleX(1);
}

.lang-switcher,
.lang-switcher:focus,
.lang-switcher:active {
  outline: none;
  box-shadow: none;
  border: none;
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Footer styles */
.site-footer {
  width: 100%;
  text-align: center;
  padding: 18px 0 12px 0;
  font-size: 1rem;
  color: #888;
  background: #fff;
  font-family: 'Prompt', sans-serif;
  border-top: 1px solid #eaeaea;
  display: flex;
  flex-direction: column;
  align-items: center; /* This centers children horizontally */
}

.site-footer p {
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  color: #666;
}

.site-footer a {
  color: #007bff;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer .social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: 0 0 0 0; /* Remove top margin */
  padding: 0;
  width: auto;
  position: relative;
  top: -10px; /* Move up by 10px, adjust as needed */
}

.site-footer .social-icons li {
  display: inline;
}

.site-footer .social-icons a {
  color: #007bff;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.site-footer .social-icons a:hover {
  color: #0056b3;
}

.site-footer .copyright {
  margin-top: 10px;
  font-size: 0.8rem;
  color: #999;
}

/* Make nav-links fill the width and space items */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 2rem;
  list-style: none;
}

/* Menu Section */
.menu-section {
  width: 100%; /* Extend to full width */
  min-height: 40vw; /* Increase height */
  background: url('images/paper Bg.jpg') center center/cover no-repeat;
  padding: 40px 0 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.menu-title {
  display: flex;
  justify-content: center;
  align-items: baseline;
  font-family: 'Prompt', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
  gap: 24px;
}
.menu-title-th {
  color: #222;
  font-size: 3.2rem;
  font-family: 'Prompt', sans-serif;
}
.menu-title-jp {
  color: #222;
  font-size: 2.8rem;
  font-family: 'Prompt', sans-serif;
  margin-left: 12px;
}
.menu-cards {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-start; /* avoid item stretching */
}
.menu-card {
  position: relative;
  width: 100%;
  max-width: 1500px; /* Make card wider */
  height: auto;
  min-height: 350px;
  background: transparent;
  border-radius: 18px;
  overflow: visible;      /* allow the line to extend beyond the card */
  padding-bottom: 28px;   /* reserve space for the line */
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Long, centered horizontal underline under the image */
.menu-card::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
  width: min(1400px, 92vw);  /* make it much longer and responsive */
  height: 15px;               /* slightly thicker line */
  background-color: #555;    /* subtle grey line */
}

.menu-img {
  width: 100%;
  max-width: 2000px;
  max-height: 1000px;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  background: transparent;
  display: block;
  margin: 0 auto;
}

.menu-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  width: 100%;
  margin: 20px;
}

.menu-img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.menu-item-name {
  font-family: 'Prompt', sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  margin-top: 12px;
}

/* Longer, centered underline under the image */
.menu-card::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
  width: min(1400px, 95vw);  /* make it much longer and responsive */
  height: 3px;               /* slightly thicker line */
  background-color: #000;
  margin-top: 0;             /* override previous margin if any */
}

.menu-img.autosize {
  width: 100%;
  height: auto;
  max-width: 880px;
  max-height: 650px;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  background: transparent;
}
.menu-card {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1100px) {
  .menu-card {
    width: 95vw;
    max-width: 95vw;
  }
  .menu-img,
  .menu-img.autosize {
    max-width: 95vw;
    max-height: 320px;
  }
}
@media (max-width: 600px) {
  .menu-title {
    font-size: 2.1rem;
    gap: 10px;
  }
  .menu-card {
    min-height: 180px;
  }
  .menu-img,
  .menu-img.autosize {
    max-height: 180px;
  }
}


/* Social Icons Modern Style */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: 18px 0 0 0;
  padding: 0;
}

.social-icons .icon-content {
  margin: 0 10px;
  position: relative;
}

.social-icons .icon-content .tooltip {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  font-size: 14px;
  background: #222;
  transition: all 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
  z-index: 2;
}

.social-icons .icon-content:hover .tooltip {
  opacity: 1;
  visibility: visible;
  top: -50px;
}

.social-icons .icon-content a {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #4d4d4d;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  font-size: 1.5rem;
}

.social-icons .icon-content a:hover {
  box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
  color: #fff;
}

.social-icons .icon-content a svg {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
}

.social-icons .icon-content a .filled {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #000;
  transition: all 0.3s ease-in-out;
  z-index: 0;
  border-radius: 50%;
}

.social-icons .icon-content a:hover .filled {
  height: 100%;
}

.social-icons .icon-content a[data-social="instagram"] .filled,
.social-icons .icon-content a[data-social="instagram"] ~ .tooltip {
  background: linear-gradient(
    45deg,
    #405de6,
    #5b51db,
    #b33ab4,
    #c135b4,
    #e1306c,
    #fd1f1f
  );
}

.social-icons .icon-content a[data-social="facebook"] svg {
  width: 50px;
  height: 50px;
  margin-left: -1.5px; /* Move Facebook icon slightly to the left */
}
.social-icons .icon-content a[data-social="facebook"] .filled,
.social-icons .icon-content a[data-social="facebook"] ~ .tooltip {
  background: linear-gradient(
    45deg,
    #1877F2
  );
}

.more-btn {
  display: block;
  margin: 12px auto 0;
  padding: 10px 16px;
  background: #ffffff;
  border: 1px solid #cfcfcf;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  transition: background .2s, color .2s, border-color .2s;
  /* Center label and enlarge */
  width: 100%;
  justify-content: center;  /* center flex content */
  text-align: center;       /* fallback centering */
  font-size: 1.25rem;       /* larger text */
  padding: 12px 18px;       /* comfortable height */
}
.more-btn:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

/* Center “More” button under the grid */
.more-row {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.more-btn {
  display: inline-flex;           /* keep horizontal */
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #ffffff;
  border: 1px solid #cfcfcf;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  white-space: nowrap;
  height: auto;                   /* prevent tall stretch */
  writing-mode: horizontal-tb;    /* ensure horizontal text */
  flex: 0 0 auto;                 /* do not stretch in flex */
  width: 1000px;
}

.more-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}