body,
html {
   margin: 0;
   font-family: "Noto Sans JP", sans-serif;
   overflow-x: hidden;
   
}
.vegas-background {
   position: relative;
   width: 100%;
   height: 100vh;
   overflow: hidden;
}
.content-overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   color: white;
   text-align: center;
}
.content-box {
   width: 100%;
}

.content-box p {
   font-size: 1em;
   letter-spacing: 0.15em;
   line-height: 1.5;
}
.overlay-logo {
   width: 65%;
   margin-bottom: 1.5rem;
}
.overlay-subtitle {
   font-size: 1.1rem;
   line-height: 1.7;
   margin: 0.25rem 0;
}
.section-concept {
   padding: 100px 40px;
   background-color: #faf9f5;
   color: #595757;
}
.concept-container {
   max-width: 1000px;
   margin: 0 auto;
   display: flex;
   align-items: center;
   gap: 50px;
}
.concept-text {
   flex: 1;
   text-align: left;
}
.concept-image {
   flex: 1;
   position: relative;
}
.since-badge {
   position: absolute;
   top: -35px;
   right: -40px;
   color: #864433;
   padding: 8px 18px;
   font-family: "chantal", sans-serif;
   font-weight: 400;
   font-size: 3em;
   font-style: normal;
   transform: rotate(7deg);
   z-index: 1;
   letter-spacing: 1px;
}
.concept-image img {
   width: 100%;
   display: block;
   border-radius: 10px;
   transition: transform 0.3s ease, filter 0.3s ease;
   box-shadow: 10px 10px 0 #e5dfcf;
}
.concept-image img:hover {
   filter: brightness(0.9);
}
.section-title {
   font-family: "chantal", sans-serif;
   font-weight: 600;
   font-style: normal;
   font-size: 2.8em;
   margin-bottom: 1.5rem;
   letter-spacing: 4px;
   text-transform: uppercase;
   color: #864433;
}

.section-title-jp {
   font-weight: 600;
   font-style: normal;
   font-size: 1.2em;
   margin-bottom: 1.5rem;
   letter-spacing: 4px;
   text-transform: uppercase;
   color: #864433;
}

