/* === Home 區塊樣式 === */
#home {
    position: relative;
    min-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: flex;
    width: 100%;
    align-items: center;
    top: 35px; 
    position: sticky; /* 滾動時保持在頂部 */
    z-index: 10;
    padding: 5px 0;
    opacity: 1; /* 默認完全可見 */
    transition: opacity 0.5s ease; /* 平滑淡入淡出效果 */
    justify-content: center;
  }
  
  .home-title {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 600;
    font-size: 140px;
    letter-spacing: -4px;
    transform: scaleY(1.3); /* 調整垂直比例 */
    display: inline-block;
  }
  
  .side-title {
    font-size: 8px;
    text-align: justify;
    transform: rotate(90deg); /* 旋轉 90 度 */
    height: min-content;
    margin-left: -20px;
    margin-top: -50px;
  }
  
  /* === Home 按鈕樣式 === */
  .home-buttons {
    position: absolute;
    bottom: 50px;
    left: 80px;
    display: flex;
    flex-direction: column;
    opacity: 1;
    transition: opacity 0.5s ease;
  }
  
  .home-buttons a {
    background-color: transparent;
    color: #ffffff;
    width: 200px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
  }
  
  .home-buttons a:hover {
    color: #333333;
    font-weight: 800;
  }
  