:root {
   --dark-bg: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
   --light-bg: #eee;
}

* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

body {
   font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
   line-height: 1.6;
   color: #333;
   background-color: var(--light-bg);
}

header {
   background-color: var(--light-bg);
   padding: 1rem 2rem;
   display: flex;
   justify-content: space-between;
   align-items: center;
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
   position: sticky;
   top: 0;
   z-index: 1000;
}

.logo-container {
   display: flex;
   align-items: center;
   gap: 0.5rem;
}

.logo-shape {
   width: 15px;
   height: 15px;
   background: #000;
}

.logo-square {
   border-radius: 2px;
}

.logo-circle {
   border-radius: 50%;
}

.logo-triangle {
   width: 0;
   height: 0;
   border-left: 7.5px solid transparent;
   border-right: 7.5px solid transparent;
   border-bottom: 15px solid #000;
   background: transparent;
}

nav {
   display: flex;
   gap: 1rem;
   align-items: center;
}

nav a {
   color: #999;
   text-decoration: none;
   font-size: 1rem;
   transition: color 0.3s;
}

nav a:hover {
   color: #333;
}

.call-btn {
   background: #000;
   color: #fff;
   padding: 0.5rem 0.8rem;
   border-radius: 25px;
   text-decoration: none;
   font-size: 0.95rem;
   transition: background 0.3s;
}

.call-btn:hover {
   background: #333;
   color: #fff;
}

.header-logo {
   height: 50px;
   width: auto;
}

.hero {
   background: var(--dark-bg);
   color: white;
   padding: 3rem 2rem;
   text-align: center;
}

.hero-logo {
   max-width: 180px;
   margin: 0 auto;
   mix-blend-mode: lighten;
}

.hero h1 {
   font-size: 3rem;
   margin-bottom: 1rem;
   font-weight: 700;
   position: relative;
   z-index: 10;
}

.hero p {
   font-size: 1.3rem;
   font-weight: 600;
   color: #cacaca;
}

.container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 2rem;
}

section {
   scroll-margin-top: 82px;
}

.chopsticks {
   position: relative;
   margin: 0 auto;
   top: -170px;
   right: -50px;
   width: fit-content;
}

