/**
 * 页脚样式 - 左右布局，居中对齐
 */

.footer {
    background: #2C2C2C;
    color: #fff;
    padding: 60px 40px 30px;
    margin-top: 100px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

/* 左侧 Logo */
.footer-left {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: auto;
    width: auto;
    max-height: 100px;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 60px;
    line-height: 1;
}

/* 右侧文字 */
.footer-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-site-name {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1.2;
}

.footer-text {
    color: #999;
    margin: 5px 0;
    font-size: 14px;
    line-height: 1.6;
}

/* 中间链接 */
.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #FF6B35;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 20px;
        margin-top: 60px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-right {
        align-items: center;
    }

    .footer-logo-img {
        max-height: 70px;
    }

    .footer-logo-text {
        font-size: 48px;
    }

    .footer-site-name {
        font-size: 24px;
    }
}