:root {
    --footer-white: white;
    --footer-white-transparent: rgba(255, 255, 255, 0.8);
}

/* Footer */
footer {
    background: linear-gradient(
        135deg,
        var(--app-primary-color),
        var(--app-secondary-color)
    );
    color: var(--footer-white);
    padding: 40px 0;
    margin-top: auto;
}

footer a {
    color: var(--footer-white-transparent);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
    display: inline-block;
}

footer a:hover {
    color: var(--footer-white);
}

social-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

footer h6 {
    font-size: 1.1rem;
    font-weight: 600;
    white-space: nowrap;
    margin-bottom: 1.5rem;
}

/* Footer Styles */

.footer-social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-social-links .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--app-primary-color);
    color: var(--footer-white);
    border-radius: 50%;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.footer-social-links .social-icon:hover {
    background-color: var(--app-secondary-color);
    transform: translateY(-5px);
}

/* Responsive Typography */
@media (max-width: 768px) {
    footer .col-md-4 {
        margin-bottom: 20px;
    }

    .d-flex.align-items-center.justify-content-center {
        flex-direction: column;
    }

    footer h6 {
        margin-bottom: 1rem !important;
    }
}

@media (max-width: 576px) {
    .social-links {
        justify-content: center;
        width: 100%;
        margin-top: 10px;
    }
}
