/* VisionAQ Prints - Desktop Footer Styles */

.site-footer {
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
    padding: 40px 0 50px 0;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.footer-links {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-grow: 1;
    justify-content: center;
}

.footer-link {
    color: #666;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
}

.footer-link:hover {
    color: #007aff;
    background: #f8f9fa;
    transform: translateY(-1px);
}

.footer-link:active {
    transform: translateY(0);
}

.footer-copyright {
    color: #999;
    font-size: 14px;
    font-weight: 400;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Divider lines removed */

/* Responsive adjustments for smaller desktop screens */
@media (max-width: 1024px) {
    .footer-container {
        padding: 0 30px;
        gap: 30px;
    }
    
    .footer-links {
        gap: 25px;
    }
    
    .footer-link {
        font-size: 14px;
        padding: 8px 14px;
    }
}

/* Tablet landscape adjustments */
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    /* Divider lines already removed */
    
    .footer-links {
        justify-content: center;
        gap: 20px;
    }
    
    .footer-copyright {
        justify-content: center;
        padding-top: 20px;
        border-top: 1px solid #f0f0f0;
        width: 100%;
    }
}

/* Hover effects for desktop */
@media (hover: hover) and (pointer: fine) {
    .footer-link {
        position: relative;
        overflow: hidden;
    }
    
    .footer-link::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: #007aff;
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }
    
    .footer-link:hover::before {
        width: 80%;
    }
} 