/* --- Footer Styling --- */
.site-footer {
    background-color: var(--black);
    color: var(--white);
    padding: 80px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta {
    margin: auto;    
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-cta h2 {
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    max-width: fit-content;
}

.footer-socials a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-socials a:hover {
    color: var(--primary-colour);
}

/* Optional: Add icons next to the handles if you want them to pop */
.footer-socials a::before {
    margin-right: 10px;
    font-family: "Font Awesome 6 Brands";
    width: 20px;
}

.footer-socials a[href*="tiktok"]::before { content: "\e07b"; } /* TikTok Icon */
.footer-socials a[href*="instagram"]::before { content: "\f16d"; } /* Instagram Icon */
.footer-socials a[href*="youtube"]::before { content: "\f167"; } /* YouTube Icon */

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 0;
}

.footer-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
}

.copyright {
    margin-bottom: 0;
}

/* Mobile Tweak */
@media (max-width: 768px) {
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 20px; }
}