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