/* glass and title animatied */
.hero{
  inset: 0;  
  background: url(../image/hero-bg.png) center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  text-align: center;
  overflow: hidden;
  width: 100%;
  z-index: 0;
}

.hero .container{
  width: 100%;
  height: 100%;
  z-index: 1;
}
.title-wrapper{
  width: 100%;
  height: 65px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 3;
}
.title-wrapper h1{
  position: absolute;
  font-size: 55px;
  width: 100%;
  text-align: center;
  font-family: "Bagel Fat One", system-ui;
  font-weight: var(--fw-regular);
  opacity: 0;
}
.txt-wrapper h1{
  font-size: var(--fs-lg)
}
.hero p{
  font-size: var(--fs-md)
}
.hero h1, .hero p{
  color: var(--Neutral-color);
}
.hero .btn{
  padding: var(--btn-padding);
  margin: 8px 0;
}
@media screen and (min-width: 1080px) {
  .title-wrapper{
    top: 55%;
    transform: translate(-47%, -55%);
  }
  .title-wrapper h1{
    font-size: 72px;
    top: 0;
    bottom: 0;
  }
}

/* slider */
.slider {
  position: relative;
  width: 100%;
  height: calc(100vh - 100px);
  margin-top: 100px;
  overflow: hidden;
}
.slide {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
}
.slide-img{
  opacity: 0;
  transform: translateY( 50% );
  position: absolute; 
  top: -8%;
  left: 0;
  width: 103%;
  height: auto;
  z-index: 2;
}
.slide-img:first-child {
  opacity: 1;
}

.fruits{
  position: relative;
  width: 100%;
  z-index: 1;
}

.fruit{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: scale(0);
  opacity: 0;
}
.mobile-pagination{
  display: flex;
  flex-direction: column; /* 垂直排列 */
  align-items: center;    /* 水平置中 */
  position: absolute;
  right: 10px;
  bottom: 0;
  transform: translateY(-50%);
  gap: 10px; 
}

