@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap");

/* =========================================
   1. 全域基礎設定 (Reset & Base)
   ========================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans TC", serif;
  background: #FFFFFF;
  /* ★ 修改：套用設計規範的深灰色 */
  color: #5d5f6f; 
  font-size: 18px;
  line-height: 1.5;
  width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
}

/* --- 背景圖處理 (使用偽元素固定背景) --- */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/PC_BG.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1; /* 最底層 */
  pointer-events: none;
}

/* iOS 設備特殊處理 */
@supports (-webkit-touch-callout: none) {
  body::before {
    background-attachment: scroll;
    height: 100vh;
  }
}

/* 手機版背景切換 */
@media screen and (max-width: 768px) {
  body::before {
    background-image: url('images/MOB_BG.png');
    background-size: 150%;
    background-position: top;
  }
}


/* =========================================
   2. 主視覺區塊 (KV Section)
   ========================================= */
.kv-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  /* 讓 KV 與下方內容保持距離 */
  margin-bottom: 50px; 
}

.kv-container {
  width: 100%;
  max-width: 1200px;
  padding: 20px;
  text-align: center;
  z-index: 10;
}

/* 圖片通用 RWD */
.kv-item img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* 進場動畫設定 */
.kv-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.kv-item.show {
  opacity: 1;
  transform: translateY(0);
}

/* --- LOGO 與 副標題 --- */
.logo-box {
  margin-bottom: 80px;
}
.logo-box img {
  width: 400px; /* PC版寬度 */
}

.subtitle-box {
  margin-bottom: 10px;
}
.subtitle-box img {
  width: 400px; /* PC版寬度 */
}

/* --- 主標題 (電腦/手機切換) --- */
.main-title-box {
  margin-top: 10px;
  text-align: center;
  font-size: 0; /* 消除圖片間隙 */
}

/* 電腦版預設 */
.main-title-box .title-pc {
  display: inline-block !important;
  width: 600px;
  max-width: 100%;
}
.main-title-box .title-mob {
  display: none !important;
}

@media screen and (min-width: 2000px) {
  .main-title-box .title-pc {
    width: 700px;
  }
}


/* --- KV 手機版 RWD (小於 768px) --- */
@media screen and (max-width: 768px) {
  .kv-section {
    align-items: flex-start;
    padding-top: 2vh;
  }

  /* 切換為手機版標題 */
  .main-title-box .title-pc { display: none !important; }
  .main-title-box .title-mob {
    display: inline-block !important;
    width: 220px;
    margin: 0 auto;
  }

  /* 調整大小 */
  .logo-box img { width: 200px; }
  .subtitle-box img { width: 240px; }
  .logo-box { margin-bottom: 50px; }
}


/* =========================================
   3. 唱片輪播區 (Coverflow)
   ========================================= */
#coverflow {
  padding-top: 20px;
  /* ★ 修改：增加下方留白 (呼吸感) */
  margin-bottom: 200px; 
}

.flip-items li {
  max-width: 30%;
  font-size: 3rem;
}

/* 輪播圖片 RWD */
.rwdimg {
  max-width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) and (max-width: 1440px) {
  #coverflow { padding-top: 50px; }
  .flip-items li { font-size: 1.2rem; }
}

@media (max-width: 767px) {
  .flip-items li {
    max-width: 90%;
    font-size: 2rem;
  }
  /* 手機版稍微縮小間距 */
  #coverflow { margin-bottom: 100px; }
}


/* =========================================
   4. 專輯內容區塊 (Album Layout)
   ========================================= */
/* 外層容器：負責置中與寬度限制 */
.content-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  box-sizing: border-box;
}

/* 內容排版容器 */
.album-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  padding: 20px;
  text-align: left;
  background-color: rgba(255, 255, 255, 0.8); /* 80%透明白底 */
  border-radius: 10px;
  
  /* ★ 修改：大幅增加下方邊距，創造閱讀節奏 */
  margin-bottom: 150px;
}

/* 左側：文字區 */
.album-text-col {
  flex: 1;
  max-width: 50%;
}

.album-title {
  font-size: 28px;
  font-weight: 900;
  /* ★ 修改：標題顏色 */
  color: #5d5f6f;
  margin-bottom: 20px;
  line-height: 1.4;
  /* ★ 修改：底線顏色跟隨文字 */
  /*border-bottom: 3px solid #5d5f6f;*/
  padding-bottom: 10px;
  display: inline-block;
}

.album-quote {
  font-size: 20px;
  font-weight: 700;
  /* ★ 修改：引言顏色 */
  color: #5d5f6f;
  margin-bottom: 25px;
  line-height: 1.6;
}

.dj-tag-box {
  margin-bottom: 25px;
}

