/* ============================================
   馥靈之鑰 Hour Light
   精緻版 Footer v2.0
   ============================================ */

/* 主容器 */
.hl-footer {
  margin-top: 40px;
  padding: 0 16px 24px;
  font-family: "Noto Sans TC", "PingFang TC", sans-serif;
}

.hl-footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

/* 品牌名稱 */
.hl-footer-brand {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #e9c27d 0%, #fbe6c2 50%, #cda86e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

/* 創辦人資訊 - 隱藏，太長了 */
.hl-footer-founder {
  display: none;
}

/* 快速連結 */
.hl-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 16px;
  margin: 12px 0;
}

.hl-footer-links a {
  color: #c4b7a6;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.hl-footer-links a:hover {
  color: #e9c27d;
}

/* 分隔線裝飾 */
.hl-footer-links a:not(:last-child)::after {
  content: "·";
  position: absolute;
  right: -11px;
  color: rgba(233, 194, 125, 0.3);
}

/* 隱藏舊的冗長聲明區塊 */
.hl-footer-disclaimer,
.hl-footer-legal {
  display: none;
}

/* 版權聲明 - 精簡版 */
.hl-footer-copyright {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(233, 194, 125, 0.15);
  font-size: 0.78rem;
  color: #988b7b;
  line-height: 1.6;
}

.hl-footer-copyright-brand {
  color: #c4b7a6;
  font-weight: 600;
}

/* 隱藏商標重複說明 */
.hl-footer-trademark {
  display: none;
}

/* 展開按鈕 */
.hl-footer-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 8px 16px;
  background: rgba(233, 194, 125, 0.08);
  border: 1px solid rgba(233, 194, 125, 0.2);
  border-radius: 20px;
  color: #c4b7a6;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.hl-footer-toggle:hover {
  background: rgba(233, 194, 125, 0.15);
  border-color: rgba(233, 194, 125, 0.4);
  color: #e9c27d;
}

.hl-footer-toggle-icon {
  transition: transform 0.3s ease;
}

.hl-footer-toggle.active .hl-footer-toggle-icon {
  transform: rotate(180deg);
}

/* 可收合的詳細區塊 */
.hl-footer-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.hl-footer-details.open {
  max-height: 600px;
  opacity: 1;
  margin-top: 16px;
}

.hl-footer-details-inner {
  padding: 20px;
  background: rgba(10, 7, 20, 0.8);
  border: 1px solid rgba(233, 194, 125, 0.15);
  border-radius: 16px;
  text-align: left;
}

.hl-footer-details-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e9c27d;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.hl-footer-details-content {
  font-size: 0.82rem;
  color: #988b7b;
  line-height: 1.8;
}

.hl-footer-details-content p {
  margin: 8px 0;
}

.hl-footer-details-content strong {
  color: #c4b7a6;
}

.hl-footer-details-link {
  display: inline-block;
  margin-top: 12px;
  color: #e9c27d;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
}

.hl-footer-details-link:hover {
  text-decoration: underline;
}

/* 響應式 */
@media (max-width: 600px) {
  .hl-footer-links {
    gap: 8px 12px;
  }
  
  .hl-footer-links a::after {
    display: none;
  }
  
  .hl-footer-details-inner {
    padding: 16px;
  }
}
