/*
Theme Name: Informatyk z pasją
Theme URI: https://example.com
Author: Twój Imię
Description: Motyw Landing Page dla IT. W pełni edytowalny.
Version: 1.4
Text Domain: informatyk
*/

/* Reset i podstawy - reszta stylów ładowana jest przez Tailwind w header.php */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #f8fafc;
    color: #0f172a;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Fix dla paska admina */
.admin-bar nav { 
    top: 32px !important; 
}
@media screen and (max-width: 782px) {
    .admin-bar nav { top: 46px !important; }
}

/* Stylowanie Logo */
.custom-logo-link img {
    height: 40px;
    width: auto;
    display: block;
}

/* --- FORMATOWANIE TREŚCI WPISÓW (np. Regulamin) --- */
/* Dopasowanie do ciemnego motywu (ciemne tło, jasny tekst) */

.entry-content h1, 
.entry-content h2, 
.entry-content h3, 
.entry-content h4 {
    color: #ffffff;
    font-weight: 700;
    margin-top: 1.5em;
    margin-bottom: 0.75em;
    line-height: 1.4;
}

.entry-content h1 { font-size: 2.25rem; }
.entry-content h2 { font-size: 1.75rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: 0.5em; }
.entry-content h3 { font-size: 1.5rem; }

.entry-content p {
    margin-bottom: 1.25em;
    line-height: 1.8;
    color: #cbd5e1; /* slate-300 */
}

/* Naprawa list punktowanych i numerowanych */
.entry-content ul {
    list-style-type: disc;
    margin-left: 1.5em;
    margin-bottom: 1.25em;
    padding-left: 1em;
    color: #cbd5e1;
}

.entry-content ol {
    list-style-type: decimal;
    margin-left: 1.5em;
    margin-bottom: 1.25em;
    padding-left: 1em;
    color: #cbd5e1;
}

.entry-content li {
    margin-bottom: 0.5em;
    padding-left: 0.5em;
    color: #cbd5e1; /* slate-300 */
    line-height: 1.7;
}

.entry-content li strong,
.entry-content li b {
    color: #ffffff;
}

/* Linki w treści */
.entry-content a {
    color: #60a5fa; /* text-blue-400 */
    text-decoration: underline;
    text-underline-offset: 2px;
}
.entry-content a:hover {
    color: #93c5fd; /* text-blue-300 */
}

/* Pogrubienia */
.entry-content strong, 
.entry-content b {
    font-weight: 700;
    color: #ffffff;
}