/* Bickham Script Pro 3 本地字体声明 */

@font-face {
  font-family: 'Bickham Script Pro 3';
  font-style: normal;
  font-weight: 400;
  font-display: swap; /* 提升字体加载性能 */
  src: url('./Bickham-Script-Pro-3-Regular/Bickham-Script-Pro-3-2.woff') format('woff'),
       url('./Bickham-Script-Pro-3-Regular/Bickham-Script-Pro-3-2.otf') format('opentype');
  unicode-range: U+0020-007F, U+00A0-00FF; /* 基本拉丁字符集 */
}

/* 字体使用类 */
.bickham-font {
  font-family: 'Bickham Script Pro 3', 'Playfair Display', cursive, serif;
  font-feature-settings: 'kern' 1, 'liga' 1; /* 启用字距调整和连字 */
}

/* Footer品牌文字样式 */
.footer-brand-text {
  font-family: 'Bickham Script Pro 3', 'Playfair Display', cursive, serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: left;
  font-style: normal;
  color: var(--primary-gold);
  margin: 0;
  /* 添加一些视觉效果 */
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.footer-brand-text:hover {
  transform: scale(1.02);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.15);
}