/*
Theme Name: CHAONEO
Theme URI: https://www.chaoneo.com
Description: 上海借势营销策划有限公司 - 全域数字营销专家 WordPress 主题
Author: CHAONEO Team
Author URI: https://www.chaoneo.com
Version: 1.0.0
Text Domain: chaoneo-theme
Tags: marketing, digital-marketing, tailwindcss, responsive, chinese, seo
*/

/* ===================== Base ===================== */
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif; }

/* ===================== WordPress Admin Bar Fix ===================== */
/* Fixed header offset for WP admin bar (32px desktop / 46px mobile) */
body.admin-bar #site-header { top: 32px !important; }
@media screen and (max-width: 782px) {
    body.admin-bar #site-header { top: 46px !important; }
}

/* ===================== Animations ===================== */
@keyframes chaoneo-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes chaoneo-pulse-ring {
    0% { transform: scale(0.95); opacity: 0.7; }
    100% { transform: scale(1.4); opacity: 0; }
}
@keyframes chaoneo-fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes chaoneo-gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
@keyframes chaoneo-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.chaoneo-animate-float { animation: chaoneo-float 4s ease-in-out infinite; }
.chaoneo-animate-fade-up { animation: chaoneo-fade-up 0.8s ease-out forwards; }
.chaoneo-gradient-animated {
    background-size: 200% 200%;
    animation: chaoneo-gradient-shift 6s ease infinite;
}
.chaoneo-marquee-track {
    display: inline-flex;
    animation: chaoneo-marquee 30s linear infinite;
}

/* ===================== WhatsApp Float Button ===================== */
.chaoneo-wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
}
.chaoneo-wa-float .wa-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    animation: chaoneo-pulse-ring 1.8s ease-out infinite;
}
.chaoneo-wa-float .wa-btn {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37,211,102,0.45);
    transition: transform 0.3s;
}
.chaoneo-wa-float .wa-btn:hover { transform: scale(1.1); }

/* ===================== Scrollbar ===================== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #6366f1; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #4f46e5; }

/* ===================== Line clamp ===================== */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
