/*
Footer Styles
*/

/* Footer - apt Style */
.site-footer {
    padding: 20px 0 10px;
    border-top: 1px solid #eee;
    margin-top: 40px;
    text-align: center;
}

.footer-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    margin-bottom: 8px;
}

.footer-logo img {
    width: 120px;
}

.footer-logo-link {
    display: inline-block;
    text-decoration: none;
}

.footer-site-logo {
    width: auto;
    max-width: 200px;
    height: auto;
    transition: opacity 0.3s ease;
}

.footer-site-logo:hover {
    opacity: 0.8;
}

.footer-links {
    font-size: 13px;
    color: #666;
    line-height: 24px;
    font-weight: 400;
}

.footer-links a {
    color: #1a936f;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-links a:hover {
    color: #16a085;
    text-decoration: underline;
}

.footer-separator {
    margin: 0 8px;
    color: #999;
}

.footer-copyright {
    font-size: 13px;
    color: #999;
    margin-top: 10px;
    font-weight: 400;
    line-height: 24px;
}

.footer-copyright p {
    margin: 0;
}

/* Responsive Footer Styles */
@media (max-width: 768px) {
    .site-footer {
        padding: 20px 0 10px;
    }
    
    .footer-content {
        padding: 0 15px;
    }
    
    .footer-logo {
        margin-bottom: 8px;
    }
    
    .footer-site-logo {
        max-width: 150px;
    }
    
    .footer-links {
        font-size: 13px;
        margin-bottom: 20px;
        line-height: 24px;
    }
    
    .footer-links a {
        display: block;
        margin: 8px 0;
        padding: 5px 0;
    }
    
    .footer-separator {
        display: none;
    }
    
    .footer-copyright {
        font-size: 13px;
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 20px 0 10px;
    }
    
    .footer-content {
        padding: 0 10px;
    }
    
    .footer-logo {
        margin-bottom: 20px;
    }
    
    .footer-site-logo {
        max-width: 120px;
    }
    
    .footer-links {
        font-size: 13px;
        margin-bottom: 8px;
        line-height: 24px;
    }
    
    .footer-links a {
        margin: 10px 0;
        padding: 8px 0;
        border-bottom: 1px solid #eee;
    }
    
    .footer-links a:last-child {
        border-bottom: none;
    }
    
    .footer-copyright {
        font-size: 12px;
        margin-top: 5px;
        line-height: 1.4;
    }
} 