.section-subtitle-en {
   color: #c9bc9c;
   font-size: 0.8em;
   letter-spacing: 0.1em;
   margin-top: -1em;
}
.section-description {
   font-size: 0.8em;
   line-height: 1.8;
   letter-spacing: 0.15em;
}
.section-managers-comment {
   padding: 60px 40px;
   background-color: #faf9f5;
   color: #595757;
   text-align: center;
}
.manager-heading {
   position: relative;
   width: 70%;
   max-width: 600px;
   margin: 0 auto 2.5rem auto;
}
.manager-avatar {
   width: 100%;
   height: auto;
   display: block;
}
.manager-greeting {
   position: absolute;
   top: 40%;
   left: 70%;
   transform: translate(-50%, -50%);
   font-size: 1.1em;
   color: #864433;
   line-height: 1.5;
   letter-spacing: 1px;
   text-align: center;
   font-weight: 600;
   width: max-content; 
   max-width: 45%;
}
.comment-container {
   max-width: 800px;
   margin: 0 auto;
}
.comment-text {
   margin-top: 0;
   text-align: center;
}
.comment-text p {
   font-size: 0.8em;
   line-height: 1.8;
   letter-spacing: 0.15em;
   margin: 0;
}
.button_new {
   margin-top: 2rem;
}
.button-link {
   display: inline-block;
   background-color: #864433;
   color: #ffffff;
   padding: 12px 30px;
   border-radius: 5px;
   text-decoration: none;
   font-weight: 300;
   letter-spacing: 1.5px;
   transition: all 0.3s ease;
}
.button-link:hover {
   background-color: #7d3727;
   transform: translateY(-3px);
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Animation on scroll initial state */
.animate-on-scroll {
   visibility: hidden; /* Hide element until it's animated */
   /* Optional: set animation duration */
   --animate-duration: 0.8s;
}

.section-news-ticker {
   background-color: #864433;
   color: #faf9f5;
   padding: 12px 40px;
   width: 100%;
   box-sizing: border-box;
   font-family: "Noto Sans JP", sans-serif;
}

.news-ticker-container {
   max-width: 1000px;
   margin: 0 auto;
   display: flex;
   align-items: center;
   gap: 20px;
   font-size: 0.85em;
}

.news-label {
   font-family: "chantal", sans-serif;
   font-weight: 600;
   color: #faf9f5;
   font-size: 1.4em;
   flex-shrink: 0;
}

.news-link {
   color: #faf9f5;
   text-decoration: none;
   display: flex;
   align-items: center;
   gap: 15px;
   overflow: hidden;
   flex-grow: 1;
}

.news-link:hover .news-title {
   text-decoration: underline;
}

.news-date {
   flex-shrink: 0;
}

.news-title {
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
}

.section-menu {
   padding: 100px 40px;
   background-color: #faf9f5;
   color: #595757;
}
.menu-container {
   max-width: 1000px;
   margin: 0 auto;
   display: flex;
   align-items: center;
   gap: 50px;
}
.menu-container + .menu-container {
   margin-top: 80px;
}
.menu-text {
   flex: 2;
}
.menu-image {
   flex: 3;
}
.menu-text {
   text-align: left;
}
.section-menu .section-title {
   font-size: 2.8em;
   margin-bottom: 1rem;
}
.menu-image img {
   width: 100%;
   display: block;
   border-radius: 10px;
   box-shadow: 10px 10px 0 #e5dfcf;
   transition: transform 0.3s ease, filter 0.3s ease;
}
.menu-image img:hover {
  filter: brightness(0.9);
}

.section-party {
   padding: 100px 40px;
   background-color: #faf9f5;
   color: #595757;
   background-color: #E5DFCF;
}

.party-container {
   max-width: 1000px;
   margin: 0 auto;
   display: flex;
   align-items: center;
   gap: 50px;

}

.party-image {
   flex: 3;
}

.party-text {
   flex: 2;
   text-align: left;
}

.section-party .section-title {
   font-size: 2.8em;
   margin-bottom: 1rem;
}

.party-image img {
   width: 100%;
   display: block;
   border-radius: 10px;
   box-shadow: 10px 10px 0 #e5dfcf;
   transition: transform 0.3s ease, filter 0.3s ease;
}

.section-daily-special {
   padding: 80px 40px;
   background-color: #E5DFCF;
   color: #595757;
   text-align: center;
}

.daily-special-container {
   max-width: 800px;
   margin: 0 auto;
}

.daily-special-container .section-title-jp {
   margin-top: -1.5rem;
   margin-bottom: 2rem;
}

.special-dish-name {
   font-size: 1.8em;
   font-weight: 600;
   color: #864433;
   margin: 1rem 0 2rem 0;
}

.site-header {
  position: fixed;
  top: 25px;
  left: 0;
  width: 100%;
  height: 80px; /* Container height for alignment */
  z-index: 1002; /* Below the nav, so logo gets covered */
  pointer-events: none; /* Allow clicks to pass through the header */
}

.logo-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: auto; /* Make logo clickable */
}

.header-logo {

  height: 80px; /* Adjust as needed */
  width: auto;
  display: block;
  
}
.header-top-left-controls {
  position: fixed;
  top: 25px;
  left: 25px;
  z-index: 1001;
  display: flex;
  align-items: center;
  gap: 15px;
  pointer-events: auto;
}

.nav-toggle-button {
   background: none;
   border: none;
   cursor: pointer;
   padding: 10px;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   width: 50px;
   height: 40px;
}

.header-instagram-link {
  color: #864433; /* Default brown color */
  font-size: 2.3em;
  text-decoration: none;
  transition: color 0.3s ease-in-out, transform 0.3s ease;
  display: flex;
  align-items: center;
}