.chopstick {
   position: absolute;
   width: 300px;
   height: 8px;
   background: linear-gradient(to right, #d4a574, #c89968, #d4a574);
   border-radius: 4px;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.chopstick::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 2px;
   background: rgba(255, 255, 255, 0.3);
   border-radius: 4px 4px 0 0;
}

.chopstick::after {
   content: "";
   position: absolute;
   width: 60px;
   height: 100%;
   right: 0;
   background: linear-gradient(to right, transparent, rgba(139, 69, 19, 0.3));
   border-radius: 0 4px 4px 0;
}

.chopstick-left {
   transform: rotate(-15deg) translateX(-80px);
   animation: chopstickLeft 2s ease-in-out infinite;
}

.chopstick-right {
   transform: rotate(-23deg) translateX(-80px);
   animation: chopstickRight 2s ease-in-out infinite;
}

@keyframes chopstickLeft {
   0%,
   100% {
      transform: rotate(-15deg) translateX(-80px);
   }
   50% {
      transform: rotate(-18deg) translateX(-85px);
   }
}

@keyframes chopstickRight {
   0%,
   100% {
      transform: rotate(-23deg) translateX(-80px);
   }
   50% {
      transform: rotate(-19deg) translateX(-80px);
   }
}

.menu-section {
   display: flex;
   flex-direction: column;
   align-items: center;
   padding: 2rem 2rem;
}

.section-title {
   text-align: center;
   font-size: 2.5rem;
   font-weight: 600;
   color: #1a1a2e;
}

.menu-grid {
   display: flex;
   flex-wrap: nowrap;
   justify-content: flex-start;
   gap: 1rem;
   max-width: 100%;
   margin: 0 auto;
   overflow-x: auto;
   overflow-y: visible;
   padding: 2rem 1rem;
   scroll-behavior: smooth;
   -webkit-overflow-scrolling: touch;
}

.menu-btn {
   display: inline-block;
   padding: 0.8rem 2rem;
   background: #4169e1;
   color: white;
   text-decoration: none;
   border-radius: 6px;
   transition: background 0.3s;
   font-weight: 500;
}

.menu-btn:hover {
   background: #2952cc;
}

.hours-section {
   padding: 2rem 2rem;
   text-align: center;
}

.hours-icon {
   width: 80px;
   height: 80px;
   background: #4169e1;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto;
   color: white;
   font-size: 2.5rem;
}

.hours-container {
   max-width: 900px;
   margin: 1rem auto 0 auto;
   background: #f8f9fa;
   border-radius: 12px;
   padding: 2.5rem;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.hours-row {
   display: flex;
   justify-content: space-between;
   padding: 1.2rem 2rem;
   border-bottom: 1px solid #e0e0e0;
   font-size: 1.1rem;
}

.hours-row:last-child {
   border-bottom: none;
}

.day {
   font-weight: 400;
   color: #1a1a2e;
}

.time {
   color: #4169e1;
   font-weight: 500;
}

.visit-section {
   background: var(--dark-bg);
   color: white;
   padding: 2rem 2rem;
}

.visit-content {
   max-width: 1200px;
   margin: 0 auto;
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 2rem;
   align-items: start;
}

.visit-section h2 {
   font-size: 2.8rem;
   text-align: center;
   grid-column: 1 / -1;
}

.contact-info h3 {
   font-size: 1.8rem;
   margin-bottom: 2rem;
   font-weight: 600;
}

.info-item {
   display: flex;
   align-items: flex-start;
   gap: 1.2rem;
   margin-bottom: 2rem;
}

.info-icon {
   width: 45px;
   height: 45px;
   background: rgba(65, 105, 225, 0.2);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   color: #4169e1;
}

.info-details h4 {
   font-size: 1.1rem;
   margin-bottom: 0.3rem;
   font-weight: 500;
}

.info-details p {
   color: #b3b3b3;
   line-height: 1.6;
}

.info-details a {
   color: #b3b3b3;
   text-decoration: none;
}

.info-details a:hover {
   color: #4169e1;
}

.location-map {
   overflow: hidden;
}

.location-map h3 {
   font-size: 1.8rem;
   margin-bottom: 1.5rem;
   font-weight: 600;
}

.map-embed {
   width: 100%;
   height: 400px;
   border: none;
   border-radius: 8px;
}

footer {
   background: #0f0f0f;
   color: #b3b3b3;
   padding: 3rem 2rem;
}

.footer-content {
   max-width: 1200px;
   margin: 0 auto;
   display: grid;
   grid-template-columns: 1.5fr 1fr 1fr;
   gap: 3rem;
   padding-bottom: 2rem;
   border-bottom: 1px solid #333;
}

.footer-logo {
   max-width: 100px;
   margin-bottom: 1rem;
}

.footer-tagline {
   color: #999;
   font-size: 0.95rem;
}

.footer-section h4 {
   color: #fff;
   margin-bottom: 1.2rem;
   font-size: 1.1rem;
   font-weight: 600;
}

.footer-links {
   list-style: none;
}

.footer-links li {
   margin-bottom: 0.7rem;
}

.footer-links a {
   color: #b3b3b3;
   text-decoration: none;
   transition: color 0.3s;
   font-size: 0.95rem;
}

.footer-links a:hover {
   color: #4169e1;
}

.social-link {
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   color: #b3b3b3;
   text-decoration: none;
   transition: color 0.3s;
}

.social-link:hover {
   color: #4169e1;
}

.footer-bottom {
   text-align: center;
   padding-top: 2rem;
   font-size: 0.9rem;
}

.mobile-menu-btn {
   display: none;
   background: none;
   border: none;
   font-size: 1.5rem;
   cursor: pointer;
   color: #333;
}
.header-right {
   display: flex;
   align-items: center;
   gap: 1rem;
}

@media (max-width: 968px) {
   .visit-content {
      grid-template-columns: 1fr;
   }
}

@media (max-width: 768px) {
   header {
      padding: 1rem 1.5rem;
   }
   .header-right {
      gap: 1rem;
   }
   nav {
      display: none;
   }

   .mobile-menu-btn {
      display: block;
   }

   .hero h1 {
      font-size: 2.2rem;
   }

   .hero p {
      font-size: 1.1rem;
   }

   .section-title {
      font-size: 2rem;
   }

   .menu-grid {
      grid-template-columns: 1fr;
   }

   .hours-row {
      flex-direction: column;
      gap: 0.5rem;
      padding: 1rem;
   }

   .chopsticks {
      right: 50px;
   }

   .footer-content {
      grid-template-columns: 1fr;
      gap: 2rem;
   }
}

@media screen and (max-width: 435px) {
   body {
      overflow-x: hidden;
   }
}

.materialboxed {
   display: block;
   cursor: -webkit-zoom-in;
   cursor: zoom-in;
   position: relative;
   -webkit-transition: opacity 0.4s;
   transition: opacity 0.4s;
   -webkit-backface-visibility: hidden;
}
.materialboxed:hover:not(.active) {
   opacity: 0.8;
}
.materialboxed.active {
   cursor: -webkit-zoom-out;
   cursor: zoom-out;
}
#materialbox-overlay {
   position: fixed;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   background-color: #292929;
   z-index: 1000;
   will-change: opacity;
}

img.materialboxed:not(.active) {
   width: 100%;
   margin: 10px 0;
}

.menus-container {
   overflow: auto;
   height: 800px;
   max-width: 700px;
   width: 100%;
}

.menu-grid::-webkit-scrollbar {
   height: 8px;
}

.menu-grid::-webkit-scrollbar-track {
   background: #f1f1f1;
   border-radius: 10px;
}

.menu-grid::-webkit-scrollbar-thumb {
   background: #ccc;
   border-radius: 10px;
}

.menu-grid::-webkit-scrollbar-thumb:hover {
   background: #999;
}

.menu-card {
   display: inline-flex;
   align-items: center;
   background: white;
   padding: 5px 15px;
   border-radius: 30px;
   border: 2px solid #e0e0e0;
   box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
   text-decoration: none;
   transition: all 0.3s ease;
   color: #1a1a2e;
   font-weight: 500;
   font-size: 1.1rem;
   position: relative;
   overflow: hidden;
   flex-shrink: 0;
   white-space: nowrap;
}

.menu-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
   border-color: #4169e1;
}

