/*
Theme Name: BNC Theme
Version: 2.0
*/

/* 1. POTPUNI RESET I FLEXBOX STRUKTURA */
* { box-sizing: border-box; }
html, body { 
    height: 100% !important; 
    margin: 0 !important; 
    padding: 0 !important; 
    background-color: #1a1a1a !important; 
}
body { 
    display: flex !important; 
    flex-direction: column !important; 
    min-height: 100vh !important; 
}

/* 2. GLAVNI SADRŽAJ (Rasteže se) */
#bnc-page-wrap, #page, #content, .site-content, main { 
    flex: 1 0 auto !important; 
    width: 100% !important; 
}

/* 3. FOOTER (Fiksiran na dno) */
.bnc-footer { 
    flex-shrink: 0 !important; 
    width: 100% !important; 
    margin-top: 0 !important; 
}

/* 4. TVOJ DIZAJN (Sidebar) */
body .bnc-sidebar-title { color: #fff; font-size: 18px; font-weight: 800; margin-bottom: 20px; text-transform: uppercase; border-left: 4px solid #e63946; padding-left: 10px; }
body .bnc-cards-wrapper { display: flex; flex-direction: column; gap: 15px; margin-bottom: 20px; }
body .bnc-card-item { display: flex; flex-direction: row; gap: 15px; padding: 12px; background-color: #1a1a1a; border-radius: 8px; text-decoration: none; align-items: flex-start; border: 1px solid #252525; }
body .bnc-card-item:hover { background-color: #252525; border-color: #333; }
body .bnc-sidebar-img { width: 80px; height: 60px; background-size: cover; background-position: center; border-radius: 4px; flex-shrink: 0; }
body .bnc-sidebar-body { display: flex; flex-direction: column; justify-content: center; }
body .bnc-sidebar-cat { color: #e63946; font-size: 10px; font-weight: 700; text-transform: uppercase; margin-bottom: 4px; }
body .bnc-sidebar-h { color: #fff; font-size: 13px; font-weight: 600; line-height: 1.3; margin: 0 0 5px 0; }
body .bnc-sidebar-date { color: #777; font-size: 10px; }
body .bnc-sidebar-more { display: block; text-align: center; color: #fff; font-weight: 700; text-decoration: none; margin-top: 10px; border: 1px solid #333; padding: 10px; border-radius: 4px; font-size: 13px; }
body .bnc-sidebar-more:hover { background: #e63946; border-color: #e63946; }

/* 5. KOMENTARI */
.bnc-comments-section { background: #111 !important; border: 1px solid #333 !important; color: #fff !important; padding: 25px !important; border-radius: 8px !important; }
.bnc-comments-section textarea, .bnc-comments-section input { background: #222 !important; border: 1px solid #444 !important; color: #fff !important; padding: 10px !important; border-radius: 4px !important; width: 100% !important; }
.bnc-comments-section #submit { background: #e63946 !important; color: #fff !important; border: none !important; padding: 10px 20px !important; border-radius: 4px !important; cursor: pointer !important; margin-top: 10px !important; }
.bnc-comments-section #submit:hover { background: #d62839 !important; }
.bnc-comments-section label { color: #bbb !important; }

/* Sakrij mobilni prikaz na desktopu, pokaži ga na mobitelu */
@media screen and (max-width: 768px) {
    .desktop-only-view { display: none !important; }
    .mobile-only-view { display: flex !important; }
}

/* Sakrij desktop prikaz na mobitelu */
@media screen and (min-width: 769px) {
    .mobile-only-view { display: none !important; }
}