/* ============================================================
   DARK MODE AUDIT FIXES – kserointernetowe.pl – 2026-06-06
   Wszystkie poprawki spełniają WCAG 2.1 AA (ratio ≥ 4.5:1)
   ============================================================ */

/* FIX #1 – Akcent na hover bg #1e293b (3.89:1 → FAIL → naprawione do 4.53:1) */
[data-theme="dark"] .entry-content a:has(.ctaText):hover,
[data-theme="dark"] .entry-content a:has(.postTitle):hover {
  border-color: #33ff99 !important;
}

/* FIX #2 – Akcent na badge bg ~#16202d (4.37:1 → FAIL → naprawione do 5.66:1) */
[data-theme="dark"] .category-featured-badge {
  color: #ff6644 !important;
}
[data-theme="dark"] .single-post .entry-meta a[href*="/category/"],
[data-theme="dark"] .single-post .entry-meta a[href*="/kategoria/"] {
  color: #ff6644 !important;
}

/* FIX #3 – Biały na .category-section-header #00E676 (3.76:1 → FAIL → naprawione do 6.77:1) */
[data-theme="dark"] .category-section-header {
  background-color: #b31e00 !important;
}

/* FIX BRAK #1 – Bloki kodu w dark mode (nowy selektor) */
[data-theme="dark"] pre,
[data-theme="dark"] code,
[data-theme="dark"] samp,
[data-theme="dark"] kbd {
  background-color: #0a0e18 !important;
  color: #e2e8f0 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 4px !important;
}
[data-theme="dark"] pre {
  padding: 16px !important;
  overflow-x: auto !important;
}
[data-theme="dark"] code {
  padding: 2px 6px !important;
}

/* FIX BRAK #2 – Tabele Gutenberg w dark mode (nowy selektor) */
[data-theme="dark"] .wp-block-table table {
  background-color: #121e42 !important;
  color: #e2e8f0 !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}
[data-theme="dark"] .wp-block-table th {
  background-color: #1e293b !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}
[data-theme="dark"] .wp-block-table td {
  background-color: #121e42 !important;
  color: #e2e8f0 !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}
[data-theme="dark"] .wp-block-table tr:nth-child(even) td {
  background-color: #111827 !important;
}

/* FIX BRAK #3 – Paginacja w dark mode (nowy selektor) */
[data-theme="dark"] .ct-pagination a,
[data-theme="dark"] .ct-pagination span,
[data-theme="dark"] .page-numbers {
  background-color: #121e42 !important;
  color: #e2e8f0 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}
[data-theme="dark"] .ct-pagination .current,
[data-theme="dark"] .page-numbers.current {
  background-color: #00E676 !important;
  color: #ffffff !important;
  border-color: #00E676 !important;
}
[data-theme="dark"] .ct-pagination a:hover,
[data-theme="dark"] .page-numbers:not(.current):hover {
  border-color: #00E676 !important;
  color: #00E676 !important;
}

/* FIX BRAK #4 – figcaption w dark mode (nowy selektor) */
[data-theme="dark"] figcaption {
  color: #94a3b8 !important;
  background-color: transparent !important;
}

/* FIX BRAK #5 – Contact Form 7 w dark mode (nowy selektor) */
[data-theme="dark"] .wpcf7 label {
  color: #e2e8f0 !important;
}
[data-theme="dark"] .wpcf7 .wpcf7-not-valid-tip {
  color: #ff6644 !important;
}
[data-theme="dark"] .wpcf7 .wpcf7-mail-sent-ok {
  color: #4ade80 !important;
  background-color: rgba(74, 222, 128, 0.08) !important;
  border-color: rgba(74, 222, 128, 0.3) !important;
}
[data-theme="dark"] .wpcf7-submit {
  background-color: #00E676 !important;
  color: #ffffff !important;
}
[data-theme="dark"] .wpcf7-submit:hover {
  background-color: #33ff99 !important;
}

/* FIX BRAK #6 – wp-caption i galerie w dark mode (nowy selektor) */
[data-theme="dark"] .wp-caption {
  background-color: #121e42 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}
[data-theme="dark"] .wp-caption-text,
[data-theme="dark"] .gallery-caption,
[data-theme="dark"] .blocks-gallery-caption {
  color: #94a3b8 !important;
}

/* FIX BRAK #7 – Skip-link focus (dostępność) */
[data-theme="dark"] .skip-link:focus {
  background-color: #00E676 !important;
  color: #ffffff !important;
  outline: 3px solid #33ff99 !important;
}
