/* Reset podstawowych styli */
        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Lora', serif;
            color: #111111;
            background-color: #ffffff;
            line-height: 1.6;
            padding: 0 20px;
        }

        .container {
            max-width: 940px;
            margin: 0 auto;
            padding-bottom: 60px;
        }

        /* Nagłówek i podtytuł */
        header {
            text-align: center;
            padding: 60px 0 30px 0;
        }

        header h1 {
            font-size: 3rem;
            font-weight: 700;
            letter-spacing: -1px;
            margin-bottom: 10px;
        }

        header p {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.9rem;
            color: #555;
            letter-spacing: 0.5px;
        }

        /* Nawigacja */
        nav {
            border-top: 1px solid #111;
            border-bottom: 1px solid #111;
            padding: 15px 0;
            margin-bottom: 40px;
        }

        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 30px;
        }

        nav ul li a {
            text-decoration: none;
            color: #111;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.2s ease;
            cursor: pointer;
        }

        nav ul li a:hover, nav ul li a.active { color: #666; }

        /* Sekcja Wyszukiwarki */
        .search-container {
            margin-bottom: 40px;
            text-align: center;
        }

        .search-bar {
            width: 100%;
            max-width: 400px;
            padding: 10px 15px;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.9rem;
            border: 1px solid #111;
            border-radius: 4px;
            outline: none;
        }

        /* Widoczność sekcji */
        .page-section { display: none; }
        .page-section.active-section { display: block; }

        /* Lista wpisów */
        .posts-list {
            display: flex;
            flex-direction: column;
            gap: 50px;
        }

        .post-card {
            display: flex;
            gap: 40px;
            align-items: flex-start;
            padding-bottom: 50px;
            border-bottom: 1px solid #eee;
            text-align: left;
        }

        .post-card:last-child { border-bottom: none; }

        /* Nowa, mniejsza i zgrabna miniaturka */
.post-image {
    flex: 0 0 180px; /* Zmniejszono szerokość z 380px do 180px */
    height: 130px;   /* Zmniejszono wysokość z 300px do 130px */
    border-radius: 4px;
    border: 1px solid #111;
    overflow: hidden;
    cursor: pointer; /* Kursor zmienia się w rączkę, sugerując klikalność */
    transition: transform 0.2s ease;
}

.post-image:hover {
    transform: scale(1.02); /* Subtelne powiększenie po najechaniu */
}

.post-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}
        
        .post-content { flex: 1; }
        
        .post-content h2 { 
            font-size: 2rem; 
            font-weight: 700; 
            line-height: 1.2; 
            margin-bottom: 12px; 
        }

        /* Usunięcie brzydkiego koloru linków w tytule wpisu */
        .post-content h2 a {
            color: #111111;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .post-content h2 a:hover {
            color: #555555;
            text-decoration: underline;
        }

        .post-content .date { 
            font-family: 'Montserrat', sans-serif; 
            font-size: 0.8rem; 
            color: #666; 
            margin-bottom: 20px; 
            display: block; 
        }
        
        .post-content .excerpt { 
            font-size: 1.05rem; 
            color: #333; 
        }

        /* Sekcja O Mnie */
        .about-content { display: flex; gap: 40px; align-items: center; }
        .about-image { flex: 0 0 300px; height: 300px; border-radius: 50%; overflow: hidden; border: 1px solid #111; }
        .about-image img { width: 100%; height: 100%; object-fit: cover; }
        .about-text h2 { font-size: 2.2rem; margin-bottom: 20px; }
        .about-text p { font-size: 1.1rem; color: #333; margin-bottom: 15px; white-space: pre-line; }


        /* Sekcja Kontakt */
        .contact-container { max-width: 600px; margin: 0 auto; text-align: center; }
        .contact-container h2 { font-size: 2.2rem; margin-bottom: 20px; }
        .contact-info { font-size: 1.1rem; margin-bottom: 40px; color: #333; }
        .contact-info p { margin-bottom: 10px; }

        /* Ikonki Social Media */
        .social-icons { display: flex; justify-content: center; gap: 30px; margin-top: 20px; }
        .social-icons a { color: #111; font-size: 2rem; transition: color 0.2s ease, transform 0.2s ease; }
        .social-icons a:hover { color: #666; transform: scale(1.1); }

        /* Komunikaty statusu */
        .no-results { text-align: center; font-size: 1.2rem; color: #666; margin-top: 40px; display: none; }
        .empty-blog { text-align: center; font-size: 1.2rem; color: #666; margin-top: 40px; font-style: italic; }

        /* Responsywność */
        @media (max-width: 768px) {
            header h1 { font-size: 2.2rem; }
            nav ul { gap: 20px; }
            .post-card { flex-direction: column; gap: 20px; }
            .post-image { flex: none; width: 100%; height: 240px; }
            .post-content h2 { font-size: 1.6rem; }
            .about-content { flex-direction: column; text-align: center; }
            .about-image { flex: none; width: 200px; height: 200px; }
        }
        /* STYLIZACJA LIGHTBOXA (PÓŁPRZEZROCZYSTE TŁO) */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95); /* Minimalistyczne, białe półprzezroczyste tło */
    /* Jeśli wolisz ciemny klimat, odkomentuj linijkę poniżej, a powyższą usuń: */
    /* background-color: rgba(0, 0, 0, 0.85); */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-overlay img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox-overlay.active img {
    transform: scale(1);
}

/* Przycisk zamknięcia */
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #111;
    cursor: pointer;
    user-select: none;
}
        .excerpt img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
    margin: 10px 0 !important;
    border-radius: 4px;
    border: 1px solid #eee;
}
