/* Import fontów dla Opcji 1 */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;1,400&family=Playfair+Display:wght@600;700&display=swap');

.Blok_01 {
    padding: 60px 20px;
    max-width: 1250px;
    margin: 0 auto;
    background-color: #000000; /* Głęboka czerń */
}

/* Nagłówki - Playfair Display */
.Blok_01 h2 {
    font-family: 'Playfair Display', serif;
    color: #a4b2a4; /* Twoja patynowana zieleń */
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.Blok_01 h3 {
    font-family: 'Playfair Display', serif;
    color: #FFFFFF;
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Wstępniak (pierwszy akapit) - delikatnie wyróżniony */
.Blok_01 .history-lead {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    color: #e0eade;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 50px;
    font-style: italic;
}

/* Treść główna i listy - Lora */
.Blok_01 p {
    font-family: 'Lora', serif;
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.Blok_01 ul {
    font-family: 'Lora', serif;
    color: #a4b2a4;
    font-size: 1.1rem;
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

/* --- Stylizacja rzędów ze zdjęciami (Flexbox) --- */
.history-row {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

/* Klasa odwracająca kolejność (zdjęcie po lewej) */
.history-row.reverse {
    flex-direction: row-reverse;
}

.history-col-text {
    flex: 1; /* Tekst dostaje kapkę więcej miejsca */
}

.history-col-img {
    flex: 1;
    min-width: 300px;
}

/* Kontener zdjęcia w stylu retro */
.history-thumb {
    margin: 0;
    padding: 10px;
    background: #0a0f0f; /* Bardzo ciemny morski pasujący do reszty projektu */
    border: 1px solid rgba(164, 178, 164, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    overflow: hidden; /* <--- KLUCZOWE: trzyma powiększone zdjęcie wewnątrz ramki */
}

.history-thumb img {
    width: 100%;
    height: auto;
    display: block;
    /* filter: grayscale(30%) contrast(1.1); /* Delikatny historyczny klimat */
    /* transition: all 0.4s ease; */
    transition: transform 0.5s ease, filter 0.4s ease; /* <--- Dodajemy transform do płynnego przejścia */
}

/* Efekt najechania na zdjęcie */
.history-thumb:hover img {
    /* filter: grayscale(0%) contrast(1.15); */
    transform: scale(1.06); /* <--- Subtelne powiększenie o 6% */
}

/* Podpis pod zdjęciem */
.history-thumb figcaption {
    font-family: 'Lora', serif;
    font-size: 0.85rem;
    color: #8e9e8e;
    text-align: center;
    margin-top: 10px;
    font-style: italic;
    line-height: 1.4;
}

/* --- Responsywność (Mobile) --- */
@media (max-width: 768px) {
    .history-row, .history-row.reverse {
        flex-direction: column; /* Na telefonach wszystko idzie w jedną kolumnę */
        gap: 20px;
    }
    .history-col-img {
        width: 100%;
    }
    .Blok_01 h2 { font-size: 2rem; }
    .Blok_01 h3 { font-size: 1.5rem; }
}
