/* @import url("https://fonts.googleapis.com/css2?family=Didact+Gothic&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Tenor+Sans&display=swap"); */
@import url('./assets/Ming Imperial.TTF');

:root {
  --background: #ffffff;
  --primary-background: #F5F5F5;
  /* Warm Gray */
  --secondary-background: #f6f6f6;
  --primary: #C1442E;
  /* Terracotta Red */
  --secondary: #3E6C4D;
  /* Jade Green */
  --neutral-gray: #F5F5F5;
  --charcoal: #333333;
  --primary-font: "Ming Imperial", serif;
  --secondary-font: "Ming Imperial", serif;
}

body {
  font-family: var(--primary-font);
}

button.primary-button {
  background: var(--primary);
  color: white;
  font-weight: bold;
  transition: background 0.2s;
}

button.primary-button:hover {
  background: var(--secondary);
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  font-family: var(--secondary-font);
  background: white;
  position: relative;
}

.mobile-nav-modal {
  background: white;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: start;
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  z-index: 1000;
  opacity: 0;
  transform: translateX(100%);
  transition: 0.3s all ease;
}

.mobile-nav-modal.open {
  transform: translateX(0%);
  opacity: 1;
}

.bg-span {
  position: fixed;
  top: 0;
  left: 0;
  height: 0%;
  width: 0%;
  opacity: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: 0.3s opacity ease;
}

.mobile-nav-modal.open~.bg-span {
  width: 100%;
  height: 100%;
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
}

.close-btn {
  padding: 18px 26px;
  font-size: 20px;
  background-color: var(--primary);
  color: white;
  position: relative;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
}

.mobile-nav-links a {
  padding: 24px 48px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-family: var(--secondary-font);
}

.nav-container .logo-section {
  width: auto;
  height: auto;
  padding: 0 48px 0;
  color: #111111;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.15em;
}

.nav-container .hamburger-btn {
  display: flex;
  align-items: center;
  font-size: 14px;
  padding: 16px 48px;
  line-height: 1.4;
  letter-spacing: 0.15em;
  cursor: pointer;
}

.nav-container .hamburger-btn:hover {
  background-color: var(--primary);
  color: white;
}

.nav-container .hamburger-btn svg {
  padding: 12px;
  font-size: 24px;
}

.reserve-header {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  height: 100vh;
  transform-origin: center right;
  display: flex;
  align-items: center;
}

.reserve-header .reserve-button {
  background-color: var(--primary);
  font-size: 12px;
  color: white;
  writing-mode: vertical-rl;
  padding: 48px 12px;
  line-height: 1.4;
  letter-spacing: 0.15em;
  height: fit-content;
  box-shadow: 0 2px 8px rgba(193, 68, 46, 0.08);
  transition: background 0.2s;
}

.reserve-header .reserve-button:hover {
  background-color: var(--secondary);
}

/* .section-wrapper {
  padding: 0 40px 0;
} */

.page-container {
  width: calc(100% - 96px);
  max-width: calc(100% - 96px);
  margin: 0 48px;
  padding: 192px 0 0;
}

.container-large {
  width: 1024px;
  max-width: 100%;
  margin: auto;
}

.container-small {
  width: 768px;
  max-width: 100%;
  margin: auto;
}

.page-title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 1024px;
  max-width: 100%;
  margin: auto;
  padding: 0 24px 0;
}

.page-title {
  font-size: 40px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--charcoal);
}

.half-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: var(--primary-background);
}

.half-bottom-background {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--primary-background);
}

.page-subtitle {
  line-height: 1.4;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  font-family: var(--secondary-font);
  color: var(--secondary);
}

.title-divider {
  height: 2px;
  background: var(--primary);
  width: 100px;
}

.section-container {
  padding: 0px 40px 0;
}

.english-text {
  font-family: var(--secondary-font);
  line-height: 1.4;
  letter-spacing: 0.15em;
}

.jp-text {
  font-family: var(--primary-font);
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.menu-box-bg {
  position: relative;
  color: white;
}

.menu-box-bg::before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(51, 51, 51, 0.4);
  z-index: 0;
}

