/* footer-desktop.css */
footer {
    background: linear-gradient(160deg, #0a192f 0%, #112240 100%);
    position: relative;
    z-index: 10;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.4), transparent);
}

footer a {
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

footer .material-symbols-outlined {
    font-size: 20px;
}

/* Custom Animation for Newsletter Button */
#newsletter-footer button span {
    transition: transform 0.3s ease;
}

#newsletter-footer button:hover span {
    transform: translateX(4px) rotate(-10deg);
}

/* Glassmorphism subtle effects */
.bg-white\/5 {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Scroll indicator smoothness */
html {
    scroll-behavior: smooth;
}

/* Social Icon Hover Glow */
footer .social-glow:hover {
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.3);
}

/* Animated Underline for Footer Links */
footer ul li a {
    position: relative;
    padding-bottom: 2px;
}

footer ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #fabc05; /* Accent Yellow */
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

footer ul li a:hover::after {
    width: 100%;
}

/* Bottom Bar Links Underline */
.bottom-bar-link {
    position: relative;
    padding-bottom: 2px;
}

.bottom-bar-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    transition: width 0.3s ease;
}

.bottom-bar-link:hover::after {
    width: 100%;
}

/* Back to Top Shine */
#backToTop::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: 0.5s;
}

#backToTop:hover::after {
    left: 100%;
}
