/* Logo 样式设置 */

/* 导航栏 Logo */
.logo-image {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .logo-image {
    transform: translateY(-2px);
}

/* 页脚 Logo */
.footer-logo-image {
    height: 36px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-logo:hover .footer-logo-image {
    transform: translateY(-3px);
}

/* 浮动元素 Logo */
.floating-logo {
    height: 30px;
    width: auto;
    margin-right: 5px;
    filter: brightness(1.1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* 响应式调整 */
@media (max-width: 767.98px) {
    .logo-image {
        height: 35px;
    }
    
    .footer-logo-image {
        height: 32px;
    }
    
    .floating-logo {
        height: 25px;
    }
}