.header-instagram-link:hover {
  transform: scale(1.1);
}
.nav-toggle-button span {
   width: 100%;
   height: 3px;
   background-color: #864433; /* Default to brown */
   border-radius: 2px;
   transition: all 0.3s ease-in-out;
   transform-origin: center;
}
/* Class added by JS when controls are over a dark background */
.header-top-left-controls.is-on-dark-bg .nav-toggle-button span {
   background-color: #ffffff;
}
.header-top-left-controls.is-on-dark-bg .header-instagram-link {
   color: #ffffff;
}
.fullscreen-nav {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(250, 249, 245, 0.97);
   z-index: 1000;
   opacity: 0;
   visibility: hidden;
   transition: opacity 0.4s ease, visibility 0.4s ease;
   display: flex;
   justify-content: center;
   align-items: center;
}
body.nav-open .fullscreen-nav {
   opacity: 1;
   visibility: visible;
}
body.nav-open .nav-toggle-button span:nth-child(1) {
   transform: rotate(45deg) translate(4px, 8px);
}
body.nav-open .nav-toggle-button span:nth-child(2) {
   opacity: 0;
}
body.nav-open .nav-toggle-button span:nth-child(3) {
   transform: rotate(-45deg) translate(3px, -8px);
}
/* When nav is open, ensure the 'X' is brown, overriding the white color rule */
body.nav-open .header-top-left-controls .nav-toggle-button span {
   background-color: #864433;
   box-shadow: none;
}
/* When nav is open, ensure the instagram icon is also brown */
body.nav-open .header-top-left-controls .header-instagram-link {
   color: #864433;
}
.nav-container {
   display: flex;
   width: 100%;
   height: 100%;
   align-items: stretch;
}
.nav-left,
.nav-right {
   flex: 0 0 50%;
}
.nav-left {
   display: flex;
   justify-content: center;
   align-items: center;

}
.nav-right {
   padding: 0;
}
.nav-links {
   list-style: none;
   padding: 0;
   margin: 0;
   text-align: left;
}
.nav-links li {
   margin-bottom: 1.2rem;
   opacity: 0;
   transform: translateY(20px);
   transition: opacity 0.4s ease, transform 0.4s ease;
}
body.nav-open .nav-links li {
   opacity: 1;
   transform: translateY(0);
}
body.nav-open .nav-links li:nth-child(1) {
   transition-delay: 0.2s;
}
body.nav-open .nav-links li:nth-child(2) {
   transition-delay: 0.25s;
}
body.nav-open .nav-links li:nth-child(3) {
   transition-delay: 0.3s;
}
body.nav-open .nav-links li:nth-child(4) {
   transition-delay: 0.35s;
}
body.nav-open .nav-links li:nth-child(5) {
   transition-delay: 0.4s;
}
body.nav-open .nav-links li:nth-child(6) {
   transition-delay: 0.45s;
}
body.nav-open .nav-links li:nth-child(7) {
   transition-delay: 0.5s;
}
body.nav-open .nav-links li:nth-child(8) {
   transition-delay: 0.55s;
}
.nav-links a {
   position: relative;
   color: #864433;
   text-decoration: none;
   font-size: clamp(1.2rem, 2.5vw, 1.8rem);
   font-weight: 400;
   letter-spacing: 2px;
   padding-bottom: 5px;
}
.nav-links a::after {
   content: "";
   position: absolute;
   width: 0;
   height: 1px;
   background-color: #864433;
   bottom: 0;
   left: 50%;
   transform: translateX(-50%);
   transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-links a:hover::after {
   width: 100%;
}
.nav-right img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}
body.nav-open .nav-right img {
   opacity: 1;
   transform: scale(1);
}

/* =================================
Footer
==================================== */
.site-footer {
   background-color: #864433; /* Match title color */
   color: #faf9f5;
   padding: 80px 40px;
   font-size: 0.85em;
   line-height: 1.7;
}

.footer-container {
   max-width: 1000px;
   margin: 0 auto;
}

.footer-columns {
   display: flex;
   justify-content: space-between;
   gap: 40px;
   margin-bottom: 50px;
}

.footer-column {
   flex: 1;
}

.footer-logo {
   max-width: 80px;
   margin-bottom: 1.5rem;
}

.footer-column h4 {
   font-family: "chantal", sans-serif;
   font-weight: 600;
   font-size: 1.1em;
   letter-spacing: 2px;
   color: #c9bc9c;
   margin-top: 0;
   margin-bottom: 1.5rem;
   text-transform: uppercase;
}

.footer-column p {
   margin: 0 0 1em 0;
}

.footer-column ul {
   list-style: none;
   padding: 0;
   margin: 0;
}

.footer-column li {
   margin-bottom: 0.8rem;
}

.footer-column a {
   color: #faf9f5;
   text-decoration: none;
   transition: color 0.3s ease;
}

.footer-column a:hover {
   color: #c9bc9c;
}

.social-links {
   margin-top: 2.3rem; /* Add space above the icons */
}

.social-links a {
  /* display: inline-flex;
   justify-content: center;
   align-items: center;
   width: 44px;
   height: 44px;
   border: 2px solid rgba(250, 249, 245, 0.4);
   border-radius: 50%;
   transition: all 0.3s ease;*/
   font-size: 2em;
}

/*.social-links a:hover {
   background-color: #faf9f5;
   color: #864433; 
   transform: scale(1.1);
   border-color: #faf9f5;
}*/

.footer-copyright {
   text-align: center;
   border-top: 1px solid rgba(250, 249, 245, 0.15);
   padding-top: 40px;
   margin-top: 10px; /* Value is margin-bottom from .footer-columns (50) minus padding-top (40) */
}

