/* ===== OKIEMMECHANIKA.PL – PEŁNY DARK INDUSTRIAL Z ŻÓŁTYMI AKCENTAMI ===== */

/* Podstawowe tło – wszystko na czarno/szaro */
body, #page, .ct-container, .site-main, .ct-content, .entry-content, #primary {
    background-color: #0a0a0a !important;
    color: #e0e0e0 !important;
}

/* Nagłówki – żółte */
h1, h2, h3, h4, h5, h6, .wp-block-heading {
    color: #ffd700 !important;
}

/* Linki i akcenty żółte */
a, a:visited {
    color: #ffd700 !important;
    transition: color 0.3s ease;
}
a:hover {
    color: #ffea00 !important;
}

/* Przyciski – żółte */
button, .button, .wp-block-button__link, .ct-button, input[type="submit"] {
    background-color: #ffd700 !important;
    color: #000 !important;
    border: none !important;
}
button:hover, .wp-block-button__link:hover {
    background-color: #ffea00 !important;
}

/* BuddyPress – karty aktywności i feed */
#buddypress, .activity-list, .activity-item, .activity-inner, .activity-header, .activity-comments {
    background: #1a1a1a !important;
    border: 1px solid #333 !important;
    border-radius: 12px !important;
    box-shadow: 0 6px 16px rgba(0,0,0,0.8) !important;
}

/* Kontenery Blocksy – wymuszone ciemne */
.ct-container, .ct-container-wide, .hero-section, .site-footer, .ct-footer {
    background: #0a0a0a !important;
}

/* Stopka */
.site-footer {
    background: #111 !important;
    border-top: 1px solid #333 !important;
    color: #aaa !important;
}

/* Feed grid – jak Instagram */
@media (min-width: 992px) {
    #buddypress .activity-list {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 30px !important;
    }
}
@media (max-width: 991px) {
    #buddypress .activity-list {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}
@media (max-width: 599px) {
    #buddypress .activity-list {
        grid-template-columns: 1fr !important;
    }
}

/* Dodatkowe – na wypadek białych obszarów */
.entry-content > *, .wp-block-group, .wp-block-columns {
    background: transparent !important;
}