/**
 * Footer Styles
 * BBC-Style Footer with Sticky Bottom
 *
 * @package TBC_News
 */

/* ===================================
   MAIN FOOTER WRAPPER
   =================================== */

.site-footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 0;
    margin-top: auto; /* Push to bottom */
    width: 100%;
}

/* Footer Top - Widget Area */
.footer-widgets {
    background: #242424;
    padding: 48px 0;
    border-bottom: 1px solid #333333;
    width: 100%;
}

.footer-widgets-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-widget {
    margin: 0;
}

.footer-widget .widget-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #ffffff;
}

.footer-widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-widget ul li {
    margin-bottom: 12px;
}

.footer-widget ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-widget ul li a:hover {
    color: #ffffff;
}

/* ===================================
   FOOTER NAVIGATION
   =================================== */

.footer-navigation {
    background: #1a1a1a;
    padding: 32px 0;
    border-bottom: 1px solid #333333;
    width: 100%;
}

.footer-nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.footer-menu li {
    margin: 0;
}

.footer-menu a {
    color: #cccccc;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #ffffff;
}

/* ===================================
   FOOTER BOTTOM
   =================================== */

.footer-bottom {
    background: #1a1a1a;
    padding: 24px 0;
    width: 100%;
}

.footer-bottom-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 2px;
}

.footer-logo a {
    color: #ffffff;
    text-decoration: none;
}

.footer-copyright {
    font-size: 12px;
    color: #888888;
}

.footer-copyright p {
    margin: 0;
}

.footer-copyright a {
    color: #cccccc;
    text-decoration: none;
    margin: 0 4px;
}

.footer-copyright a:hover {
    color: #ffffff;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    color: #cccccc;
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #ffffff;
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 1024px) {
    .footer-widgets-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .footer-widgets {
        padding: 32px 0;
    }
    
    .footer-widgets-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-menu {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .footer-social {
        justify-content: center;
    }
}