html {
    scroll-behavior: smooth;
}

body{
    font-family: "Shippori Mincho B1", serif;
    margin: 0;
    letter-spacing: 0.05em;
}

p{
    font-size: 18px;

}

.kirakira{
    mix-blend-mode: screen;
}

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

.side-left {
    background-image: url(../images/bg_steak.webp), url(../images/bg_pasta.webp), url(../images/bg_left.webp);
    background-size: 50% auto, 50% auto, 100% 100%;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: left top, right bottom, center;
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.side-right {
    background-image: url(../images/bg_right1.webp);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    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;
}

.bg-main-fixed {
    background-color: #fff; /* Ensure content is readable */
    background-image: url(../images/bg_center.webp);
    background-size: 100% 100%;
    background-position: center;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    margin-bottom: -100vh;
}

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

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

header .kirakira {
    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: linear-gradient(to bottom, transparent, #780117);
}

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

.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: 0 auto;
}

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

.menu_content {
    color: #fff;
    text-align: left;
    padding-bottom: 5px;
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(to right, #B09B60, #FDFCF0, #D4C596, #FDFCF0, #B09B60) 1;
    display: block;
    margin: 20px auto 100px auto;
    width: 90%;
    max-width: 500px;
}

.menu_content h3 {
    font-size: 20px;
    line-height: 1.25em;
    margin-bottom: 20px;
    font-weight: normal;
    margin-top: 0;
    padding-left: 15px;
    border-left: 4px solid transparent;
    border-image: linear-gradient(to bottom, #B09B60, #FDFCF0, #D4C596, #FDFCF0, #B09B60) 1;
}

.menu_desc {
    display: block;
    text-align: left;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.menu_price {
    font-size: 28px;
    font-family: "Shippori Mincho B1", serif;
    margin-bottom: 20px;
    text-align: center;
}

.menu_note {
    font-size: 14px;
    text-align: left;
    display: block;
    line-height: 1.2;
}

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

.reservation-btn {
    position: fixed;
    bottom: 20px;
    right: calc(50% - 225px);
    width: 100px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 100;
}

.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 {
    background-image: url(../images/shop_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;
}

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

.shop_detail {
    padding: 20px;
}

.shop_content {
    margin-bottom: 60px;
}

.shop_card {
    background-color: #780117;
    border-radius: 20px;
    padding: 20px;
    width: 95%;
    max-width: 500px;
    margin: 0 auto;
    color: #fff;
}

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

.shop_catch {
    font-size: 14px;
    margin-bottom: 10px;
}

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

.shop_btn_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    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 #A70A27;
    background: #A70A27;
    color: #fff;
    border-radius: 100vh;
    transition: 0.5s;
}

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

}

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

a.shopdetail_button:hover,
a.shopdetail_button:focus-visible{
    background: #fff;
    color: #6E2E00;
    border-color: #6E2E00;

}

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

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

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