/* 主页样式文件 */

/* 英雄区域 */
.hero-section {
    background: linear-gradient(135deg, #00ff80, #0056b3);
}

.hero-section .btn {
    border-radius: 30px;
}

/* 模板分类 */
.template-categories .rounded-circle {
    transition: transform 0.3s ease;
}

.template-categories .rounded-circle:hover {
    transform: scale(1.1);
}

/* 模板卡片 */
.featured-templates .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.featured-templates .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* 功能特性 */
.features .card {
    border: none;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.features .card:hover {
    transform: translateY(-5px);
}

/* 导航栏 */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* 响应式优化 */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    
    .hero-section .d-flex {
        justify-content: center !important;
    }
}

/* 底部 */
footer ul li a:hover {
    opacity: 0.8;
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}