.dj-name {
  font-weight: bold;
  /* ★ 修改：DJ 標籤文字顏色 */
  color: #5d5f6f;
  font-size: 16px;
  /*background-color: #f0f0f0;*/
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
}

.dj-name::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: #5d5f6f;
  margin-right: 8px;
  vertical-align: middle;
  margin-bottom: 3px;
}


.album-desc p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}

/* 按鈕群組 */
.action-btn-group {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.action-btn-group a {
  text-decoration: none;
  width: auto;
  padding: 10px 30px;
  text-align: center;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s;
  border-radius: 4px;
  white-space: nowrap;
}
.action-btn-group a:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.action-btn-group a img {
  height: 18px;
  margin-left: 8px;
}

/* ★ 修改：按鈕顏色修正 */
/* 桃紅色按鈕 - 歌手感言 */
.btn-pink { 
  background-color: #e4007f; 
  color: #fff;
}
.btn-pink:hover { background-color: #c2006b; } /* Hover 加深 */

/* 螢光綠按鈕 - 誠品購物 */
.btn-green { 
  background-color: #d9ff96; 
  color: #5d5f6f !important; /* 淺底配深字 */
}
.btn-green:hover { background-color: #c4e885; } /* Hover 加深 */


/* 右側：圖片區 */
.album-img-col {
  flex: 1;
  max-width: 50%;
  display: flex;
  justify-content: flex-end;
}

.album-img-col img {
  width: 100%;
  max-width: 500px;
  height: auto;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.15);
}

/* --- 專輯區塊 RWD (小於 768px) --- */
@media screen and (max-width: 768px) {
  .album-layout {
    flex-direction: column;
    gap: 20px;
    padding: 20px; /* 手機版內距 */
    /* 手機版間距修正 */
    margin-bottom: 80px;
  }
  
  /* 改變順序：文字在上，圖片在下 */
  .album-text-col { order: 1; width: 100%; max-width: 100%; }
  .album-img-col { order: 2; width: 100%; max-width: 100%; justify-content: center; }

  .album-title { font-size: 20px; }
  .action-btn-group a { padding: 10px 15px; } /* 手機按鈕稍微緊湊點 */
}


/* =========================================
   5. 關於與頁尾 (Footer & About)
   ========================================= */
.wapper {
  width: 100%;
  margin: 0;
  padding: 0;
}

.about {
  width: 60%;
  /* ★ 修正：確保 about 與上方有正數距離，解決重疊問題 */
  margin: 50px auto 10px; 
  padding: 20px;
}

.about h3 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 2;
  text-align: center;
}

.about p {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.5;
  text-align: center;
}

/* 頁尾版權 */
.myfooter {
  width: 100%;
  position: relative;
  /* color: #000; 可以刪除，預設繼承 body 顏色即可，或保留 */
  font-size: 1rem;
  text-align: center;
  padding-bottom: 20px;
}

/* 關於區塊 RWD */
@media (max-width: 767px) {
  .about {
    width: 90%;
    margin: 30px auto 10px;
    padding: 10px;
  }
  .about h3 { font-size: 1.5rem; }
  .about p { font-size: 1rem; }
  .myfooter { font-size: 12px; }
}


/* =========================================
   6. 其他工具 (Icons, GoTop)
   ========================================= */
/* Iconfont */
@font-face {
  font-family: "iconfont";
  src: url("iconfont.eot?t=1516696716663");
  src: url("iconfont.eot?t=1516696716663#iefix") format("embedded-opentype"),
       url("data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAAUoAAsAAAAAB4QAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADMAAABCsP6z7U9TLzIAAAE8AAAARAAAAFZW7kiTY21hcAAAAYAAAABeAAABhpvcBr5nbHlmAAAB4AAAAVoAAAFwf2dYZGhlYWQAAAM8AAAALwAAADYQOW78aGhlYQAAA2wAAAAcAAAAJAfeA4RobXR4AAADiAAAAAwAAAAMC+kAAGxvY2EAAAOUAAAACAAAAAgAdgC4bWF4cAAAA5wAAAAfAAAAIAESAF1uYW1lAAADvAAAAUUAAAJtPlT+fXBvc3QAAAUEAAAAIwAAADTT5qeAeJxjYGRgYOBikGPQYWB0cfMJYeBgYGGAAJAMY05meiJQDMoDyrGAaQ4gZoOIAgCKIwNPAHicY2Bk/sE4gYGVgYOpk+kMAwNDP4RmfM1gxMjBwMDEwMrMgBUEpLmmMDgwVDxbydzwv4EhhrmBoQEozAiSAwAv5w0VeJzFkMENgDAMAy9t6QMxCA8G4sUcXamLdY1iQnkwQS05VhxLiQIsQBQPMYFdGA9OueZ+ZHU/eSZLjUBptXf1nyqiWXYNKplpsHmr/9i87qPTVyiDOrHVl4QbAzUOMwAAeJwdj71OwlAcxe+5135Q4CK9tx8UCpQK1aAk1oqDERYXjYPRyck4OenK4sBi4uDAEzioiU/gxhv4DJoYnZxdKRZPTs5yzj/5/4hCyPyTTZlLBFklm2SfHBMCtYsWpz6CKOnRLqxAsRzJWRRGgRa2emwPTkuVdtxPOo6qqSVw1LEVxP2oRyNsJwO6i9j2gUrVOzXbNZNNYLhR/TY9pI+wGmGtNNhID9aHMm4KfVQwzYpp3uuqouiULpU4rhw7p+QMNX1WSp41bazRBgqVyDs6Kzar5sVdcu23nRwwHkNUm/xlWPbKmW88W5gVbbmou14xXJEYfeddUfA7XyQTzVhf2QOLiUc6hOTQCSMODQuSIcoLnu2yY8cDiKCHpJ8B2VJlJ+lbnjO9qKQ/hqwZH6IuUqMm0ZgVuJSc/maJS+wYgJJt8lXLeJ89/Vfn8+wCEwhfSl9kL/wB4+w7egAAeJxjYGRgYADiFdG2U+L5bb4ycLMwgMC1XtEeBP1/KwsDsxGQy8HABBIFABZyCYQAeJxjYGRgYG7438AQw8IAAkCSkQEVMAMARwkCbAQAAAAD6QAABAAAAAAAAAAAdgC4eJxjYGRgYGBmCGRgZQABJiDmAkIGhv9gPgMAEPcBcAB4nGWPTU7DMBCFX/oHpBKqqGCH5AViASj9EatuWFRq911036ZOmyqJI8et1ANwHo7ACTgC3IA78EgnmzaWx9+8eWNPANzgBx6O3y33kT1cMjtyDRe4F65TfxBukF+Em2jjVbhF/U3YxzOmwm10YXmD17hi9oR3YQ8dfAjXcI1P4Tr1L+EG+Vu4iTv8CrfQ8erCPuZeV7iNRy/2x1YvnF6p5UHFockikzm/gple75KFrdLqnGtbxCZTg6BfSVOdaVvdU+zXQ+ciFVmTqgmrOkmMyq3Z6tAFG+fyUa8XiR6EJuVYY/62xgKOcQWFJQ6MMUIYZIjK6Og7VWb0r7FDwl57Vj3N53RbFNT/c4UBAvTPXFO6stJ5Ok+BPV8bUnV0K27LnpQ0kV7NSRKyQl7WtlRC6gE2ZVeOEXpc0Yk/KGdI/wAJWm7IAAAAeJxjYGKAAC4G7ICZkYmRmZGFgbGCLTlZtyS/gIEBABRQAuEA") format("woff"),
       url("iconfont.ttf?t=1516696716663") format("truetype"),
       url("iconfont.svg?t=1516696716663#iconfont") format("svg");
}

.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-cc-top:before { content: "\e6a9"; }

/* Go Top 按鈕 */
#go-top {
  display: none;
  font-size: 50px;
  position: fixed;
  bottom: 10px;
  right: 20px;
  border: 2px solid #fff;
  border-radius: 5px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  cursor: pointer;
  color: #000;
  z-index: 999;
  background: rgba(255,255,255,0.7); /* 加一點背景色比較清楚 */
}

/* Embed Container (YouTube RWD用) */
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* --- 手搓 RWD Youtube Modal 樣式 --- */
.yt-modal-overlay {
  display: none; /* 預設隱藏 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85); /* 深色背景 */
  z-index: 99999; /* 確保蓋在最上面 */
  justify-content: center; /* Flex 置中 */
  align-items: center;
  opacity: 0; /* 淡入淡出效果初始值 */
  transition: opacity 0.3s ease; /* 動畫 */
}

.yt-modal-overlay.active {
  opacity: 1; /* 顯示時不透明 */
}

.yt-modal-container {
  position: relative;
  width: 90%; /* 手機版寬度 */
  max-width: 900px; /* 電腦版最大寬度 */
  background: #000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border-radius: 8px;
}

/* 關閉按鈕 */
.yt-close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  padding: 5px;
  transition: transform 0.2s;
}
.yt-close-btn:hover {
  transform: scale(1.1);
  color: #ff0055; /* 配您的按鈕色系 */
}

/* 影片容器 - 保持 16:9 完美比例 */
.yt-video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.yt-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}