/* ==========================================================================
   側邊固定欄群組 (Sticky Sidebar)
   ========================================================================== */
.sticky-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.sticky-sidebar .sidebar-item {
  position: relative;
  right: -150px;
  width: 220px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  text-decoration: none;
  box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 50px 0 0 50px;
}
.sticky-sidebar .sidebar-item .icon-box {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-right: 15px;
  transition: transform 0.3s ease;
}
.sticky-sidebar .sidebar-item .icon-box i {
  font-size: 28px;
  display: flex;
}
.sticky-sidebar .sidebar-item .content-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  width: 100%;
  color: #fff;
  transition: opacity 0.3s ease;
}
.sticky-sidebar .sidebar-item .content-box span {
  font-weight: bold;
  font-size: 16px;
  white-space: nowrap;
}
.sticky-sidebar .sidebar-item .content-box .qr-code {
  width: 120px;
  height: 120px;
  background: #fff;
  padding: 5px;
  border-radius: 8px;
  margin-top: 8px;
  display: none;
}
.sticky-sidebar .sidebar-item.line-item {
  background-color: #00c300;
}
.sticky-sidebar .sidebar-item.line-item .icon-box i {
  color: #00c300;
}
.sticky-sidebar .sidebar-item.mail-item {
  background-color: #0066cc;
}
.sticky-sidebar .sidebar-item.mail-item .icon-box i {
  color: #0066cc;
}
.sticky-sidebar .sidebar-item.mail-item .content-box {
  justify-content: center;
  height: 50px;
}
@media (min-width: 769px) {
  .sticky-sidebar .sidebar-item:hover {
    right: 0;
  }
  .sticky-sidebar .sidebar-item:hover.line-item {
    border-radius: 20px 0 0 20px;
  }
  .sticky-sidebar .sidebar-item:hover .icon-box {
    transform: scale(1.05);
  }
  .sticky-sidebar .sidebar-item:hover .content-box {
    opacity: 1;
  }
  .sticky-sidebar .sidebar-item:hover .content-box .qr-code {
    display: block;
  }
}

/* ==========================================================================
   手機版 RWD 響應式佈局 (改為右下角優雅並排或堆疊)
   ========================================================================== */
@media (max-width: 768px) {
  .sticky-sidebar {
    top: auto;
    bottom: 170px;
    right: 26px;
    transform: none;
    gap: 10px;
  }
  .sticky-sidebar .sidebar-item {
    position: static;
    width: 60px;
    height: 60px;
    padding: 0;
    border-radius: 50% !important;
    justify-content: center;
  }
  .sticky-sidebar .sidebar-item .icon-box {
    margin-right: 0;
    width: 60px;
    height: 60px;
    background-color: transparent;
  }
  .sticky-sidebar .sidebar-item .icon-box i {
    color: #fff !important;
    font-size: 30px;
  }
  .sticky-sidebar .sidebar-item .content-box {
    display: none;
  }
  .sticky-sidebar .sidebar-item:active {
    transform: scale(0.9);
  }
}
.btn {
  border: 1px #AAAAAA solid;
  display: flex;
  justify-content: center;
  column-gap: 0.5rem;
  transition: all 0.3s;
  width: 114px;
}
.btn:hover {
  border: 1px #AAAAAA solid;
  column-gap: 1rem;
  width: calc(114px + 1rem);
  background-color: #0090BD;
  color: white;
  border-color: #0090BD;
}

.error-section {
  height: 100vh;
  color: #383838;
  display: flex;
  justify-content: center;
  align-items: center;
}
.error-section .container .information {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.error-section .container .display-404 {
  font-size: 8rem;
  color: #0090BD;
}
.error-section .container .lead {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 3rem;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 620px;
  aspect-ratio: 16/9;
  background-color: #000;
  cursor: pointer;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .video-wrapper {
    height: 300px;
  }
}

.video-thumbnail,
.video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-thumbnail:hover {
  opacity: 0.6;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: url("../../assets/img/img_home_youtube.webp") no-repeat center center;
  background-size: cover;
}/*# sourceMappingURL=style.css.map */

/* Facebook btn */
.fb-btn{
  display: flex;
  width: fit-content;
  align-items: center;
  gap: .35rem;
}

.fb-btn span{
  margin-top: 1px;
  font-family: NotoSansCJKtc;
}

