/* Layout Base Styles */
* {
    font-family: 'Work Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #F8F9FA;
    color: #1a1a1a;
    line-height: 1.6;
    padding-top: 60px;
}

/* Top Banner */
.top-banner-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 60px;
    z-index: 1001;
    background: #1a1a1a;
    overflow: hidden;
}

.top-banner-link {
    display: block;
    width: 100%;
    height: 100%;
}

.top-banner-img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    display: block;
}

/* Navbar */
.main-navbar {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 1rem 0;
    position: sticky;
    top: 60px;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a1a !important;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.nav-link {
    color: #1a1a1a !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #FF6B35 !important;
}

/* Buttons */
.btn-subscribe {
    background: #c44d1c;
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-subscribe:hover {
    background: #a33f15;
    color: white;
}

/* Main Content */
.main-content {
    padding: 2rem 0;
    min-height: 70vh;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #999;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-link {
    color: #999;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #FF6B35;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 35px;
    height: 35px;
    background: #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: #FF6B35;
    color: white;
}

.footer-bottom {
    border-top: 1px solid #2a2a2a;
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}

/* Category Badge - WCAG AA Contrast Compliant */
.category-badge {
    background: #C75000;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: .5rem !important;
}

.category-badge:hover {
    background: #a34200;
    color: white;
}

/* Tag Badge */
.tag-badge {
    background: #6c757d;
    color: white;
    padding: 0.25rem 0.6rem;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
}

.tag-badge:hover {
    background: #5a6268;
    color: white;
}

.tag-badge::before {
    content: '#';
    opacity: 0.8;
}

/* Meta Info */
.meta-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: #595959;
}

.meta-info i {
    color: #FF6B35;
}

/* Sidebar Widget Title */
.sidebar-widget .widget-title {
    color: #1a1a1a;
}

/* Alert Info */
.alert-info {
    background-color: #cce5ff;
    border-color: #b8daff;
    color: #004085;
}

.alert-info a {
    color: #002752;
    font-weight: 600;
}

/* Breadcrumb - WCAG AA Contrast Compliant */
.breadcrumb-wrapper {
    background: white;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin-bottom: 1.5rem;
}

.breadcrumb {
    margin-bottom: 0;
    padding: 0;
    background: transparent;
    font-size: 0.9rem;
}

.breadcrumb-item {
    color: #505050;
}

.breadcrumb-item a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: #C75000;
}

.breadcrumb-item.active {
    color: #595959;
    font-weight: 400;
}

.breadcrumb-item.active span[itemprop="name"] {
    color: #595959;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #C75000;
    font-weight: 600;
    padding: 0 0.6rem;
}

.breadcrumb-item i {
    margin-right: 0.3rem;
    font-size: 0.85rem;
}
