html {
  scroll-behavior: smooth;
}

body {
  font-family: "Shippori Mincho B1", serif;
  margin: 0;
  letter-spacing: 0.05em;
  background-image: url(../images/bg_all.webp);
  background-size: cover;
  background-attachment: fixed;
  background-position: center top;
  background-repeat: no-repeat;
}

p {
  font-size: 18px;
}

.wrapper {
  display: grid;
  grid-template-columns: 1fr 450px 1fr;
  min-height: 100vh;
}

.side-left {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.side-right {
  position: sticky;
  top: 0;
  height: 100vh;
}

.main-content {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  position: relative; /* Ensure shadow is visible above side columns if needed */
  z-index: 1;
}

header {
  height: 100vh;
  background-color: #FEEEF0;
  overflow: hidden;
  position: relative;
  text-align: center;
}

header video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

header .main-title {
  position: relative;
  z-index: 1;
  padding-top: 20px;
  display: block;
  margin: 0 auto;
}

.menu-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid #fff;
  color: #fff;
  padding: 10px 30px;
  z-index: 2;
  text-decoration: none;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  border-radius: 50px;
  transition: 0.3s;
}

.menu-btn:hover {
  background-color: #fff;
  color: #000;
}

.about {
  background-image: url(../images/about_back.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.about p {
  padding-top: 250px;
  padding-bottom: 250px;
  text-align: center;
  line-height: 2em;
  font-weight: 400;
  color: #79B726;
}

.bg-menu-fixed {
  background-image: url(../images/menu_back.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  margin-bottom: -100vh;
}

.menu {
  /* background: linear-gradient(
    to bottom,
    #780117 calc(100% - 300px),
    rgba(120, 1, 23, 0)
  ); */
  padding-bottom: 300px;
  margin-bottom: -300px;
  position: relative;
  z-index: 2;
}

.menu .kirakira {
  margin: 100px auto 100px auto;
}

.menu_detail {
  padding: 20px 5px 20px 5px;
}

/* Card Design */
.menu-card {
  position: relative;
  background-color: rgba(255, 255, 255, 0.75);
  width: 90%;
  max-width: 500px;
  margin: 0 auto 60px auto;
  box-sizing: border-box;
  outline: 2px solid #fff;
  outline-offset: 8px;
  padding-bottom: 15px;
}

.menu-label {
  position: absolute;
  top: -10px;
  left: -10px;
  background-color: #FFAAC8; /* Pinkish color */
  color: #fff;
  padding: 5px 15px;
  font-size: 16px;
  z-index: 10;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

.menu_img {
  width: 100%;
  padding-top: 3px;
  margin-bottom: 5px;
}

.menu_img img {
  width: 100%;
  height: auto;
  display: block;
}

.menu_content {
  color: #333; /* Dark text */
  text-align: center;
  border: none;
  background: transparent;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0px 15px 0 15px;
}

.menu_content h3 {
  font-size: 19px;
  line-height: 1.4em;
  margin-bottom: 10px;
  font-weight: 600;
  color: #79B726; /* Green color from image */
  border: none;
  padding: 0;
  text-align: left;
}

.menu_desc {
  display: block;
  text-align: left;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333;
}

.menu_price {
  font-size: 24px;
  font-family: "Shippori Mincho B1", serif;
  margin-bottom: 25px;
  text-align: center;
  color: #000;
}

.menu_price_small {
  font-size: 18px;
}

.menu_note {
  font-size: 12px;
  text-align: left;
  display: block;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #666;
}

.menu-reservation-btn {
  display: block;
  width: 80%;
  max-width: 300px;
  margin: 0 auto 20px;
  background-color: #FFAAC8; /* Sakura pink */
  border: 2px solid #FFAAC8;
  color: #fff;
  text-align: center;
  padding: 12px 0;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  transition: 0.5s;
}

.menu-reservation-btn:hover {
  background: #fff;
  color: #FFAAC8;
  border-color: #FFAAC8;
}

.title_small {
  font-size: 20px !important;
}

.reservation-btn.show {
  opacity: 1;
  visibility: visible;
}

.reservation-btn:hover {
  opacity: 0.7;
}

.reservation-btn img {
  width: 100%;
  height: auto;
}

.shop {
  position: relative;
}

.bg-shop-fixed {
  position: sticky;
  background-image: url(../images/shop_back.webp);
  background-size: 100% auto; /* Or specific size like 500px, or auto */
  background-repeat: repeat-y;
  background-position: top center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  margin-bottom: -100vh;
}

.shop .kirakira {
  margin: 80px auto 70px auto;
  position: relative;
  z-index: 1;
}

.shop_detail {
  padding: 20px;
}

.shop_content {
  margin-bottom: 60px;
}

.shop_card {
  background-image: url(../images/shop_back2.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 20px;
  padding: 20px;
  width: 95%;
  max-width: 500px;
  margin: 0 auto;
  color: #1E1E1E;
}

.shop_card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

.shop_catch {
  font-size: 14px;
}

.shop_name {
  font-size: 18px;
  margin-bottom: 30px;
  font-weight: normal;
}

.shop_btn_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

a.reservation_button {
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  display: block;
  width: 250px;
  padding: 0.4rem 0;
  border: 2px solid #FFAAC8;
  background: #FFAAC8;
  color: #fff;
  border-radius: 100vh;
  transition: 0.5s;
}

a.reservation_button:hover,
a.reservation_button:focus-visible {
  background: #fff;
  color: #FFAAC8;
  border-color: #FFAAC8;
}

a.shopdetail_button {
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  display: block;
  width: 250px;
  padding: 0.4rem 0;
  border: 2px solid #83BF33;
  background: #83BF33;
  color: #fff;
  border-radius: 100vh;
  transition: 0.5s;
}

a.shopdetail_button:hover,
a.shopdetail_button:focus-visible {
  background: #fff;
  color: #83BF33;
  border-color: #83BF33;
}

footer {
  background-color: #FFAAC8;
  padding: 20px 0 20px 0;
}
footer img {
  margin: 0 auto;
}

/* ========================================
   GSAP Animations
   ======================================== */

.about p .text-group {
  display: inline-block;
}
