#photography {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }
  
  .yellow-box {
    position: absolute;
    top: 0;
    right: 0; /* 從右邊開始 */
    height: 824px;
    width: 0;
    background-color: #FFC802;
    z-index: 2;
    transition: width 1s ease; /* 平滑展開效果 */
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, -100% 100%, -100% 25.49%)
  }
  
  .gray-box {
    position: absolute;
    top: 0;
    right: 0; /* 從右邊開始 */
    height: 1024px;
    width: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    transition: width 1.2s ease; /* 平滑展開效果，比黃色區域稍慢 */
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 50%);
  }
  
  .content {
    position: relative;
    z-index: 3; /* 保證內容位於黃色和灰色區域之上 */
    color: white;
    text-align: center;
    padding: 20px;
  }
  