/* FIX THE HOVER ANIMATION ON SOCIAL LINKS */

footer {
    background-color: #09061F;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 2rem;
    padding-bottom: 2rem;
    position: relative;
    width: 100%;
}
.footer-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #4283c4 0%, #6366f1 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    color: white;
    flex-shrink: 0;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}
.footer-brand-text:hover .footer-brand-subtitle {
    color: white;
}
.footer-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    transition: 0.5s ease-in-out;
}
.footer-brand:hover .footer-brand-subtitle {
    color: white;
}
.footer-brand-name {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
}
.footer-brand-subtitle {
    color: #80848e;
    font-size: 12px;
    line-height: 1.2;
    transition: 0.5s ease-in-out;

}
.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}


.footer-social .social-link {
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #80848e;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 100px;
    filter: brightness(0) invert(0.6);    
}
.footer-social .social-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.footer-social .social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.3s ease;
    z-index: 1;
}

.footer-social .social-link:hover::before {
    left: 100%;
}

.footer-social .social-link:hover {
    background-color: rgba(43, 45, 49, 0.247);
    filter: brightness(0) invert(1);
}

.footer-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-links a {
    color: #80848e;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    font-size: 20px;
    
}

.footer-links a:hover {
    color: #ffffff;
}