



html {
  scroll-behavior: auto !important; /* Disable default smooth scroll */

  
}


body::-webkit-scrollbar {
  display: none;
}

 


.invert-dot {
    position: fixed;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    pointer-events: none;
    backdrop-filter: invert(1);
    -webkit-backdrop-filter: invert(1);
    clip-path: circle(50% at 50% 50%);
    transform: translate(-50%, -50%);
    z-index: 9999;
  }
 
 
 * {
  padding: 0;
  margin: 0;
  /* box-sizing: border-box; */

  
}

.main-body {
  background-color:#292929 ;
  color: #292929;
  font-family: sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  transition: color 0.3s, background-color 0.3s;
  display: block;




}





h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.heading {
  font-size: 2.5rem;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0.04em 0.04rem 0 #81b5ab;
}

.section {
  overflow: hidden;
}

.wrapper {
  height: 100vh;
}

.list {
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  display: flex;
  position: relative;
  padding: 0.2rem;
}

/* .item {
  width: 100vw;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
  
} */

.item {
  width: 100vw;
  height: 100%;
  display: flex;
  position: absolute; /* ✅ Keep this */
  inset: 0%;
  overflow: hidden;
  z-index: 1; /* Lower than sticky image */
}




.item_content {
  background-color: #fff;
  color: #292929;
  flex-flow: column;
  /* justify-content: center; */
  align-items: flex-start;
  padding: 1rem;
  display: flex;
  position: relative;
  width: 50%;



    margin-left: 12vw; /* Same as image width */
  padding-left: 2rem; /* Some spacing */
}

.item_media {
  object-fit: cover;
  width: 50%;
  height: 100%;
}

.padding-global {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.padding-vertical {
  padding: 2rem;
}







/* Wrapper for items with a sticky image */
.item.with-sticky-image {
  display: flex;
  flex-direction: row;
  align-items: stretch;
 
}
.item.item-overlap{
  width: 100%;
}


/* 
.sticky-side-image {
  position: fixed;
  left: 0;
  top: 0;
  width: 12vw; 
  height: 100vh;
  flex-shrink: 0;
  z-index: 9999;
  background-color: #000; 

  pointer-events: none;
}

.sticky-side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */



/* Fixed container on the left side */
.sticky-side-image {
  position: fixed;
  left: 0;
  top: 0;
  width: 12vw;
  height: 100vh;
  flex-shrink: 0;
  z-index: 9999;
  background-color: #000;
  pointer-events: none;
  overflow: hidden; /* important: clip moving image */
}

/* Moving image inside the container */
.sticky-side-image img {
  width: 110%; /* slightly wider than container for motion range */
  height: 100%;
  object-fit: cover;

  animation: drift-image-horizontal 4s ease-in-out infinite alternate;
}

/* Animation keyframes */
@keyframes drift-image-horizontal {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-10%);
  }
}


/* Right-side content stays as-is */
.item.with-sticky-image .item_content {
  flex: 1;
  padding: 0rem;
  display: flex;
  flex-direction: column;
  
}
.item-overlap .item_content {
  margin-left: 0; /* Let it overlap on top */
}
.item-overlap .item_media {
  margin-left: 0;
}






/* japan code */






.stacked-heading {
  font-size: 2.5rem;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0.04em 0.04rem 0 #81b5ab;
}

.stacked-section {
  overflow: hidden;
}

.stacked-wrapper {
  height: 100vh;
}

.stacked-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  position: relative;
  padding: 0.2rem;
}

.stacked-item {
  width: 100vw;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
  
  overflow: hidden;
  z-index: 1;
}
/* .stacked-item.with-sticky-image{
    display: flex;
  flex-direction: row;
  align-items: stretch;
  position: relative;
} */



.stacked-item_number {
  font-size: 1.5rem;
  height: 3rem;
  width: 3rem;
  margin-bottom: 0.5rem;
  border-radius: 50%;
  background-color: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  position: absolute;
  top: 6rem;
  left: 3rem;
}

.stacked-item_content {
  background-color: #fff;
  color: #292929;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding: 3rem;
  display: flex;
  position: relative;
  width: 50%;
}

.stacked-item_media {
  object-fit: cover;
  width: 50%;
  height: 100%;
}



/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
/* === OUR STORY Animations (Similar to sushi) === */

/* === OUR STORY Animations (Similar to sushi) === */
.ourstory-letter {
  display: inline-block;
  font-size: 18rem;
  font-family: 'Anton', sans-serif;
  color: white;
  transition: transform 1.2s cubic-bezier(0.2, 1, 0.7, .9);
  will-change: transform;
}

/* Slide-left class to trigger animation */
.ourstory-slide-left {
  transform: translateX(-130%);
}

/* Animation states for letters */
.ourstory-move-down .ourstory-letter {
  transform: translateY(20px); /* Adjust as needed */
}

.ourstory-move-up .ourstory-letter {
  transform: translateY(-20px); /* Adjust as needed */
}

.ourstory-slide-left .ourstory-letter {
  transform: translateX(-130%);
}

/* === STORY Section (Similar to hero-headline-block) === */
.story-section {
  opacity: 0;
  transition: opacity 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  /* INITIALLY COMPLETELY HIDDEN */
  visibility: hidden;
  pointer-events: none;
}

.story-content {
  display: flex;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  /* INITIALLY HIDDEN AND POSITIONED DOWN */
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.6s ease;
}

.story-section.animate {
  /* Show the section */
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
}

.story-section.animate .story-content {
  opacity: 1;
  transform: translateY(0);
}

.story-section.hide {
  /* Hide the section completely */
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
}

.story-section.hide .story-content {
  opacity: 0;
  transform: translateY(100%);
}

.story-text {
  flex: 1;
  color: white;
}

.story-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.story-milestone h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ff4500;
}

.story-milestone ul {
  list-style: none;
  padding: 0;
}

.story-milestone li {
  padding: 0.5rem 0;
  font-size: 1.1rem;
}

