/* Footer Styling */
footer {
    background-color: var(--primary-accent);
    color: var(--white);
    padding: 3rem 2rem;
    margin-top: auto;
    font-family: var(--font-ui);
    font-weight: 500;
}

footer a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: var(--font-ui);
    font-weight: 500;
}

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

footer p {
    color: var(--white);
    font-weight:500;
    margin: 0.5rem 0;
}

footer .secondary-text {
    color: var(--text-light);
    opacity: 0.8;
}

/* Footer sections */
.footer-section {
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-family: var(--font-ui);
    font-weight: 500;
}

.footer-nav {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-nav li {
    display: inline-block;
}

.footer-nav a {
    font-size: 0.95rem;
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0.5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom a {
    display: inline;
}

.copyright-line .copyright-meta,
.copyright-line .copyright-text {
    display: inline;
}

/* Responsive */
@media (max-width: 768px) {
    footer {
        padding: 2rem 1.5rem;
    }
    
    .footer-section {
        margin-bottom: 1.5rem;
    }

    .footer-bottom .copyright-line {
        display: block;
    }

    .copyright-line .copyright-meta,
    .copyright-line .copyright-text {
        display: block;
    }

    .copyright-line .copyright-text {
        margin-top: 0.15rem;
    }
}

/* Facebook Button */
.fb-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding: 0.5rem 1.1rem;
    background-color: #1877f2;
    color: #fff !important;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: var(--font-ui);
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.25s ease;
}

.fb-btn:hover {
    background-color: #145dbf;
    color: #fff !important;
}

.fb-icon {
    width: 20px;
    height: 20px;
    fill: #fff;
    flex-shrink: 0;
}

.creatorNote a {
    color: #888888;
    text-decoration: underline;
    font-size: 0.7rem;
}