.footer-copyright p {
   margin: 0;
   font-size: 0.8em;
   color: rgba(250, 249, 245, 0.7);
}

/* =================================
Back to Top Button
==================================== */
.back-to-top-button {
   position: fixed;
   bottom: 30px;
   right: 30px;
   z-index: 999;
   display: inline-flex;
   justify-content: center;
   align-items: center;
   width: 50px;
   height: 50px;
   background-color: #864433;
   color: #ffffff;
   border-radius: 50%;
   text-decoration: none;
   font-size: 22px;
   font-weight: bold;
   opacity: 0;
   visibility: hidden;
   transform: translateY(20px);
   transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}
.back-to-top-button.visible {
   opacity: 1;
   visibility: visible;
   transform: translateY(0);
}
.back-to-top-button:hover {
   background-color: #7d3727;
}

/* =================================
Fixed Reservation Button
==================================== */
.fixed-reservation-button {
   position: fixed;
   right: 0;
   top: 50%;
   transform: translateY(-50%);
   z-index: 998; /* Below other fixed elements like back-to-top */
   background-color: #864433;
   color: #faf9f5;
   padding: 25px 10px;
   writing-mode: vertical-rl;
   text-decoration: none;
   font-weight: 500;
   letter-spacing: 3px;
   border-top-left-radius: 8px;
   border-bottom-left-radius: 8px;
   transition: background-color 0.3s ease, letter-spacing 0.3s ease;
   font-family: "Noto Sans JP", sans-serif;
   border-left: 2px solid #faf9f5; 
   border-bottom: 2px solid #faf9f5; 
   border-top: 2px solid #faf9f5; 
}
.fixed-reservation-button:hover {
   color: #7d3727;
   background-color: #faf9f5;
   letter-spacing: 4px;
   border-left: 2px solid #864433; 
   border-bottom: 2px solid #864433; 
   border-top: 2px solid #864433; 
}
@media (max-width: 768px) {

   .fixed-reservation-button {
top:30%;
      padding: 15px 10px;
     font-size: 0.85em;
   }


   .overlay-logo {
      width: 80%;
   }

   .content-box p {
      font-size: 0.9em;
   }

   .overlay-subtitle {
      font-size: 0.75em;
   }

   .section-concept {
      padding: 80px 20px;
   }
   .concept-container {
      flex-direction: column;
      gap: 40px;
   }
   .concept-text {
      text-align: left;
      padding: 0;
   }

   .since-badge {
      top: -25px;
      right: -35px;
      font-size: 2.5em;
   }
   .section-managers-comment {
      padding: 50px 20px;
   }
   .manager-heading {
      width: 100%;
      margin-bottom: 2rem;
   }
   .manager-avatar {
      width: 100%;
   }
   .manager-greeting {
      font-size: 0.8em;

   }
   .comment-text {
      text-align: center;
   }
   .section-menu {
      padding: 80px 20px;
   }
   .menu-container {
      flex-direction: column;
      gap: 40px;
   }
   .menu-container + .menu-container {
      margin-top: 60px;
      flex-direction: column-reverse;
   }

   .section-title {
      font-size: 2.1em;
   }


   .section-menu .section-title {
      font-size: 2.1em;
   }
   .section-party {
      padding: 80px 20px;
   }
   .party-container {
      flex-direction: column;
      gap: 40px;
   }
   .section-party .section-title {
      font-size: 2.2em;
   }

   .section-daily-special {
      padding: 60px 20px;
   }

   .special-dish-name {
      font-size: 1.5em;
   }



   .section-news-ticker {
      padding: 15px 20px;
   }
   .news-ticker-container {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
   }
   .news-title {
      white-space: normal; /* 讓標題在手機上可以換行 */
   }
   .nav-container {
      flex-direction: column;
      
   }
   .nav-left {
      flex: 1;
      padding-top:20px;
   }
   .nav-links {
    text-align: center;
 }
      
      

   .nav-right {
      display: none;
   }

   .site-footer {
      padding: 60px 20px;
   }

   .footer-columns {
      flex-direction: column;

      gap: 0; /* Reset gap for margin control */
      margin-bottom: 30px;
   }

   .footer-column {
      margin-bottom: 40px;
   }

   .footer-column:last-child {
      margin-bottom: 0;
   }

   .footer-logo {
      max-width: 80px;
      margin-left: auto;
      margin-right: auto;
   }

   .back-to-top-button {
      bottom: 20px;
      right: 20px;
      width: 45px;
      height: 45px;
      font-size: 20px;
   }
}