.mobile-pagination .active {
  background-image: linear-gradient(to bottom, #B800FF, #FF9900);
}
.arrow{
  width: 100%;
  position: absolute;
  bottom: 0;  
  z-index: 3;
}
.prev, .next{
  width: 30px;
  display: inline-block;
}
@media screen and (min-width: 576px){
  .hero .container{
    display: flex;
    flex-direction: row-reverse;    
  }
  .slide-img{
    width: 80%;
    left: 0;
  }
  .txt-wrapper{
    margin: auto;
  }
  .title-wrapper{
    width: auto;
    left: 47%;
    transform: translate(-47%, -50%);
  }
  .txt-wrapper .btn{
    margin: 40px 0;
  }
  .title-wrapper h1{
    left: 10%;
    top: 90px;
  }
}
@media screen and (min-width: 767px) {
  .txt-wrapper{
    width: 60%;
  }
}
@media screen and (min-width: 1280px) {
  .txt-wrapper{
    width: 80%;
  }
}
@media screen and (min-width: 996px) {
  .txt-wrapper h1{
    font-size: 48px;
  }
  .txt-wrapper p{
    font-size: var(--fs-lg);
  }
}

/* 本月精選 */

.monthFeature-wrapper{
  position: relative;
  z-index: 1;
  width: 100%;
  background: linear-gradient(to bottom, #1d1c1c 10%, #0b0a0a)
}
.monthFeature-wrapper .container{
  width: 100%;
  max-width: 1080px; 
}
.monthFeature-wrapper .cards{
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.monthFeature-wrapper .card{
  background: linear-gradient(rgb(98 81 81 / 20%)),
  url(/image/cocktail-drink01.png)  no-repeat center/ contain;
  background-color: var(--Neutral-opacity-color);
  border-radius: var(--border-radius);
  position: relative;
  width: 100%;
  height: 510px;
  text-align: center;
  padding: 1rem;
}
.monthFeature-wrapper .card:before{
  content: "";
  transition:all var(--transition-medium)
}
.monthFeature-wrapper .card:hover:before{
  content: "";
  position: absolute;
  transform: translateY(30%);
  width: 100px;
  height: 200px;
  background-color: var(--primary-color);
  -webkit-backdrop-filter: blur(8px);
  filter: blur(50px); 
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45), 0 0 16px rgba(114, 223, 208, 0.18);
  border-radius: 12px;
  pointer-events: none;
  z-index: -1
}
.monthFeature-wrapper .card:nth-child(2){
  background: linear-gradient(rgb(98 81 81 / 20%)),
  url(/image/cocktail-drink02.png)  no-repeat center/ contain;
}
.monthFeature-wrapper .card:last-child{
  background: linear-gradient(rgb(98 81 81 / 20%)),
  url(/image/cocktail-drink03.png)  no-repeat center/ contain;
}
.monthFeature-wrapper .card .tag{
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}

.monthFeature-wrapper .tag img{
  width: 100px;
  height: 100px;
  object-fit: contain;
  border: 1px solid #72DFD0;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.6), 0 0 16px rgba(114,223,208,0.22);
}
.monthFeature-wrapper .txt{
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background: linear-gradient(rgba(0, 0, 0, .4));
  border-radius: var(--border-radius);
}
.monthFeature-wrapper .txt h2{
  font-size: var(--fs-lg);
  font-family: var(--roboto-sans);
  text-align: start;
}
.monthFeature-wrapper .txt h2,
.monthFeature-wrapper .txt p,
.monthFeature-wrapper .des{
  text-align: left;
  margin: .5rem;
}
.monthFeature-wrapper .des{
  margin-top: 1rem;
}
.monthFeature-wrapper .txt .btn-body{
  text-align: start;
}
@media screen and (min-width: 767px) {
  .monthFeature-wrapper .cards{
    flex-direction: row;
  }
}
/* recommend */
.recommend-cards{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media screen and (min-width: 767px) {
  .recommend-cards{
    flex-direction: row;
    gap: 24px;
    justify-content: center;
  }
}

.recommend-cards h1{
  padding: 0;
}
.recommend small{
  font-size: var(--fs-lg);
}
.recommend-cards .pic{
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(184, 0, 255, 0.3), rgba(255, 153, 0, 0.3));
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(184, 0, 255, 0.8);
}

.recommend-cards .pic img{
  width: 100px;
  object-fit: contain;
  filter: brightness(1.2) contrast(1.1);
}
.recommend-cards .card-body{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 0;
}
.recommend-cards .txt{
  margin-left: 20px;
  color: var(--Neutral-color);
  font-family: var(--noto-sans-tc);
  font-weight: var(--fw-regular);
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}
.recommend-cards .txt p{
font-size: var(--fs-sm);}
/* recommend section btn-body */
.recommend .btn-body{
  margin-top: 24px;
  text-align: center;
}
.btn-body .btn{
  padding: var(--btn-padding);
}

/* messages */
.message{
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.65) 40%, rgba(0,0,0,0.2) 100%),url(/image/background01.png) center/cover no-repeat
}
.message .cards{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}
.message .card{
  width: 48%;
  background: var(--Neutral-opacity-color);
  border-radius: var(--border-radius);
}
.message img{
 height: 165px; 
}
.message h2{
  font-size: var(--fs-sm);
  font-family: var(--noto-sans-tc);
  font-weight: var(--fw-regular);
  min-height: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 2; 
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.message .card-txt{
  padding: 8px;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.message .tags{
  min-height: 87px;;
}
.message .tag{
  margin-top: 8px;
  background: var(--Neutral-opacity-color);    
  display: -webkit-box;
  -webkit-line-clamp: 1; 
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: var(--border-radius);
}
.message .tag img{
  width: 20px;
  height: 20px;
}
.message span{
  font-size: 12px;
}
.message .card-txt p{
  font-size: var(--fs-xs);
}
@media screen and (min-width: 767px) {
  .message .cards{
    flex-wrap: nowrap;
  }
}
/* social */
.social-carousel{
  display: flex;
  gap: 8px;
  overflow: hidden;
}
.social .card{
  border-radius: var(--border-radius);
  padding: 12px;
  background: var(--Neutral-opacity-color);
  background-position: center;
  background-size: cover;
  cursor: pointer;
  transition:var(--transition-medium);
}
.social .card:before{
  content: "";
  position: absolute;
  inset: 0;
  background: url(image/oriental-tiles.png) center/cover;
  opacity: 0.3;
  z-index: -1;
}
.social .card:hover{
  background-color: var(--Neutral-hover-bg);
  box-shadow: var(--btn-shadow-hover);
  transform: translateY(-3px);
  border: 1px solid var(--Neutral-color);
}
.social .title-body{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.social .title-body.name{
  display: flex;
  align-items: center;  
}
.social .name img{
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 8px;
}
.social span{
  line-height: 2;  
  font-size: var(--fs-xs);
}
.social .star{
  display: flex;
}
.social .star img{
  width: 16px;
  height: 16px;
}
.social .comments{
  min-height: 60px;  
  font-size: var(--fs-sm);     
  display: -webkit-box;
  -webkit-line-clamp: 3; 
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.social span, .social .comments{
  font-family: var(--noto-sans-tc);
  font-weight: var(--fw-regular);
}
.swiper-wrapper{
  padding: 16px 0;
}

/* reservation */
.reservation{
  background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 30%),
  linear-gradient(to top,    rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 30%),
  url("/image/background02.png") center/cover no-repeat;
  background-color: #1d1c1c50;
}

.reservation .title{
  margin-top: 2rem
}
.reservation h1{
  padding-top: 0;
}
.reservation .title span{
  background: linear-gradient(90deg, #B800FF 0%, #FF9900 50%, #B800FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent; /* Safari */
  color: transparent;
  display: inline-block;
}
.reservation .txt p{
  text-align: center;
}
@media screen and (min-width: 767px) {
  .reservation .container{
    display: flex;
  }
  .reservation .txt{
    width: 50%;
  }
  .reservation .reservation-form{
    width: 50%;
  }
}

/* contact us */
.contact .title{
  margin: 16px 0 35px 0;
}
.informations{
  text-align: center;
}
.informations .store{
  margin-bottom: 16px;
}
.contact img{
  width: 24px;
  height: 24px;
}
.contact h2{
  line-height: 4;
}
.informations p{
  font-family: var(--noto-sans-tc);
  font-size: var(--fs-md);
}
.informations .open-time{
  font-family: var(--roboto-sans);
  margin: 16px 0;
}
.informations .number{
  font-family: var(--roboto-sans);
}
/* share the activities */
.video-bg{
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, #9b05d782 100%);
  border-radius: var(--border-radius);
  text-align: center;
}
.video-bg .title{
  margin: 32px 0 35px 0;
}

.video .play video{
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
.video p{
  margin-top: 32px;
}

