/* ===== Footer Base Styles ===== */
.site-footer {
    background-color: var(--techbeeps-footer-bg-color);
    color: var(--techbeeps-footer-color);
    font-size: 16px;
    margin: var(--techbeeps-footer-margin);
    padding: var(--techbeeps-footer-padding);
    border-top: 1px solid #ddd;
}

.site-footer a,
.site-footer p,
.site-footer h2 {
    color: var(--techbeeps-footer-color);
}

.site-footer .techbeeps-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Footer Widgets ===== */
.footer-widgets {
    display: flex;
    gap: 20px;
    justify-content: space-around;
    margin-bottom: 30px;
}

.footer-widgets .widget {
    flex: 1;
    min-width: 200px;
}

/* Widget titles */
.footer-widgets .widget-title {
    font-size: 18px;
    margin-bottom: 10px;

}

/* ===== Site Info Section ===== */
.techbeeps-site-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    

}

.techbeeps-site-info p {
    padding: 0 0 15px;
}


/* ===== Responsive ===== */
@media screen and (max-width: 768px) {
    .footer-widgets {
        flex-direction: column;
        gap: 20px;
    }

    #footer-menu {
        flex-direction: column;
        gap: 10px;
    }
}