
/* Dynamic Top Bar Styles - High Priority Override */
body .top-bar,
.top-bar {
    background: #2c3e50 !important;
    background-color: #2c3e50 !important;
    background-image: none !important;
    color: #ffffff !important;
}

body .top-bar a,
body .top-bar .top-bar-item,
body .top-bar .top-bar-page-title,
.top-bar a,
.top-bar .top-bar-item,
.top-bar .top-bar-page-title {
    color: #ffffff !important;
}

body .top-bar a:hover,
body .top-bar .top-bar-item:hover,
.top-bar a:hover,
.top-bar .top-bar-item:hover {
    color: #fae500 !important;
}

body .top-bar .social-link,
.top-bar .social-link {
    color: #ffffff !important;
    border-color: rgba(255,255,255, 0.3) !important;
}

body .top-bar .social-link:hover,
.top-bar .social-link:hover {
    background-color: #fae500 !important;
    color: #2c3e50 !important;
    border-color: #fae500 !important;
}

body .top-bar .top-bar-page-title,
.top-bar .top-bar-page-title {
    background: rgba(255,255,255, 0.1) !important;
}

body .top-bar .top-bar-page-title:hover,
.top-bar .top-bar-page-title:hover {
    background: rgba(250,229,0, 0.2) !important;
    color: #fae500 !important;
}

/* Dynamic Header Styles */
.site-header .main-nav a {
    color: #2c3e50;
}

.site-header .main-nav a:hover,
.site-header .main-nav a.active {
    color: #3498db;
}

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Dynamic Footer Styles */
.site-footer {
    background-color: #2c3e50;
    color: #ffffff;
}

.site-footer a {
    color: #3498db;
}

.site-footer a:hover {
    opacity: 0.8;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .footer-columns {
        grid-template-columns: 1fr;
    }
}
