/* === Home 區塊樣式 === */
#home {
    position: relative;
    max-height: 1024px;
    height: 100vh; /* 滿屏高度 */
    background-color: black;
    background-size: cover; 
    background-image: url("../images/home-bg.jpg");
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .home-container{
    height: 100vh;
  }
  
  .title-container {
    display: inline-flex;
    width: 100%;
    align-items: center;
    top: 5px; 
    position: sticky; /* 滾動時保持在頂部 */
    z-index: 10;
    padding: 5px 0;
    opacity: 1; /* 默認完全可見 */
    transition: opacity 0.5s ease; /* 平滑淡入淡出效果 */
  }
  
  .home-title {
    font-weight: 600;
    font-size: 160px;
    display: inline-block;
  }
  
  .side-title {
    font-size: 10px;
    text-align: justify;
    transform: rotate(90deg); /* 旋轉 90 度 */
    height: min-content;
    letter-spacing: 0.2px;
    margin-top: -80px;
  }
  
  /* === Home 按鈕樣式 === */
  .home-buttons {
    position: absolute;
    bottom: 50px;
    left: 80px;
    display: flex;
    flex-direction: column;
    opacity: 1;
    transition: opacity 0.5s ease;
  }
  
  .home-buttons a {
    letter-spacing: 1px;
    background-color: transparent;
    color: #ffffff;
    width: 200px;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
  }
  
  .home-buttons a:hover {
    color: #333333;
    font-weight: 800;
  }
  