/* css/footer.css */

/* =========================================
   STILURI GENERALE FOOTER
========================================= */
.footer-wrapper {
    position: relative;
    /* Înlocuim border-ul clasic de la Tailwind cu un gradient subtil la partea superioară */
    border-top: 2px solid transparent;
    background: linear-gradient(#f3f4f5, #f3f4f5) padding-box,
                linear-gradient(90deg, #005bbf, #00d2ff) border-box;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.02);
}

/* =========================================
   EFECTE LINK-URI FOOTER
========================================= */
.footer-link {
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    padding-bottom: 4px;
}

/* Schimbăm culoarea la hover și le ridicăm extrem de fin */
.footer-link:hover {
    color: #005bbf; 
    transform: translateY(-1px);
}

/* Efect de subliniere animată care pleacă din centru, similar cu navigația principală */
.footer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #005bbf;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
    opacity: 0.8;
}

.footer-link:hover::after {
    width: 100%;
}