@font-face { font-family: "BLK"; src: url('BLKCHCRY.TTF'); font-display: swap; }
@font-face { font-family: "LUX"; src: url('lux.otf'); font-display: swap; }
@font-face { font-family: "GEN"; src: url('GenSenRounded2R.ttc'); font-display: swap; }

/* =================================================== */
/* About Danny Chau Section (對應 image_2.png) */
/* =================================================== */

.about-danny {
  position: relative;
  width: 100%;
  /* 給一個最小高度，確保黑幕拉起時能覆蓋整個內容，同時扣除 Header padding */
  min-height: calc(100vh - 150px); 
  padding: 90px 0; /* 給內容一些垂直 Padding，與 Header 分開 */
  display: flex;
  justify-content: center; /* 水平置中容器 */
  align-items: center;    /* 垂直置中內容 */
  z-index: 10;
  
}

.about-container {
  width: 85%;
  max-width: 1200px;
  min-height: 70vh; /* ⚠️ 給容器一個最小高度，讓它有空間可以「推」 */
  display: flex;
  flex-direction: column;
  /* gap: 40vh;  <-- 這裡可以放心地刪掉了 */
}

/* ========================================== */
/* 1. 個人簡介 (靠左) */
/* ========================================== */
.about-intro {
  text-align: left; /* 靠左對齊 */
}

.intro-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 300; /* 字體變幼 */
  color: #ffffff;
  text-transform: uppercase; /* 強制全大寫 */
  letter-spacing: 2px; /* 字距 */
  font-family: "GEN", sans-serif;
  margin-bottom: 20px;
  margin-top: 20px;
}

.intro-name {
 font: 100px "NEW", sans-serif; 
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase; /* 強制全大寫 */
  letter-spacing: 1px;
  margin-top: -20px;
  margin-bottom: -40px;
}

/* ========================================== */
/* 新增：上半部容器與文字描述區塊 */
/* ========================================== */

/* 包住標題與內文的容器，用來控制它們的距離 */
.about-top {
  display: flex;
  flex-direction: column;
  gap: 40px; /* 這裡控制 "DANNY CHAU" 和下方內文的距離 */
}

/* 文字描述區塊的樣式 */
.about-description {
  max-width: 500px; /* ⚠️ 關鍵：限制寬度，讓文字斷行看起來像一個整齊的方塊 */
  text-align: left; /* 內文置中 (如果你標題靠左，這裡也可改成 left) */
}

.about-description p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem; /* 內文大小 */
  font-weight: 300; /* 字體偏幼，呈現高級感 */
  line-height: 1.5; /* 行高拉大，讓閱讀有呼吸感 */
  color: #cccccc; /* 淺灰色，降低視覺重量，突顯白色大標題 */
}

/* ========================================== */
/* 2. 統計數字 (並排且置中) */
/* ========================================== */
.about-stats {
  display: flex;
  justify-content: space-between; /* 兩個項目分開在兩側 */
  width: 100%;
  max-width: 800px; /* 限制統計數字區塊的總寬度 */
  margin: 0 auto; /* 置中這個區塊 */
  margin-top: auto; /* ⚠️ 關鍵：自動填滿上方剩餘空間，將自己推向底部 */
  padding-top: 50px; /* 預留一點緩衝，防止跟上方文字貼太近 */
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center; /* 項目內部置中 */
  text-align: center;
}

.stat-number {
  font-family: 'Inter', sans-serif;
  font-size: 3.5rem; /* 大數字 */
  font-weight: 700; /* 字體粗大 */
  color: #ffffff;
  letter-spacing: -1px; /* 大數字緊密一點 */
}

.stat-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 300; /* 字體變幼 */
  color: #ffffff;
  text-transform: uppercase; /* 強制全大寫 */
  letter-spacing: 2px; /* 字距 */
}

/* =================================================== */
/* 服務項目區塊 (WHAT I DO?) */
/* =================================================== */

.what-i-do {
  width: 100%;
  padding: 100px 0 150px 0; /* 上下留白 */
  display: flex;
  justify-content: center;
  background-color: #000000;
  z-index: 10;
  position: relative;
}

.services-container {
  width: 85%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
}

/* --- 標題 --- */
.services-title {
  font: 100px "NEW", sans-serif; 
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 60px;
  letter-spacing: 2px;
    

}

/* --- 交錯式兩欄排版 --- */
.services-columns {
  display: flex;
  gap: 80px; /* 左右兩欄的間距 */
}

.service-col {
  flex: 1; /* 左右各佔 50% 寬度 */
  display: flex;
  flex-direction: column;
  gap: 80px; /* 同一欄內，每個項目的上下間距 */
}

/* ⚠️ 關鍵魔法：讓右欄整體往下推，製造出售錯落有致的層次感 */
.right-col {
  margin-top: 120px; 
}

/* --- 項目文字樣式 --- */
.service-item h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 600; /* 標題粗體 */
  color: #ffffff;
  margin-bottom: -5px; /* 標題與內文的距離 */
  letter-spacing: 0.5px;
}

/* --- 修改：項目內文樣式 (加入透明度與過渡) --- */
.service-item p {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.2;
  margin-top: 0;
  color: #ffffff; /* 保持白色，透過 opacity 控制透明度 */
  /* ⚠️ 關鍵設定：預設增加透明度 (例如 0.4) */
  opacity: 0.4; 
  /* ⚠️ 增加過渡動畫，讓透明度變化更順滑 */
  transition: opacity 0.4s ease; 
}

/* ⚠️ 魔法效果：當滑鼠移到該項目 (.service-item) 時，內文回到不透明 */
/* 這包含了滑鼠移到 h3 或 p 的情況 */
.service-item:hover p {
  opacity: 1;
}

/* =================================================== */
/* 響應式設計 (手機與平板版適配) */
/* =================================================== */
@media (max-width: 900px) {
  .services-title {
    font-size: 3.5rem; /* 手機版標題稍微縮小 */
    margin-bottom: 50px;
  }
  
  .services-columns {
    flex-direction: column; /* 手機版改成上下排列 */
    gap: 60px;
  }

  .right-col {
    margin-top: 0; /* 手機版取消交錯位移，恢復整齊排列 */
  }
  
  .service-col {
    gap: 60px;
  }
}