.story-images {
  flex: 1;
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.story-img {
  width: 200px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  /* INITIALLY HIDDEN */
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.6s ease;
}

.story-section.animate .story-img:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.story-section.animate .story-img:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

/* === Layout adjustments === */
.ourstory-item {
  position: relative; /* Important for absolute positioning of story-section */
}

.ourstory-trigger {
  position: relative;
  z-index: 10;
}

/* Make the lines stack properly */
.ourstory-line {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
}



/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@2 */


.restaurant-about-section {
            display: flex;
            min-height: 100vh;
            background-color: #ffffff;
            position: relative;
        }

        .content-left-area {
            flex: 1;
            padding: 80px 60px;
            background-color: #ffffff;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

 .restaurant-story-text {
    font-size: 21px;
    line-height: 1.4;
    color: #333;
    margin-bottom: 159px;
    margin-top: 150px;
    font-weight: 400;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s ease-out;
}
        .restaurant-story-text.animate-up {
            transform: translateY(0);
            opacity: 1;
        }

        .milestone-section {
            transform: translateY(50px);
            opacity: 0;
            transition: all 0.8s ease-out 0.3s;
            display: flex;
            gap: 20px;
        }

        .milestone-section.animate-up {
            transform: translateY(0);
            opacity: 1;
        }

        .milestone-heading {
            font-size: 22px;
            font-weight: bold;
            color: #333;
            margin-bottom: 10px;
            letter-spacing: 1px;
            margin-top: 90px;
        }

        .milestone-timeline {
            list-style: none;
        }

        .milestone-item {
            font-size: 14px;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .milestone-year {
            font-weight: bold;
        }

        .images-right-area {
            flex: 1;
            position: relative;
            background-color: transparent;
            display: flex;
            flex-direction: column;
        }

        .top-images-container {
            display: flex;
            height: 60vh;
            gap: 30px;
            
        }

        .chef-restaurant-image {
            flex: 1;
            width: 50%;
            height: 84.5vh;
            object-fit: cover;
            transform: translateY(-350px);
            opacity: 0;
            transition: all 1s ease-out 0.4s;
        }

        .chef-restaurant-image.animate-down {
            transform: translateY(0);
            opacity: 1;
        }

        .lantern-image {
            flex: 1;
            width: 50%;
            height: 100%;
            background-color: transparent;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translateY(-350px);
            opacity: 0;
            transition: all 1s ease-out 0.8s;
        }

        .lantern-image.animate-down {
            transform: translateY(0);
            opacity: 1;
        }


               .japanese-lantern img{
                width: 100%;
                height: 110vh;
              }


        /* .japanese-lantern {
            width: 120px;
            height: 200px;
            background: linear-gradient(45deg, #f4d03f, #f39c12);
            border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 30px rgba(243, 156, 18, 0.4);
        } */

        .bottom-empty-space {
            flex: 1;
            background-color: transparent;
        }

        .lantern-text {
            font-size: 18px;
            font-weight: bold;
            color: #d32f2f;
            text-align: center;
            writing-mode: vertical-rl;
            text-orientation: upright;
        }

        .lantern-lines {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .lantern-line {
            position: absolute;
            width: 100%;
            height: 2px;
            background-color: rgba(0, 0, 0, 0.2);
        }

        .lantern-line:nth-child(1) { top: 20%; }
        .lantern-line:nth-child(2) { top: 30%; }
        .lantern-line:nth-child(3) { top: 40%; }
        .lantern-line:nth-child(4) { top: 50%; }
        .lantern-line:nth-child(5) { top: 60%; }
        .lantern-line:nth-child(6) { top: 70%; }
        .lantern-line:nth-child(7) { top: 80%; }

        /* Trigger section for scroll animation */
        .trigger-section {
            height: 200vh;
            background: linear-gradient(to bottom, #f0f0f0, #e8e8e8);
        } 



        /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SECOND PART SECOND IMAGE %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */


        /* .testimonial-wrapper {
          padding-top: 0px;
          margin-left: 150PX;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding-right: 40px;
  padding-left: 40px;
          background-color: white;
}

.testimonial-heading {
  writing-mode: vertical-rl;
transform: rotate(180deg);

  text-orientation: mixed;
  font-size: 80px;
  font-weight: bold;
  margin-right: 40px;
  margin-top: 60px;
  letter-spacing: -4px;
}

.testimonial-container {
  display: flex;
  gap: 40px;
}

.testimonial-card {
  max-width: 300px;
  text-align: center;
}

.testimonial-img {
  width: 90%;
  height: auto;
  display: block;
}

.testimonial-text {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.5;
} */



.testimonial-wrapper {
  padding-top: 0px;
  margin-left: 150px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding-right: 40px;
  padding-left: 40px;
  background-color: white;
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
  overflow: hidden; /* prevent vertical overflow */
}

/* Vertical heading on the left */
.testimonial-heading {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-orientation: mixed;
  font-size: 80px;
  font-weight: bold;
  margin-right: 40px;
  margin-top: 60px;
  letter-spacing: -4px;
  flex-shrink: 0;
}


.testimonial-container {
  display: flex;
  flex-direction: row;
  gap: 30px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  padding-right: 20px;
  flex: 1;
  scroll-behavior: smooth;


  scrollbar-width: none; /* Firefox */
}

.testimonial-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

/* Each card inside scroll track */
.testimonial-card {
  flex: 0 0 auto;
  width: 300px;
  text-align: center;
  scroll-snap-align: start;
}

.testimonial-img {
  width: 75%;
  height: auto;
  display: block;
}

.testimonial-text {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.5;
}










.reservation-section {
  display: flex;
  height: 100vh;
  position: relative;
  width: 100%;
}

.reservation-left {
  flex: 1;
  background-color: #000;
}

.reservation-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reservation-right {
  flex: 1;
  padding: 60px 200px;
  background-color: #f6f6f6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 500px;
  padding-bottom: 0px;
  padding-top: 250px;
}

.reservation-info {
    position: absolute;
    top: 10px;
    left: 340px;
    color: #000;
    font-size: 13px;
    line-height: 1.8;
}

.reservation-heading {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;

}

.reservation-hours,
.reservation-phone,
.reservation-email,
.reservation-address {
  margin: 5px 0;
}

.reservation-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reservation-input,
.reservation-textarea {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #999;
  padding: 10px 0;
  font-size: 16px;
  color: #333;
  outline: none;
}

.reservation-input::placeholder,
.reservation-textarea::placeholder {
  color: #aaa;
}

.reservation-textarea {
  resize: none;
  height: 80px;
  border-bottom: 1px solid #999;
}

.reservation-submit {
  margin-top: 10px;
  align-self: flex-end;
  padding: 10px 25px;
  font-size: 16px;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s ease;

  
}

.reservation-submit:hover {
  background-color: #000;
  color: #fff;
}

.reservation-arrow {
  font-weight: bold;
}

.reservation-title {
  font-size: 50px;
  font-weight: bold;
  margin-top: 40px;
    position: absolute;
  bottom: 10px;
  left: 340px;
}







/* 
.sushiMenu-wrapper {
  width: 100%;
  height: 100vh;
  overflow: auto; 
  
}

.sushiMenu-scroll-content {
  display: flex;
  min-height: 140vh; 
}

.sushiMenu-scroll-area {
  width: 30%;
  overflow: hidden; 
}


.sushiMenu-image-track {
  display: flex;
  flex-direction: column;
}

.sushiMenu-image-track img {
  width: 100%;
  height: 35vh;
  object-fit: cover;
  display: block;
}

.sushiMenu-info-panel {
  width: 70%;
  padding: 80px 60px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: sticky;
  top: 0;
  height: 100vh;
  background: white;
}

.sushiMenu-heading {
  font-size: 60px;
  margin-bottom: 20px;
}

.sushiMenu-item-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.sushiMenu-item {
  font-size: 28px;
  margin-bottom: 10px;
}

.sushiMenu-decor-dot {
  width: 10px;
  height: 10px;
  background: black;
  border-radius: 50%;
  margin: 30px 0;
}

.sushiMenu-description {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}
.sushiMenu-wrapper::-webkit-scrollbar {
  display: none;
} */


/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ Second trial */
.sushiMenu-wrapper {
  width: 100%;

}

.sushiMenu-scroll-content {
  display: flex;
  height: 100vh; 
}

.sushiMenu-scroll-area {
  width: 30%;
  overflow: hidden; 
  height: 100vh;
}

.sushiMenu-image-track {
  display: flex;
  flex-direction: column;
}

.sushiMenu-image-track img {
  width: 100%;
  height: 35vh;
  object-fit: cover;
  display: block;
}

.sushiMenu-info-panel {
  width: 70%;
  padding: 50px 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;

  position: sticky;
  top: 0;
  height: 100vh;
  background: white;
}

.sushiMenu-scroll-area::-webkit-scrollbar {
  display: none;
}
.sushiMenu-heading{
  font-size: 85px;
  letter-spacing: -9px;
  margin-bottom: 40px;

}
.sushiMenu-item{
  font-size: 30px;
  font-weight: 600;
  list-style: none;
  margin-left: 5px;
}
.sushiMenu-description{
  position:absolute;
  bottom:  70px;
  right: 20px;
  font-size: 20px;
  font-weight: 600;
}





/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% IMAGE REVEAL SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */




.img-reveal-container {
  position: relative;
  width: 36%;
  height: 70vh;
  display: flex;
  justify-content: flex-end; /* 👈 pushes image to the right */

}

.img-reveal {
  width: 200px;
  height: 100%;
  overflow: hidden;
  
  transition: width 2s ease-in-out; /* 👈 slowest smooth transition */
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  transform-origin: right center;
}

.img-reveal.expand {
  width: 650px;
}


.img-reveal img {
  width: auto;
  height: 100%;
  object-fit: cover;
  object-position: left;
  display: block;
}






.imgRevealTwo-container {
  position: relative;
  width: 63%;
  height: 70vh;
  display: flex;
  justify-content: flex-end;
}

.imgRevealTwo-box {
  width: 200px;
  height: 100%;
  overflow: hidden;
  transition: width 2s ease-in-out;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform-origin: right center;
}

.imgRevealTwo-box.expand {
  width: 650px;
}

.imgRevealTwo-box img {
  width: auto;
  height: 100%;
  object-fit: cover;
  object-position: left;
  display: block;
}



.imgRevealThree-container {
  position: relative;
  width: 63%;
  height: 70vh;
  display: flex;
  justify-content: flex-end;
}

.imgRevealThree-box {
  width: 200px;
  height: 100%;
  overflow: hidden;
  transition: width 2s ease-in-out;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform-origin: right center;
}

.imgRevealThree-box.expand {
  width: 650px;
}

.imgRevealThree-box img {
  width: auto;
  height: 100%;
  object-fit: cover;
  object-position: left;
  display: block;
}







.item_content h2,
.item_content button,
.item_content p,
.item_content span {
  position: absolute;
  margin: 0;
}

/* Example positions - adjust as needed */
.item_content h2 {
  bottom: 20px;
  left: 100px;
  font-size: 6rem;
  text-transform: uppercase;
  color: black;
  letter-spacing: -8px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.item_content button {
  top: 70px;
  left: 470px;
  text-transform: uppercase;
  padding: 13px;
  border-radius: 50px;
  border: 1px solid;
  font-size: 20px;
  font-weight: bold;
  background-color: transparent;
}

.r1p {
  top: 250px;
   right: 187px;
   text-transform: uppercase;
   font-weight: 600;
}

.r1s {
  bottom: 270px;
   right: 65px;
   font-size: 16px;
   block-size: 600;
   
}


.r2p {
  top: 250px;
   right: -300px;
   text-transform: uppercase;
   font-weight: 600;
}

.r2s {
  bottom: 270px;
   right: -420px;
   font-size: 16px;
   block-size: 600;
   
}

.r3p {
  top: 250px;
   right: -275px;
   text-transform: uppercase;
   font-weight: 600;
}

.r3s {
  bottom: 270px;
   right: -420px;
   font-size: 16px;
   block-size: 600;
   
}
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */



.sushi-character-element {
  opacity: 0;
  transform: translateY(530px);
  transition: transform 0.1s ease, opacity 0.6s ease;



}

.sushi-character-element.animate-up {
  opacity: 1;
  transform: translateY(0);
}




.div{
  display: flex;
  justify-content: space-between;
  background-color: transparent;
}
.div h1{
  font-size: 29px;
  color: #c3bebe;
  position: absolute;
  top: 10px;
  left: 60px;
  letter-spacing: -2px;
  
}
















/* ---------------------------
   Toggle Button (Hamburger)
---------------------------- */
.ym-toggle-btn {
  position: fixed;
  top: 20px;
  right: 70px;
  z-index: 1000010;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  cursor: pointer;
  background: transparent;
  border: none;
}

.ym-bar {
  width: 100%;
  height: 4px;
  background-color: #a29c9c;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* No transformation on active — keep bars as-is */


/* ---------------------------
   Slide Down Menu Panel
---------------------------- */
.ym-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  transform: translateY(-100%);
  transition: transform 0.5s ease-in-out;
  z-index: 10000;
  display: flex;

  justify-content: space-between;
  padding: 0px 40px;
  box-sizing: border-box;
  overflow-y: auto;
  
}

.ym-menu-wrapper.active {
  transform: translateY(0%);
}


/* ---------------------------
   Menu Content Styling
---------------------------- */
.ym-brand {
  font-size: 29px;
  color: rgb(0, 0, 0);
  position: absolute;
  top: 10px;
  left: 60px;
  letter-spacing: -2px;
  font-weight: 600;



}

.ym-menu-columns {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 40px;
  font-size: 1.5rem;
  height: 90vh;
}

/* Animated menu items */
.ym-menu-item {
  position: relative;
  font-size: 6rem;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  cursor: pointer;
  overflow: hidden;
  width: 150px; /* Adjust based on spacing */
  height: 100vh;
  display: flex;
  align-items: end;
  justify-content: flex-end;
 writing-mode: vertical-lr;

  


  text-orientation: mixed;
  font-weight: 100;
  color: #000;
  border-right: 1px solid rgb(180, 180, 180) ;
 
}

.ym-menu-item::before,
.ym-menu-item::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  transition: transform 0.4s ease;
  writing-mode: inherit;
  text-orientation: inherit;
  color: #000;
}

.ym-menu-item::before {
  transform: translateX(0%);
}

.ym-menu-item::after {
  transform: translateX(100%);
}

.ym-menu-item:hover::before {
  transform: translateX(-100%);
}

.ym-menu-item:hover::after {
  transform: translateX(0%);
}


/* ---------------------------
   Contact Section
---------------------------- */
.ym-contact {
  font-size: 0.9rem;
  margin-top: 200px;
  line-height: 1.6;
}


/* ---------------------------
   Social Buttons
---------------------------- */
.ym-socials {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.ym-socials button {
  padding: 10px 16px;
  background-color: white;
  color: black;
  border: 1px solid black;
  cursor: pointer;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.ym-socials button:hover {
  background-color: black;
  color: white;
}




/* our  */


.sushi-letter-row {
  display: flex;

  margin-bottom: 10px; /* spacing between rows */
}

/* OUR-specific overrides */
.sushi-our-row .sushi-character-element {
  font-size: 3rem; /* smaller font */
  width: 40px;
  height: 40px;
}

/* Optional: also reduce spacing between letters */
.sushi-our-row .sushi-individual-letter-container {
    margin: 0 4px;
    height: 148px;
    top: 0px;
    width: 33px;
}



/* footer section */


.yume-footer {
  background-color: #0f0f0f;
  padding: 0px 0px;
  text-align: center;
  width: 100%;
  height: 100vh;
}

.yume-footer-top {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 100px;
}

.yume-footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 160px;
  text-align: left;
}

.yume-footer-contact {
  text-align: right;
}

.yume-footer-contact-item {
  color: #d3d3d3;
  font-size: 16px;
  margin: 0;
}

.yume-footer-link {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.2s ease;
}

.yume-footer-link:hover {
  color: #ffffff;
}

.yume-footer-logo {
  font-size: 250px;
  
  line-height: 1;
  margin: 0 auto 0px;
  margin-top: 185px;
  color: #ffffff;
  letter-spacing: -19px;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.yume-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  max-width: 1200px;
  margin: 0 auto;
  color: #a0a0a0;
  margin-top: -90px;
}

.yume-footer-credit strong {
  color: #ffffff;
}

.yume-footer-powered {
  color: #bfbfbf;
}



* { margin: 0; padding: 0; box-sizing: border-box; }
    /* html, body {
      width: 100vw;
      height: 100vh;
      overflow: hidden;
      font-family: 'Anton', sans-serif;
      background: #242222 url('./images/6833ddf8d1f9479983c479f2_pattern1s.webp') center center no-repeat;
      background-size: 250px auto;
    } */

    .top-wrapper {
      width: 100vw;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;


     
      font-family: 'Anton', sans-serif;
      background: #242222 url('/images/6833ddf8d1f9479983c479f2_pattern1s.webp') center center no-repeat;
      background-size: 250px auto;
    }
    /* .item.special-item{
       font-family: 'Anton', sans-serif;
      background: #242222 url('./images/6833ddf8d1f9479983c479f2_pattern1s.webp') center center no-repeat;
      background-size: 250px auto;
    } */

    .sushi-section {
      display: flex;
      /* gap: 10px; */
      position: absolute;
      z-index: 10;
    }

    .sushi-letter {
      position: relative;
      width: 138px;
      height: 317px;
      overflow: hidden;
    }




    .sushi-char {
      position: absolute;
      width: 100%;
      text-align: center;
      font-size: 18rem;
      line-height: 100px;
      color: white; 
      /* font-family: 'Anton', sans-serif; */
      font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
      transition: transform 1.5s cubic-bezier(0.2, 1, 0.7, .9);
      font-weight: 600;

      



    

    }







    .sushi-top { top: -25px; }
    .sushi-bottom { top: 233px; }

    .sushi-move-down .sushi-top,
    .sushi-move-down .sushi-bottom {
      transform: translateY(92px);
    }

    .sushi-move-up .sushi-top,
    .sushi-move-up .sushi-bottom {
      transform: translateY(-92px);
    }

    .sushi-slide-left .sushi-top,
    .sushi-slide-left .sushi-bottom {
      transform: translateX(-130%);
    }

    .hero-headline-block {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 1;
    }

    .text-wrapper {
      overflow: hidden;
      height: 7.5rem;
      width: 100%;
    }

    .hero-line {
      font-size: 6rem;
      transform: translateY(100%);
      opacity: 0;
      color: white;
      font-weight: 500;
      animation: slideUp 0.6s ease forwards;
      animation-play-state: paused;
      font-weight: 500;
      font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    }

    .a1 { animation-delay: 0.2s; }
    .a2 { animation-delay: 0.6s;}
    .a3 { animation-delay: 1s; }

    .hero-headline-block.animate .hero-line {
      animation-play-state: running;
    }

    .hero-headline-block.hide .hero-line {
      animation: slideDown 0.5s ease forwards;
    }

    @keyframes slideUp {
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    @keyframes slideDown {
      to {
        transform: translateY(100%);
        opacity: 0;
      }
    }

    /* === Kanji Logo === */
    .kanji-logo-wrapper {
      position: absolute;
      bottom: -80px;
      right: 1px;
      width: 150px;
      height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 5;
      opacity: 0;
      transition: opacity 0.5s ease;
      pointer-events: none;
    }

    .kanji-logo-wrapper.visible {
      opacity: 1;
      pointer-events: auto;
    }

    .kanji-clip {
      overflow: hidden;
      height: 0;
      animation: revealKanji 3s ease-out forwards;
    }

    .kanji-char {
      font-family: 'Noto Serif JP', serif;
      font-weight: 900;
      font-size: 220px;
      color: #ff4500;
      line-height: 1;
    }

    @keyframes revealKanji {
      to {
        height: 300px;
      }
    }





/* Make section fill the viewport and center its contents */
.ourstory-trigger {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
}

/* Main title wrapper */
.ourstory-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-family: sans-serif;
  font-size: 4rem;
  font-weight: bold;
  overflow: hidden;
  justify-content: center;
}

/* Each line ("OUR" / "STORY") */
.ourstory-line {
  display: flex;
  gap: 0.2rem;
  justify-content: center;
}

/* Animation for each letter */
.ourstory-letter {
  transform: translateX(-100px);
  opacity: 0;
  display: inline-block;
  animation: ourstory-slideIn 0.6s forwards;
  animation-delay: var(--delay);
  animation-play-state: paused;
}

/* Trigger to start animation */
.ourstory-animate-in .ourstory-letter {
  animation-play-state: running;
}

/* Keyframe */
@keyframes ourstory-slideIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}



/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
 .sushi-main-container-wrapper {
      width: 100vw;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
    }

    .sushi-interactive-text-section {
      display: flex;
      gap: 10px;
      position: absolute;
      z-index: 10;
    }

    .sushi-individual-letter-container {
      position: relative;
      width: 144px;
      height: 397px;
      overflow: hidden;
    }

    .sushi-character-element {
      position: absolute;
      width: 100%;
      text-align: center;
      font-size: 18rem;
      line-height: 100px;
      color: white;
      font-weight: 500;
      font-family: 'Anton', sans-serif;
      transition: transform 1s cubic-bezier(0.2, 1, 0.7, .9);
    }

    .sushi-character-top-position { top: 74px;  color: black;font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;}


    .sushi-letter-slide-left-animation .sushi-character-top-position,
    .sushi-letter-slide-left-animation .sushi-character-bottom-position {
      transform: translateX(-130%);
        transition:  ease-in-out 1.5s;  

    }

    .hero-headline-content-block {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 20; 
      position: relative;
      width: 100%;
    }

    .hero-text-overflow-wrapper {
      overflow: hidden;
      height: 8.5rem;
      width: 100%;
    }

    .hero-animated-line {
      font-size: 7rem;
      transform: translateY(100%);
      opacity: 0;
      color: white;
      font-weight: 500;
      animation: slideUp 0.6s ease forwards;
    
    }

    .hero-line-first { animation-delay: 0.2s; }
    .hero-line-second { animation-delay: 0.6s; }
    .hero-line-third { animation-delay: 1s; }

    /* .hero-headline-content-block.hero-animation-active .hero-animated-line {
      animation-play-state: running;
    } */

    .hero-headline-content-block.hero-animation-hide .hero-animated-line {
      animation: slideDown 0.5s ease forwards;
    }

    @keyframes slideUp {
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    @keyframes slideDown {
      to {
        transform: translateY(100%);
        opacity: 0;
      }
    }




    /* Hide initially */
.about-section-hidden {
  opacity: 0;
  pointer-events: none;
}

.about-section-visible {
  opacity: 1;
  pointer-events: auto;
}





    .unique-arrow-button {
      position: absolute;
      bottom: 50px;
      right: 70px;
      width: 50px;
      height: 50px;
      border: 1px solid #111;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      font-weight: bold;
      color: #111;
      padding: 30px;
      cursor: pointer;
      transition: background 0.2s ease;
    }

    .unique-arrow-button:hover {
      background-color: #e0e0e0;
    }

    .unique-arrow-button::before {
      content: "↗"; /* Unicode arrow */
      display: inline-block;
      transform: translate(1px, -1px); /* Tweak position if needed */
    }




    .unique-arrow-button2 {
      position: absolute;
      bottom: 50px;
      right: -440px;
      width: 50px;
      height: 50px;
      border: 1px solid #111;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      font-weight: bold;
      color: #111;
      padding: 30px;
      cursor: pointer;
      transition: background 0.2s ease;
    }

    .unique-arrow-button2:hover {
      background-color: #e0e0e0;
    }

    .unique-arrow-button2::before {
      content: "↗"; /* Unicode arrow */
      display: inline-block;
      transform: translate(1px, -1px); /* Tweak position if needed */
    }




 .unique-arrow-button3 {
      position: absolute;
      bottom: 50px;
      right: -440px;
      width: 50px;
      height: 50px;
      border: 1px solid #111;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      font-weight: bold;
      color: #111;
      padding: 30px;
      cursor: pointer;
      transition: background 0.2s ease;
    }

    .unique-arrow-button3:hover {
      background-color: #e0e0e0;
    }

    .unique-arrow-button3::before {
      content: "↗"; /* Unicode arrow */
      display: inline-block;
      transform: translate(1px, -1px); /* Tweak position if needed */
    }


.mobile{
  display: none;
}





/* @media screen and (min-width: 1024px) and (max-width: 1400px) { */

@media (min-width: 1400px) { 





  .sushi-letter {
    height: 360px;
    width: 170px;
    
  }

  .sushi-char {
    font-size: 21.7rem !important;
  }

  .top-wrapper {
    background-size: 290px auto !important;
  }
  .sushi-bottom{
    top: 270px;
  }
  .kanji-logo-wrapper{
    bottom: -100px;
    right: -24px;

  }
  .hero-line{
    font-size: 8rem;
  }
  .text-wrapper{
    height: 9rem;
  }

    .unique-arrow-button2 {
      position: absolute;
      bottom: 50px;
      right: -500px;
      width: 50px;
      height: 50px;
      border: 1px solid #111;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      font-weight: bold;
      color: #111;
      padding: 30px;
      cursor: pointer;
      transition: background 0.2s ease;
    }

    .unique-arrow-button2:hover {
      background-color: #e0e0e0;
    }

    .unique-arrow-button2::before {
      content: "↗"; /* Unicode arrow */
      display: inline-block;
      transform: translate(1px, -1px); /* Tweak position if needed */
    }




  .img-reveal-container{
    height: 55vh;
    width: 35%;
  }
  .imgRevealTwo-container{
       height: 55vh;
    width: 61%;
  }
  .imgRevealThree-container{
           height: 55vh;
    width: 61%;
  }

  .item_content button{
    left: 500px;
    font-size: 25px;
  }
.r1p{
  top: 370px;
  font-size: 19px;
  right: 210px;
}
.r1s{
  top: 420px;
  font-size: 19px;
}
.item_content h2{
  font-size: 7rem;
}
.r2p{
  top: 370px;
  font-size: 19px;
  right:  -320px;
}
.r2s{
  top: 420px;
  font-size: 19px;
  right: -467px;
}
.r3p{
  top: 370px;
  font-size: 19px;
  right: -310px;
}
.r3s{
  top: 420px;
  font-size: 19px;
  right: -485px;
}




.top-images-container{
  height: 30vh;
}
.chef-restaurant-image{
  height: 60vh;
  
}
.japanese-lantern img{
  height: 91vh;
}
.restaurant-story-text{
  margin-top: 200px; 
  margin-bottom: 300px;
  font-weight: 600;
  font-size: 24px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  padding-right: 150px;
 


}

.content-left-area{
  padding-top: 0px; 
  padding-bottom: 0px;
}

.milestone-section{
  padding-left: 10px;
  gap: 60px;
}
.milestone-heading{
  font-size: 25px;
  margin-top: 85px;
}
.milestone-item{
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

}


.mobile{
  display: none;
}

.testimonial-wrapper{
  margin-left: 170px;
  
}
.testimonial-heading{
  padding-top: 100px;
  margin-top: 170px;
  padding-left: 20px;
}
.testimonial-img{
  width: 100%;
  height: 53vh;
}
.testimonial-card{
  width: 260px;
  
}
.testimonial-container{
  gap: 90px;
}

.reservation-info{
  left: 420px;
  top: 40px;
}
.reservation-phone{
  margin-top: 60px;
  margin-bottom: 0px;
}
.reservation-right{
  padding-top: 440px;
  
}
.reservation-title{
  left: 420px;
}
.yume-footer-logo{
  margin-top: 380px;
  font-size: 270px;

}
.yume-footer-bottom{
  font-size: 19px;
  
}
.yume-footer-top{
  padding: 10px 60px;
  padding-top: 50px;
}


.kanji-logo-wrapper{
  width: 220px;
  right: -35px;
}



}



/* MOBILE VIEW */


@media (max-width: 767px){













.mobile {
        position: relative;
        height: auto;
        width: 100%;
        display: block;
        background-color: white;
        overflow: hidden;
       
        z-index: 0;
    }
.main-body{
  display: none;
}


.mobile-wrapper{
      width: 100%;
      height: 100vh;
      overflow: hidden;
            font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;

      background: #242222 url('/images/6833ddf8d1f9479983c479f2_pattern1s.webp') center center no-repeat;
      background-size: 160px auto;
}






 .introSushiX-wrapper {
      width: 100vw;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
    }

    .introSushiX-section {
      display: flex;
    
      position: absolute;
      z-index: 10;
    }

    .introSushiX-letter {
      position: relative;
      width: 50px;
      height: 130px;
      overflow: hidden;
    }

    .introSushiX-char {
          position: absolute;
      width: 100%;
      text-align: center;
      font-size: 6rem;
      line-height: 100px;
      color: white; 
      /* font-family: 'Anton', sans-serif; */
      font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
      transition: transform 1.5s cubic-bezier(0.2, 1, 0.7, .9);
      font-weight: 600;

    }

    .introSushiX-top { top: 53px; }
    .introSushiX-bottom { top: 137px; }

    .introSushiX-move-down .introSushiX-top,
    .introSushiX-move-down .introSushiX-bottom {
      transform: translateY(-61px);
    }

    .introSushiX-move-up .introSushiX-top,
    .introSushiX-move-up .introSushiX-bottom {
      transform: translateY(-92px);
    }

    .introSushiX-slide-left .introSushiX-top,
    .introSushiX-slide-left .introSushiX-bottom {
      transform: translateX(-130%);
    }

    .introSushiX-headline {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 1;
    }

    .introSushiX-textwrap {
      overflow: hidden;
      height: 4.5rem;
      width: 100%;
    }

    .introSushiX-line {
      font-size: 4rem;
      transform: translateY(100%);
      opacity: 0;
      color: white;
      font-weight: 500;
      animation: slideUp 0.6s ease forwards;
      animation-play-state: paused;
    }

    .a1 { animation-delay: 0.2s; }
    .a2 { animation-delay: 0.6s; }
    .a3 { animation-delay: 1s; }

    .introSushiX-headline.animate .introSushiX-line {
      animation-play-state: running;
    }

    .introSushiX-headline.hide .introSushiX-line {
      animation: slideDown 0.5s ease forwards;
    }

    @keyframes slideUp {
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    @keyframes slideDown {
      to {
        transform: translateY(100%);
        opacity: 0;
      }
    }

   .introSushiX-kanji {
               position: absolute;
        bottom: 38px;
        right: 24px;
        width: 214px;
        height: 130px;
        display: flex
;
        align-items: center;
        justify-content: center;
        z-index: 5;
        opacity: 0;
        transition: opacity 0.5s ease;
        pointer-events: none;
    }

    .introSushiX-kanji.visible {
      opacity: 1;
      pointer-events: auto;
    }

    .introSushiX-clip {
      overflow: hidden;
      height: 0;
      animation: revealKanji 3s ease-out forwards;
    }

    .introSushiX-kanjiChar {
      font-family: 'Noto Serif JP', serif;
      font-weight: 900;
      font-size: 70px;
      color: #ff4500;
      line-height: 1;
    }

    @keyframes revealKanji {
      to {
        height: 300px;
      }
    }












/* Sticky Scroll Container */
.service-box-two {
  width: 100%;
  position: relative;
}

.service-grid-wrapper {
  display: block;
  position: relative;
   /* height: 50%; */
  transition: height 1s ease;
}
/* Ensure wrapper starts at 50% height */
.service-img-wrapper {

  overflow: hidden;
 
}

/* On reveal, expand to full height */
.service-img-wrapper.reveal {
  height: auto;
}

.service-img-wrapper.reveal .service-img {
  /* Reveal full height */
  clip-path: inset(0 0 0 0);
}


/* Sticky Cards */
.service-grid {
  position: sticky;
  top: 0px;
  background-color: #F2F2F2;
  padding: 40px 30px;
  
  margin-bottom: 60px;
  text-align: center;
  z-index: 1;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Card Layering (Optional but helps stack correctly) */
.service-grid-one { z-index: 1; }
.service-grid-two { z-index: 2; }
.service-grid-three { z-index: 3; }

/* Image */
.service-img {
  width: 100%;
  height: auto;
   transition: clip-path 1s ease-in-out;
  
  /* Start hidden vertically */
  clip-path: inset(50% 0 50% 0);
  object-fit: cover;
  margin-bottom: 20px;
}

/* Badge */
.service-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  border: 1px solid #000;
  border-radius: 20px;
  padding: 5px 15px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* Titles & Text */
.service-grid-title {
  font-size: 32px;
  font-weight: 800;
  font-family: 'Migha Condensed', Impact, sans-serif;
  margin: 0 0 10px 0;
  text-transform: uppercase;
}

.service-category {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 10px 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-grid-para {
  font-size: 14px;
  color: #000;
  margin-bottom: 30px;
}

/* Arrow Button */
/* .arrow-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #000;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.3s ease;
} */


.arrow-btn {

  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #000;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.3s ease;
}





.arrow-btn:hover {
  background-color: #000;
  color: #fff;
}













 .menuShowcaseX-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
    }

    /* Top Scrolling Image Strip */
    .menuShowcaseX-image-strip {
      width: 100%;
      overflow: hidden;
      background: #f5f5f5;
    }

    .menuShowcaseX-strip-track {
      display: flex;
      width: calc(300px * 12); /* 6 images * 2 loops */
      animation: scrollLeft 30s linear infinite;
    }

    .menuShowcaseX-strip-track img {
      width: 220px;
      height: 150px;
      object-fit: cover;
      flex-shrink: 0;
    }

    @keyframes scrollLeft {
      0% { transform: translateX(0); }
      100% { transform: translateX(-1800px); } /* 300px * 6 */
    }

    /* Menu Section */
    .menuShowcaseX-content {
      padding: 60px 20px;
      text-align: center;
      max-width: 600px;
    }

    .menuShowcaseX-title {
      font-size: 3rem;
      letter-spacing: 2px;
      margin-bottom: 20px;
      font-family: Verdana, Geneva, Tahoma, sans-serif;
      font-weight: 600;
    }

    .menuShowcaseX-subtext {
      font-size: 1.1rem;
      line-height: 1.6;
      font-family: Arial, sans-serif;
      color: #000000;
      margin-bottom: 50px;
      font-weight: 400;
    }

    .menuShowcaseX-section-title {
      font-size: 2rem;
      margin: 80px 0;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     font-weight: 400;
    }



    .ourStoryX-wrapper {
      max-width: 1000px;
      margin: 0 auto;
      padding: 40px 0px;
      text-align: center;
    }

    .ourStoryX-title {
      font-size: 6rem;
      margin-bottom: 10px;
      text-align: start;
      margin-left: 50px;
      font-family: fantasy;
      font-weight: 100;
    }

       .ourStoryX-subtitle {
        font-size: 2rem;
         font-family: fantasy;
         letter-spacing: 4px;
        color: #000000;
        text-align: start;
        margin-left: 50px;
        font-weight: 600;
    }

    .ourStoryX-image-row {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 50px;
     
    }

    .ourStoryX-image-container {
      width: 100%;
      max-width: 300px;
      height: 300px;
      overflow: hidden;
      position: relative;
    }

    .ourStoryX-image-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: translateY(-100%);
      transition: transform 1.2s ease-out;
    }

    .ourStoryX-image-container.reveal img {
      transform: translateY(0);
    }


    .paragraph-custom{
      padding-left: 20px;
      padding-right: 20px;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-family: Verdana, Geneva, Tahoma, sans-serif;
      font-size: 17px;
    }
    .milestone{
      font-size: 15px;
      font-weight: bold;
      font-family: Verdana, Geneva, Tahoma, sans-serif;
      align-items: center;
      text-align: center;
      padding: 30px;
    }
    .year{
      padding: 5px;
      font-family: Verdana, Geneva, Tahoma, sans-serif;
      letter-spacing: -1px;
      text-align: center;
      font-size: 14px;
    
      
    }





.yumex-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
    background-color: #242222;
  position: relative;
  z-index: 100;
}

.yumex-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.yumex-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 18px;
  cursor: pointer;
}

.yumex-bar {
  height: 3px;
  background-color: white;
  width: 100%;
  border-radius: 2px;
}

.yumex-fullscreen-menu {
  position: fixed;
  top: -150%;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  color: black;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  z-index: 99;
  transition: top 0.5s ease-in-out;
}

.yumex-fullscreen-menu.open {
  top: 0;
}

.yumex-menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.yumex-menu-links {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
  flex-grow: 1;
}

.yumex-menu-links li {
  padding: 1.2rem 0;
  border-bottom: 1px solid #ccc;
  font-size: 2.5rem;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.yumex-menu-links a {
  text-decoration: none;
  color: black;
}

.yumex-contact-info {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.yumex-social-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.yumex-social-buttons button {
  background: transparent;
  border: 1px solid black;
  padding: 0.5rem;
  font-weight: bold;
  cursor: pointer;
}

.stickyTestimonial__section {
  max-width: 700px;
  margin: 0 auto;
  margin-top: 11rem;
  padding: 0 1rem;
}

.stickyTestimonial__header-wrapper {
  background-color: white;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
  border-bottom: 1px solid #ddd;
}

.stickyTestimonial__heading {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.stickyTestimonial__cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 0;
}

.stickyTestimonial__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  
}

.stickyTestimonial__image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 8px;
}

.stickyTestimonial__quote {
  margin-top: 1rem;
  font-size: 1.15rem;
  line-height: 1.6;
  color: #000000;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.stickyTestimonial__author {
  font-weight: bolder;
  margin-top: 0.5rem;
  color: #000;
  font-size: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}





.custom-image-section{
  width: 100%;
 
  padding: 20px;
  padding-top: 60px;
}
.custom-image-section img{
  width: 100%;
   height: 30vh;
   object-fit: cover;
}




.resvUnique__section {
  max-width: 600px;
  margin: 2rem auto;
  text-align: center;
  padding: 0 1rem;
  padding-bottom: 3rem;
}


.resvUnique__heading {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.resvUnique__contact p {
  margin: 0.5rem 0;
  font-size: 1rem;
  color: #000;
}

.resvUnique__address {
  line-height: 1.4;
}

.resvUnique__hours {
  margin-top: 2rem;
}

.resvUnique__subheading {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.8rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.resvUnique__time {
  font-size: 1rem;
  margin: 0.2rem 0;
}






.formGalaxyX__container {
  max-width: 500px;
  margin: 3rem auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.formGalaxyX__input,
.formGalaxyX__textarea {
  border: none;
  border-bottom: 1px solid #aaa;
  padding: 0.8rem 0;
  font-size: 1rem;
  outline: none;
  width: 100%;
  color: #000;
}

.formGalaxyX__input::placeholder,
.formGalaxyX__textarea::placeholder {
  color: #999;
}

.formGalaxyX__textarea {
  height: 120px;
  resize: vertical;
}

.formGalaxyX__submit-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.formGalaxyX__submit-button {
  padding: 0.6rem 1.5rem;
  border: 1px solid #000;
  background-color: transparent;
  color: #000;
  font-size: 1rem;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.formGalaxyX__submit-button:hover {
  background-color: #000;
  color: #fff;
}

.formGalaxyX__arrow {
  font-weight: bold;
  transition: transform 0.3s ease;
}

.formGalaxyX__submit-button:hover .formGalaxyX__arrow {
  transform: translateX(4px);
}




.footerNebula__wrapper {
  background-color: #111;
  color: #fff;
  padding: 3rem 1rem;
  text-align: center;
}

.footerNebula__content {
  max-width: 600px;
  margin: 0 auto;
}

.footerNebula__logo {
  font-size: 4.5rem;
  font-weight: bold;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-bottom: 2rem;
}

.footerNebula__nav {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.footerNebula__nav li {
  margin: 0.5rem 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footerNebula__nav a {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  transition: opacity 0.3s ease;
}

.footerNebula__nav a:hover {
  opacity: 0.7;
}

.footerNebula__contact p {
  margin: 0.5rem 0;
  font-size: 18px;
  color: #ccc;
}

.footerNebula__credits {
  margin-top: 4rem;
  font-size: 0.9rem;
  color: #aaa;
}

.footerNebula__brand {
  font-weight: bold;
  color: #fff;
  font-size: 18px;
}

.footerNebula__highlight {
  color: #888;
  font-size: 18px;
}

.footerNebula__powered {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}





}





@media (min-width: 768px) and (max-width: 991.98px){
 





.mobile {
        position: relative;
        height: auto;
        width: 100%;
        display: block;
        background-color: white;
       
        z-index: 0;
    }
.main-body{
  display: none;
}


.mobile-wrapper{
      width: 100%;
      height: 100vh;
      overflow: hidden;
            font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;

      background: #242222 url('/images/6833ddf8d1f9479983c479f2_pattern1s.webp') center center no-repeat;
      background-size: 160px auto;
}






 .introSushiX-wrapper {
      width: 100vw;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
    }

    .introSushiX-section {
      display: flex;
    
      position: absolute;
      z-index: 10;
    }

    .introSushiX-letter {
      position: relative;
      width: 50px;
      height: 130px;
      overflow: hidden;
    }

    .introSushiX-char {
          position: absolute;
      width: 100%;
      text-align: center;
      font-size: 6rem;
      line-height: 100px;
      color: white; 
      /* font-family: 'Anton', sans-serif; */
      font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
      transition: transform 1.5s cubic-bezier(0.2, 1, 0.7, .9);
      font-weight: 600;

    }

    .introSushiX-top { top: 53px; }
    .introSushiX-bottom { top: 137px; }

    .introSushiX-move-down .introSushiX-top,
    .introSushiX-move-down .introSushiX-bottom {
      transform: translateY(-61px);
    }

    .introSushiX-move-up .introSushiX-top,
    .introSushiX-move-up .introSushiX-bottom {
      transform: translateY(-92px);
    }

    .introSushiX-slide-left .introSushiX-top,
    .introSushiX-slide-left .introSushiX-bottom {
      transform: translateX(-130%);
    }

    .introSushiX-headline {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 1;
    }

    .introSushiX-textwrap {
      overflow: hidden;
      height: 4.5rem;
      width: 100%;
    }

    .introSushiX-line {
      font-size: 4rem;
      transform: translateY(100%);
      opacity: 0;
      color: white;
      font-weight: 500;
      animation: slideUp 0.6s ease forwards;
      animation-play-state: paused;
    }

    .a1 { animation-delay: 0.2s; }
    .a2 { animation-delay: 0.6s; }
    .a3 { animation-delay: 1s; }

    .introSushiX-headline.animate .introSushiX-line {
      animation-play-state: running;
    }

    .introSushiX-headline.hide .introSushiX-line {
      animation: slideDown 0.5s ease forwards;
    }

    @keyframes slideUp {
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    @keyframes slideDown {
      to {
        transform: translateY(100%);
        opacity: 0;
      }
    }

   .introSushiX-kanji {
               position: absolute;
        bottom: 38px;
        right: 24px;
        width: 214px;
        height: 130px;
        display: flex
;
        align-items: center;
        justify-content: center;
        z-index: 5;
        opacity: 0;
        transition: opacity 0.5s ease;
        pointer-events: none;
    }

    .introSushiX-kanji.visible {
      opacity: 1;
      pointer-events: auto;
    }

    .introSushiX-clip {
      overflow: hidden;
      height: 0;
      animation: revealKanji 3s ease-out forwards;
    }

    .introSushiX-kanjiChar {
      font-family: 'Noto Serif JP', serif;
      font-weight: 900;
      font-size: 70px;
      color: #ff4500;
      line-height: 1;
    }

    @keyframes revealKanji {
      to {
        height: 300px;
      }
    }












/* Sticky Scroll Container */
.service-box-two {
  width: 100%;
  position: relative;
}

.service-grid-wrapper {
  display: block;
  position: relative;
   /* height: 50%; */
  transition: height 1s ease;
}
/* Ensure wrapper starts at 50% height */
.service-img-wrapper {

  overflow: hidden;
 
}

/* On reveal, expand to full height */
.service-img-wrapper.reveal {
  height: auto;
}

.service-img-wrapper.reveal .service-img {
  /* Reveal full height */
  clip-path: inset(0 0 0 0);
}


/* Sticky Cards */
.service-grid {
  position: sticky;
  top: 0px;
  background-color: #F2F2F2;
  padding: 40px 30px;
  border: 1px solid #000;
  margin-bottom: 60px;
  z-index: 1;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Card Layering (Optional but helps stack correctly) */
.service-grid-one { z-index: 1; }
.service-grid-two { z-index: 2; }
.service-grid-three { z-index: 3; }

/* Image */
.service-img {
  width: 100%;
  height: auto;
   transition: clip-path 1s ease-in-out;
  
  /* Start hidden vertically */
  clip-path: inset(50% 0 50% 0);
  object-fit: cover;
  margin-bottom: 20px;
}

/* Badge */
.service-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  border: 1px solid #000;
  border-radius: 20px;
  padding: 5px 15px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* Titles & Text */
.service-grid-title {
  font-size: 32px;
  font-weight: 800;
  font-family: 'Migha Condensed', Impact, sans-serif;
  margin: 0 0 10px 0;
  text-transform: uppercase;
}

.service-category {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 10px 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-grid-para {
  font-size: 14px;
  color: #000;
  margin-bottom: 30px;
}

/* Arrow Button */
.arrow-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #000;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.3s ease;
}

.arrow-btn:hover {
  background-color: #000;
  color: #fff;
}













 .menuShowcaseX-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
    }

    /* Top Scrolling Image Strip */
    .menuShowcaseX-image-strip {
      width: 100%;
      overflow: hidden;
      background: #f5f5f5;
    }

    .menuShowcaseX-strip-track {
      display: flex;
      width: calc(300px * 12); /* 6 images * 2 loops */
      animation: scrollLeft 30s linear infinite;
    }

    .menuShowcaseX-strip-track img {
      width: 220px;
      height: 150px;
      object-fit: cover;
      flex-shrink: 0;
    }

    @keyframes scrollLeft {
      0% { transform: translateX(0); }
      100% { transform: translateX(-1800px); } /* 300px * 6 */
    }

    /* Menu Section */
    .menuShowcaseX-content {
      padding: 60px 20px;
      text-align: center;
      max-width: 600px;
    }

    .menuShowcaseX-title {
      font-size: 3rem;
      letter-spacing: 2px;
      margin-bottom: 20px;
      font-family: Verdana, Geneva, Tahoma, sans-serif;
      font-weight: 600;
    }

    .menuShowcaseX-subtext {
      font-size: 1.1rem;
      line-height: 1.6;
      font-family: Arial, sans-serif;
      color: #000000;
      margin-bottom: 50px;
      font-weight: 400;
    }

    .menuShowcaseX-section-title {
      font-size: 2rem;
      margin: 80px 0;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     font-weight: 400;
    }



    .ourStoryX-wrapper {
      max-width: 1000px;
      margin: 0 auto;
      padding: 40px 0px;
      text-align: center;
    }

    .ourStoryX-title {
      font-size: 6rem;
      margin-bottom: 10px;
      text-align: start;
      margin-left: 50px;
      font-family: fantasy;
      font-weight: 100;
    }

       .ourStoryX-subtitle {
        font-size: 2rem;
         font-family: fantasy;
         letter-spacing: 4px;
        color: #000000;
        text-align: start;
        margin-left: 50px;
        font-weight: 600;
    }

    .ourStoryX-image-row {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 50px;
     
    }

    .ourStoryX-image-container {
      width: 100%;
      max-width: 300px;
      height: 300px;
      overflow: hidden;
      position: relative;
    }

    .ourStoryX-image-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: translateY(-100%);
      transition: transform 1.2s ease-out;
    }

    .ourStoryX-image-container.reveal img {
      transform: translateY(0);
    }


    .paragraph-custom{
      padding-left: 20px;
      padding-right: 20px;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-family: Verdana, Geneva, Tahoma, sans-serif;
      font-size: 17px;
    }
    .milestone{
      font-size: 15px;
      font-weight: bold;
      font-family: Verdana, Geneva, Tahoma, sans-serif;
      align-items: center;
      text-align: center;
      padding: 30px;
    }
    .year{
      padding: 5px;
      font-family: Verdana, Geneva, Tahoma, sans-serif;
      letter-spacing: -1px;
      text-align: center;
      font-size: 14px;
    
      
    }





.yumex-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
    background-color: #242222;
  position: relative;
  z-index: 100;
}

.yumex-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.yumex-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 18px;
  cursor: pointer;
}

.yumex-bar {
  height: 3px;
  background-color: white;
  width: 100%;
  border-radius: 2px;
}

.yumex-fullscreen-menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  color: black;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  z-index: 99;
  transition: top 0.5s ease-in-out;
}

.yumex-fullscreen-menu.open {
  top: 0;
}

.yumex-menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.yumex-menu-links {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
  flex-grow: 1;
}

.yumex-menu-links li {
  padding: 1.2rem 0;
  border-bottom: 1px solid #ccc;
  font-size: 2.5rem;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.yumex-menu-links a {
  text-decoration: none;
  color: black;
}

.yumex-contact-info {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.yumex-social-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.yumex-social-buttons button {
  background: transparent;
  border: 1px solid black;
  padding: 0.5rem;
  font-weight: bold;
  cursor: pointer;
}

.stickyTestimonial__section {
  max-width: 700px;
  margin: 0 auto;
  margin-top: 11rem;
  padding: 0 1rem;
}

.stickyTestimonial__header-wrapper {
  background-color: white;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
  border-bottom: 1px solid #ddd;
}

.stickyTestimonial__heading {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.stickyTestimonial__cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 0;
}

.stickyTestimonial__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  
}

.stickyTestimonial__image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 8px;
}

.stickyTestimonial__quote {
  margin-top: 1rem;
  font-size: 1.15rem;
  line-height: 1.6;
  color: #000000;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.stickyTestimonial__author {
  font-weight: bolder;
  margin-top: 0.5rem;
  color: #000;
  font-size: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}





.custom-image-section{
  width: 100%;
 
  padding: 20px;
  padding-top: 60px;
}
.custom-image-section img{
  width: 100%;
   height: 40vh;
   object-fit: cover;
}




.resvUnique__section {
  max-width: 600px;
  margin: 2rem auto;
  text-align: center;
  padding: 0 1rem;
  padding-bottom: 3rem;
}


.resvUnique__heading {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.resvUnique__contact p {
  margin: 0.5rem 0;
  font-size: 1rem;
  color: #000;
}

.resvUnique__address {
  line-height: 1.4;
}

.resvUnique__hours {
  margin-top: 2rem;
}

.resvUnique__subheading {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.8rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.resvUnique__time {
  font-size: 1rem;
  margin: 0.2rem 0;
}






.formGalaxyX__container {
  max-width: 500px;
  margin: 3rem auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.formGalaxyX__input,
.formGalaxyX__textarea {
  border: none;
  border-bottom: 1px solid #aaa;
  padding: 0.8rem 0;
  font-size: 1rem;
  outline: none;
  width: 100%;
  color: #000;
}

.formGalaxyX__input::placeholder,
.formGalaxyX__textarea::placeholder {
  color: #999;
}

.formGalaxyX__textarea {
  height: 120px;
  resize: vertical;
}

.formGalaxyX__submit-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.formGalaxyX__submit-button {
  padding: 0.6rem 1.5rem;
  border: 1px solid #000;
  background-color: transparent;
  color: #000;
  font-size: 1rem;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.formGalaxyX__submit-button:hover {
  background-color: #000;
  color: #fff;
}

.formGalaxyX__arrow {
  font-weight: bold;
  transition: transform 0.3s ease;
}

.formGalaxyX__submit-button:hover .formGalaxyX__arrow {
  transform: translateX(4px);
}




.footerNebula__wrapper {
  background-color: #111;
  color: #fff;
  padding: 3rem 1rem;
  text-align: center;
}

.footerNebula__content {
  max-width: 600px;
  margin: 0 auto;
}

.footerNebula__logo {
  font-size: 4.5rem;
  font-weight: bold;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-bottom: 2rem;
}

.footerNebula__nav {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.footerNebula__nav li {
  margin: 0.5rem 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footerNebula__nav a {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  transition: opacity 0.3s ease;
}

.footerNebula__nav a:hover {
  opacity: 0.7;
}

.footerNebula__contact p {
  margin: 0.5rem 0;
  font-size: 18px;
  color: #ccc;
}

.footerNebula__credits {
  margin-top: 4rem;
  font-size: 0.9rem;
  color: #aaa;
}

.footerNebula__brand {
  font-weight: bold;
  color: #fff;
  font-size: 18px;
}

.footerNebula__highlight {
  color: #888;
  font-size: 18px;
}

.footerNebula__powered {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}






}




































