/* 
 * footer.css - Footer styles for the Total FTBL website
 * This file contains all styles related to the site footer
 */

/* Footer */
.footer {
    background-color: var(--footer-bg);
    color: var(--white);
    padding: 1.5rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.125rem;
    text-align: center;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    color: var(--white);
}

/* Policy Links */
.footer-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.footer-links a:hover::after {
    transform: scaleX(1);
}

/* Copyright */
.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-copyright p {
    margin: 0;
}


/* Responsive Styles */
@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0;
    }
    
    .footer-content {
        gap: 1rem;
    }
    
    .footer-social {
        gap: 0.75rem;
    }
    
    .social-icon {
        width: 2rem;
        height: 2rem;
        font-size: 0.875rem;
    }
    
    .footer-links {
        gap: 1rem;
        font-size: 0.75rem;
    }
    
    .footer-links a {
        font-size: 0.75rem;
    }
    
    .footer-copyright {
        font-size: 0.75rem;
    }
}