.menu-icon {
   font-size: 1.8rem;
   margin: 0;
   position: relative;
   z-index: 1;
   filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
.menu-card h3 {
   font-size: 1rem;
   margin: 0;
   color: #1a1a2e;
   font-weight: 600;
   position: relative;
   z-index: 1;
}

.menu-card.drinks {
   border: 2px solid #4169e1;
   position: relative;
   overflow: hidden;
}
.menu-card.drinks svg {
   width: 230px;
   position: absolute;
   left: -40px;
   bottom: -1px;
}

.menu-card.drinks:hover,
.menu-card.drinks.active {
   border-color: #2952cc;
   box-shadow: 0 0px 30px rgba(0, 26, 255, 0.3);
}

.menu-card.sushi {
   border: 2px solid #ff6b6b;
   background: linear-gradient(
      0deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0) 60%,
      rgba(255, 122, 122, 1) 80%,
      rgba(255, 0, 0, 1) 100%
   );
}

.menu-card.sushi:hover,
.menu-card.sushi.active {
   border-color: #ff5252;
   box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.menu-card.soups {
   border: 2px solid #ffa726;
}

.menu-card.soups:hover,
.menu-card.soups.active {
   border-color: #ff9800;
   box-shadow: 0 0px 30px rgba(255, 167, 38, 0.3);
}

.menu-card.salads {
   border-color: #66bb6a;
   background: linear-gradient(135deg, #e8f5e9 0%, #ffffff 100%);
}

.menu-card.salads::before,
.menu-card.salads::after {
   background: transparent;
   opacity: 0.6;
   z-index: 0;
   position: absolute;
}

.menu-card.salads::before {
   content: "🍃";
   top: 40%;
   right: 30%;
   font-size: 1.2rem;
   animation: leafFloat 4s ease-in-out infinite;
}

.menu-card.salads::after {
   content: "🍃";
   bottom: 25%;
   right: 15%;
   font-size: 0.9rem;
   animation: leafFloat 4s ease-in-out infinite 1s;
}

@keyframes leafFloat {
   0%,
   100% {
      transform: translateY(0) rotate(0deg);
   }
   25% {
      transform: translateY(-10px) rotate(5deg);
   }
   75% {
      transform: translateY(-5px) rotate(-5deg);
   }
}

.menu-card.salads:hover,
.menu-card.salads.active {
   border-color: #4caf50;
   box-shadow: 0 0px 30px rgba(102, 187, 106, 0.3);
}

.menu-card.main-dishes {
   border: 2px solid #26c6da;
}

.menu-card.main-dishes:hover,
.menu-card.main-dishes.active {
   border-color: #00bcd4;
   box-shadow: 0 0px 30px rgba(38, 198, 218, 0.3);
}

.menu-card.main-dishes::before,
.menu-card.main-dishes::after {
   background: transparent;
   position: absolute;
   z-index: 0;
}

.menu-card.main-dishes::before {
   content: "✨";
   top: 10%;
   left: -10%;
   font-size: 3rem;
   animation: sparkle 2s ease-in-out infinite;
}

.menu-card.main-dishes::after {
   content: "✨";
   bottom: 15%;
   right: 10%;
   font-size: 2rem;
   animation: sparkle 2s ease-in-out infinite 0.7s;
}

@keyframes sparkle {
   0%,
   100% {
      opacity: 0;
      transform: scale(0) rotate(0deg);
   }
   50% {
      opacity: 1;
      transform: scale(1) rotate(180deg);
   }
}

@media screen and (max-width: 450px) {
   .chopstick {
      width: 220px;
   }
   .chopsticks {
      right: 30px;
   }
}
