@charset "ISO-8859-1";
/* footer-social.css - Isolated footer styles with social media icons */

/* Footer container */
.footer-social-container {
    background-color: #f8f9fa;
    padding: 20px 0;
    border-top: 1px solid #e9ecef;
    margin-top: 30px;
}

/* Footer content wrapper */
.footer-social-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    flex-wrap: wrap;
}

/* Social media icons sections */
.footer-social-left,
.footer-social-right {
    display: flex;
    gap: 15px;
    flex: 1;
}

.footer-social-right {
    justify-content: flex-end;
}

/* Social icon styling */
.footer-social-icon {
    color: #2e4b81;
    font-size: 20px;
    transition: color 0.3s ease;
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(46, 75, 129, 0.1);
}

.footer-social-icon:hover {
    color: #1a315e;
    background-color: rgba(46, 75, 129, 0.2);
    transform: translateY(-2px);
}

/* Center content styling */
.footer-social-center {
    text-align: center;
    flex: 2;
    min-width: 300px;
    padding: 10px 0;
}

.footer-social-center p {
    margin: 0;
    color: #333;
    font-size: 14px;
}

.footer-social-center a {
    color: #2e4b81;
    text-decoration: none;
}

.footer-social-center a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-social-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-social-left,
    .footer-social-right {
        justify-content: center;
        flex: none;
    }
    
    .footer-social-center {
        order: 3;
        min-width: auto;
        width: 100%;
    }
}