@charset "UTF-8";
/* ========================
  🎨 Design Tokens - Variables
======================== */
/* Color */
/* Breakpoints（對齊 Bootstrap） */
/* Font Family */
/* Section Spacing - 常見預設 */
/*
  手機常用：padding-inline 20-48px、padding-block 32-64px
  桌機常用：padding-inline 90-150px、padding-block 48-80px
  row 間距：手機 16-28px、桌機 24-36px
  如果不需要 gutter，可用 .section-pad--px-0 / .section-pad--py-0 等類別來局部去除。
*/
/* Section Spacing - Desktop */
/* Section Spacing - 常見預設 end*/
/* Section Spacing - Mobile */
/* Section Spacing - Desktop */
.SiteNav {
  padding: 0;
  width: 100%;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  background-color: rgba(252, 252, 252, 0.571);
  backdrop-filter: saturate(180%) blur(20px);
  background-color: #012B5B;
  color: #C3D81E;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
}
.SiteNav .navbar-brand {
  padding: 10px 2%;
  display: flex;
  align-items: center;
}
.SiteNav .navbar-brand img {
  height: 2.7rem;
}
.SiteNav .navbar-Link {
  display: flex;
}
.SiteNav .navbar-Link .btn {
  flex: 1;
  font-size: 1.1rem;
  min-width: 130px;
  color: #C3D81E;
  padding: 14px 0;
  text-align: center;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.SiteNav .navbar-Link .btn:hover, .SiteNav .navbar-Link .btn:active {
  border-color: transparent;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.6666666667);
}
.SiteNav .navbar-Link .btn i {
  display: none;
}
.SiteNav .navbar-Link .btn span {
  display: block;
  font-size: 1rem;
}
.SiteNav {
  /* Sticky */
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.5s;
}
.SiteNav.Sticky {
  opacity: 1;
  transform: translateY(0px);
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .SiteNav {
    box-shadow: 0px -6px 20px rgba(0, 0, 0, 0.1);
    bottom: 0;
    top: auto;
  }
  .SiteNav .navbar-brand {
    display: none;
  }
  .SiteNav .navbar-Link {
    width: 100%;
  }
  .SiteNav .navbar-Link .btn {
    min-width: auto;
    font-size: 14px;
    padding: 10px 0;
    padding-bottom: 20px;
  }
  .SiteNav .navbar-Link .btn i {
    display: block;
  }
  .SiteNav .navbar-Link .btn span {
    display: none;
  }
}

/*========== 回到頂端 ==========*/
.backtop {
  position: fixed;
  bottom: 96px;
  right: 15px;
  z-index: 9997;
  width: 50px;
  height: 50px;
  background: #012B5B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.backtop i {
  font-size: 20px;
}
.backtop.show {
  opacity: 1;
  visibility: visible;
}
.backtop:hover {
  transform: translateY(-3px);
}
@media (max-width: 991.98px) {
  .backtop {
    bottom: 86px;
    right: 10px;
    width: 42px;
    height: 42px;
  }
  .backtop.show {
    opacity: 0.9;
  }
}

/*========== 側邊欄 icon ==========*/
.sidebar-icons {
  position: fixed;
  right: 15px;
  bottom: 155px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sidebar-icons .sidebar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #012B5B;
  border-radius: 50%;
  color: #C3D81E;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}
.sidebar-icons .sidebar-icon i {
  font-size: 20px;
}
.sidebar-icons .sidebar-icon span {
  position: absolute;
  right: 55px;
  background-color: rgba(0, 43, 91, 0.2392156863);
  color: #012B5B;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(8px);
}
.sidebar-icons .sidebar-icon:hover {
  background: #012B5B;
}
.sidebar-icons .sidebar-icon:hover span {
  opacity: 1;
  transform: translateX(0);
}
.sidebar-icons {
  /* 行動版 - 底部橫向排列 */
}
@media (max-width: 991.98px) {
  .sidebar-icons {
    right: 0;
    bottom: 0;
    left: 0;
    flex-direction: row;
    gap: 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  }
  .sidebar-icons .sidebar-icon {
    flex: 1;
    width: auto;
    height: auto;
    padding: 8px 0;
    border-radius: 0;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .sidebar-icons .sidebar-icon i {
    font-size: 18px;
  }
  .sidebar-icons .sidebar-icon span {
    position: static;
    opacity: 1;
    left: auto;
    background: none;
    padding: 0;
    font-size: 11px;
    transform: none;
    color: #C3D81E;
  }
  .sidebar-icons .sidebar-icon:hover {
    width: auto;
    background: #f0f0f0;
  }
}/*# sourceMappingURL=nav.css.map */