/*
Theme Name: Cursor AI主题
Description: 基于Cursor AI编程助手的WordPress主题，支持现代化布局和后台设置
Author: WordPress开发工程师
Version: 1.4.2
License: GPL v2 or later
Text Domain: cursor-ai-theme
*/

/* Tailwind CSS将通过CDN加载，这里只定义自定义样式 */

/* 自定义渐变背景 */
.hero-gradient {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #06b6d4 100%);
}

/* 卡片hover效果 */
.feature-card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

/* 价格卡片高亮 */
.price-card-highlight {
    border: 2px solid #3b82f6;
    position: relative;
}

.price-card-highlight::before {
    content: "推荐方案";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #3b82f6;
    color: white;
    padding: 4px 16px;
    border-radius: 12px;
    font-size: 12px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
}

/* 自定义按钮样式 */
.btn-primary {
    background: linear-gradient(45deg, #3b82f6, #06b6d4);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* 加载动画 */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
} 