.blog-content p {
  font-size: 14px;
  margin: 0 0 24px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.blog-content h1 {
  font-size: 28px;
  margin: 0 0 24px;
}

.blog-content h2 {
  font-size: 20px;
  margin: 0 0 24px;
}

.blog-content h3 {
  margin: 0 0 24px;
}

.blog-content ul {
  list-style-type: disc;
  margin: 0 0 24px 20px;
}

.blog-content li {
  margin: 10px 0;
}

.blog-content ol {
  list-style-type: decimal;
  margin: 0 0 24px 20px;
}

.blog-content blockquote {
  font-size: 14px;
  padding: 15px 15px;
  border-left: 3px solid #d9d9d9;
  font-style: italic;
}

/* Divider for news items */
.news-card-divider {
  border-bottom: 1px solid var(--primary);
}

.news-card {
  background: #fff;
  box-shadow: 0 2px 12px rgba(51, 51, 51, 0.06);
  overflow: hidden;
  margin-bottom: 24px;
  transition: box-shadow 0.2s;
}

.news-card:hover {
  box-shadow: 0 4px 24px rgba(193, 68, 46, 0.12);
}

.news-card .category-tag {
  background: var(--primary);
  color: #fff;
  padding: 2px 8px;
  font-size: 12px;
  font-family: var(--secondary-font);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.reservation-section {
  background: var(--primary-background);
  box-shadow: 0 4px 24px rgba(51, 51, 51, 0.08);
  padding: 48px 24px;
  margin-bottom: 48px;
}

.reservation-section .reservation-title {
  font-size: 28px;
  font-family: var(--secondary-font);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 16px;
}

.reservation-section .reservation-divider {
  height: 2px;
  background: var(--primary);
  width: 100px;
  margin: 24px auto;
}

.reservation-section .reservation-button {
  background: var(--charcoal);
  color: #fff;
  padding: 12px 24px;
  font-family: var(--secondary-font);
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(51, 51, 51, 0.08);
}

.reservation-section .reservation-button:hover {
  background: var(--primary);
}

/* Footer Styles for Branding */
footer {
  background: var(--charcoal);
  color: #fff;
  padding: 64px 0 32px 0;
  font-family: var(--secondary-font);
  border-top: 4px solid var(--primary);
}

footer .footer-content {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer .footer-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
  color: var(--primary);
}

footer .footer-links {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

footer .footer-links a {
  color: #fff;
  font-size: 16px;
  font-family: var(--secondary-font);
  text-decoration: underline;
  transition: color 0.2s;
}

footer .footer-links a:hover {
  color: var(--primary);
}

footer .footer-icons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
}

footer .footer-icons a {
  color: #fff;
  font-size: 24px;
  transition: color 0.2s;
}

footer .footer-icons a:hover {
  color: var(--primary);
}

footer .footer-copyright {
  font-size: 12px;
  color: #bbb;
  text-align: center;
  margin-top: 24px;
  letter-spacing: 0.15em;
}

.store-card {
  background: var(--primary-background);

  padding-bottom: 32px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.3s;
}

.store-card:hover {

  box-shadow: 0 8px 32px rgba(62, 108, 77, 0.18);

}

.store-card .store-title {
  font-size: 24px;
  font-family: var(--secondary-font);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 8px;
}

.store-card .store-details {
  font-size: 16px;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.store-card .store-highlight {
  color: var(--secondary);
  font-weight: bold;
}

.store-card .store-button {
  background: var(--primary);
  color: #fff;
  padding: 8px 20px;
  font-family: var(--secondary-font);
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.store-card .store-button:hover {
  background: var(--secondary);
}

.instagram-section {
  background: var(--neutral-gray);
  box-shadow: 0 4px 24px rgba(51, 51, 51, 0.08);
  padding: 40px 24px;
  margin-bottom: 48px;
}

.instagram-section .instagram-title {
  font-size: 22px;
  font-family: var(--secondary-font);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 16px;
}

.instagram-section .instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
}

.instagram-section .instagram-item {
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(51, 51, 51, 0.08);
  background: #fff;
}

.instagram-section .instagram-item img {
  width: 100%;
  height: auto;
  display: block;
}

.instagram-section .instagram-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--secondary);
  font-weight: bold;
  font-family: var(--secondary-font);
  text-decoration: none;
  transition: color 0.2s;
}

.instagram-section .instagram-link:hover {
  color: var(--primary);
}

.youtube-section {
  background: var(--primary-background);
  box-shadow: 0 4px 24px rgba(51, 51, 51, 0.08);
  padding: 40px 24px;
  margin-bottom: 48px;
}

.youtube-section .youtube-title {
  font-size: 22px;
  font-family: var(--secondary-font);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 16px;
}

.youtube-section .youtube-video {
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(51, 51, 51, 0.08);
  background: #fff;
  margin-bottom: 16px;
}

.youtube-section .youtube-description {
  font-size: 16px;
  color: var(--charcoal);
  font-family: var(--primary-font);
  margin-bottom: 8px;
}

.youtube-section .youtube-link {
  display: inline-block;
  color: var(--secondary);
  font-weight: bold;
  font-family: var(--secondary-font);
  text-decoration: none;
  transition: color 0.2s;
}

.youtube-section .youtube-link:hover {
  color: var(--primary);
}

.reservation-bg {
  background-color: var(--secondary-background);
  background-image: url("https://www.transparenttextures.com/patterns/cream-dust.png");
}

@media screen and (max-width: 768px) {
  .page-container {
    width: calc(100% - 96px);
    max-width: calc(100% - 96px);
    margin: 0 48px;
    padding: 176px 0 0;
  }

  .page-title {
    font-size: 32px;
  }

  .page-subtitle {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .blog-content h1 {
    font-size: 24px;
  }


}

@media screen and (max-width: 540px) {
  .nav-container .logo-section {
    padding: 0 24px 0;
    font-size: 14px;
  }

  .nav-container .hamburger-btn {
    padding: 12px;
  }

  .nav-menu-text {
    display: none;
  }

  .nav-container {
    height: auto;
  }

  .nav-container .hamburger-btn svg {
    padding: 0;
  }

  .reserve-header {
    display: none;
  }

  .page-container {
    width: calc(100% - 48px);
    max-width: calc(100% - 48px);
    margin: 0 24px;
    padding: 104px 0 0;
  }

  .page-title {
    font-size: 20px;
  }

  .blog-content h2 {
    font-size: 20px;
  }

  .blog-content h3 {
    font-size: 18px;
  }
}