﻿
/* Footer */
.footer-container {
    background: var(--secondary-bg);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border-color);
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--accent-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: var(--text-secondary) !important;
    margin-bottom: 0.5rem !important;
}

.footer-links {
    list-style: none !important;
    padding: 0 !important;
}

.footer-links li {
    margin-bottom: 0.5rem !important;
}

.footer-links a {
    color: var(--text-secondary) !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
    cursor: pointer !important;
}

.footer-links a:hover {
    color: var(--accent-primary) !important;
}

.footer-social {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
    margin-bottom: 1rem !important;
}

.footer-social a {
    color: var(--text-secondary) !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.footer-social a:hover {
    color: var(--accent-primary) !important;
}

.footer-resume-btn {
    display: inline-block ;
    background: var(--accent-primary) !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    transition: background 0.3s ease !important;
    font-size: 0.9rem !important;
}

.footer-resume-btn:hover {
    background: var(--accent-primary-hover) !important;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    text-align: center;
    color: var(--text-secondary);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-social {
        align-items: center;
    }
}

@media (max-width: 480px) {

    .footer {
        padding: 2rem 0 1rem;
    }
}