/* 首页特定样式 */

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.page-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

/* 卡片样式增强 */
.design-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.design-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.card-title {
    font-size: 1.2rem;
    padding: 1rem 1.5rem;
}

.card-content {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    height: calc(100% - 3.2rem);
}

.card-content p {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* 按钮样式 */
.card-action {
    text-align: center;
    margin-top: auto;
}

.button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.button:hover {
    background-color: #e45a5a;
    transform: translateY(-2px);
}

/* 响应式调整 */
@media (max-width: 992px) {
    .page-title {
        font-size: 2.2rem;
    }

    .page-description {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .page-title {
        font-size: 1.8rem;
    }

    .page-description {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 2.5rem;
    }

    .card-content {
        padding: 1.5rem;
    }
}
