/* Mini Footer Styles */
.mini-footer {
    padding: 2rem 5%;
    /* Added padding for side spacing */
    border-top: 1px solid var(--border-color);
    margin-top: 4rem;
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    /* Allow wrapping on small screens */
    gap: 1.5rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-email {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: #fff;
    text-decoration: underline;
}

.copyright {
    opacity: 0.6;
    margin: 0;
}

.social-icon {
    color: rgba(255, 255, 255, 0.7);
    transition: transform 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.social-icon i {
    font-size: 24px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-left {
        align-items: center;
    }
}