/**
 * Footer Styling
 */

/* Footer Container */
.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    margin-top: 40px;
    padding: 40px 0 0 0;
    border-top: 3px solid #667eea;
}

.footer-content {
    padding: 40px 0;
    color: #bdc3c7;
}

/* Footer Paragraph */
.footer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
    margin-bottom: 0;
}

/* Footer Title */
.footer-title {
    color: #ecf0f1;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-title i {
    color: #667eea;
    font-size: 18px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: #667eea;
    padding-left: 5px;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
}

/* Footer Divider */
.footer-divider {
    border: none;
    border-top: 1px solid #34495e;
    margin: 30px 0;
}

/* Footer Bottom */
.footer-bottom {
    align-items: center;
    padding-bottom: 20px;
}

.footer-copyright {
    color: #95a5a6;
    font-size: 13px;
    margin: 0;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(102, 126, 234, 0.2);
    color: #667eea;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 16px;
    text-decoration: none;
}

.footer-social a:hover {
    background-color: #667eea;
    color: white;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        padding: 30px 0;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-title {
        font-size: 14px;
    }

    .footer-text {
        font-size: 13px;
    }

    .col-md-4 {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .footer {
        margin-top: 30px;
        padding-top: 30px;
    }

    .footer-content {
        padding: 20px 0;
    }

    .footer-title {
        font-size: 13px;
    }

    .footer-text {
        font-size: 12px;
    }

    .footer-copyright {
        font-size: 11px;
    }

    .footer-links a {
        font-size: 12px;
    }
}

/* Dark Mode Support */
[data-theme="dark"] .footer {
    background-color: #1a1a1a;
    border-top-color: #667eea;
}

[data-theme="dark"] .footer-title {
    color: #f0f0f0;
}

[data-theme="dark"] .footer-text {
    color: #a0a0a0;
}

[data-theme="dark"] .footer-links a {
    color: #a0a0a0;
}

[data-theme="dark"] .footer-copyright {
    color: #707070;
}

[data-theme="dark"] .footer-divider {
    border-top-color: #333;
}
