/*
  Tailwind CSS Preflight Fix
  解决 Tailwind 覆盖原有链接样式问题
  
  加载顺序: Bootstrap → 自定义CSS → Tailwind CDN → 本文件(最后)
*/

/* 恢复链接默认颜色 */
a {
    color: #2368C7 !important;
    text-decoration: none !important;
}

a:hover {
    color: #1a4f9e !important;
    text-decoration: underline !important;
}

/* 导航栏链接 - 保持白色 */
.navbar a,
.nav a,
.header-nav a,
.main-nav a,
nav a {
    color: inherit !important;
}

/* 按钮/CTA 链接 - 保持原样 */
.btn a,
button a,
[class*="btn"] a,
a.btn,
a.button {
    color: inherit !important;
}

/* 卡片标题链接 */
.card-hover a,
.tour-card a,
.panda-tour-card a h3,
article a h3 {
    color: inherit !important;
}

article a h3:hover {
    color: #10b981 !important; /* emerald-600 */
}

/* Footer 链接 */
footer a {
    color: inherit !important;
}

/* 面包屑链接 */
.breadcrumb a {
    color: #2368C7 !important;
}
