/* funkcje.css - Style specyficzne dla podstrony Funkcje */

/* Podstawowe ustawienia */
h2 {
    margin-bottom: 40px;
    color: var(--text-color);
}

h4 {
    font-size: 1.2rem; /* Slightly larger to match common h4 1.3rem better, or let common handle it? Common has 1.3rem */
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--secondary-color); /* Ensure consistent color */
}

/* --- Breadcrumb --- */
.breadcrumb {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb span {
    color: #ccc;
    margin: 0 8px;
}

.breadcrumb .current {
    color: var(--secondary-color);
    font-weight: 600;
}

/* --- Sekcja Hero --- */
.case-hero {
    background: linear-gradient(135deg, var(--light-bg-color) 0%, #ffffff 100%);
    padding: 80px 0 60px 0;
    text-align: center;
}

.case-hero h1 {
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.case-hero .subtitle {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Główna sekcja z funkcjami --- */
.case-section {
    padding: 80px 0;
}

.case-section:nth-child(odd) { 
    background-color: var(--white-color);
}

.case-section:nth-child(even) {
     background-color: var(--light-bg-color);
}

.case-section:last-of-type {
    border-bottom: none;
}

/* --- Nagłówki modułów z ikonami --- */
.feature-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff; /* Tło dla nagłówka */
    padding: 20px 30px;
    border-radius: 16px;
    margin-bottom: 40px;
    gap: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03); /* Delikatny cień */
}

.case-section:nth-child(even) .feature-header {
    background-color: #fff; /* Na szarym tle sekcji biały nagłówek wygląda dobrze */
}

.case-section:nth-child(odd) .feature-header {
    background-color: #f8f9fa; /* Na białym tle sekcji szary nagłówek */
}

.feature-header h2 {
    margin-bottom: 0;
    flex: 1;
    font-size: 1.8rem;
}

.feature-header .feature-icon {
    width: 70px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.feature-header.reverse {
    flex-direction: row-reverse;
}

.feature-header.reverse h2 {
    text-align: right;
}

/* --- Układ naprzemienny --- */
.feature-layout {
    display: flex;
    align-items: center;
    gap: 80px; /* Zwiększony odstęp dla oddechu */
}

.feature-layout.reverse {
    flex-direction: row-reverse;
}

.feature-description {
    flex: 1;
}

.feature-image {
    flex: 1;
    text-align: center;
    position: relative;
}

/* Stylizacja obrazka */
.feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px; /* Spójne z index.css */
    box-shadow: 0 20px 50px rgba(0,0,0,0.15); /* Spójne cienie */
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-image img:hover {
    transform: translateY(-5px);
}

/* --- Blok "Problem" vs "Rozwiązanie" --- */
.challenge-solution {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.challenge, .solution {
    padding: 25px 30px;
    border-radius: 16px; /* Spójne z kartami index.css */
    font-size: 0.95rem;
    line-height: 1.6;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03); /* Delikatny cień */
}

/* Wersja "Problem" - bardziej neutralna, szara */
.challenge {
    background-color: #f5f5f5;
    border-left: 4px solid #999;
    color: #555;
}

.challenge h4 {
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Wersja "Rozwiązanie" - wyróżniona kolorem marki */
.solution {
    background-color: rgba(130, 195, 65, 0.1); /* Bardzo jasna zieleń (accent) */
    border-left: 4px solid var(--accent-color);
    color: #222;
}

.solution h4 {
    color: var(--accent-color); /* Zieleń w nagłówku */
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --- Lista korzyści --- */
.feature-benefits {
    list-style: none;
    padding-left: 0;
    margin-top: 25px;
}

.feature-benefits li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.5;
}

/* Ikonka "check" */
.feature-benefits li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    background-color: var(--accent-color); /* Zielone tło kółeczka */
    color: #fff;
    border-radius: 50%;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
/* Alternatywa bez tła (można odkomentować jeśli wolisz sam znak) */
/*
.feature-benefits li::before {
    content: '✓';
    background: none;
    color: var(--accent-color);
    font-size: 1.2rem;
}
*/

.feature-benefits strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* --- Sekcja CTA na dole strony --- */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e70b3 100%); /* Jaśniejszy, żywy niebieski */
    color: var(--white-color);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    z-index: 10; /* Wyniesienie nad stopkę */
    box-shadow: 0 10px 30px rgba(0,0,0,0.15); /* Cień rzucany na stopkę */
}

.cta-section h2 {
    color: var(--white-color);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* --- Media queries --- */
@media (max-width: 992px) {
    .feature-layout, .feature-layout.reverse { 
        flex-direction: column; 
        gap: 50px;
        text-align: center;
    }
    
    .feature-image {
        order: -1; /* Obrazek na górze */
    }

    .feature-description {
        text-align: left; /* Tekst wyrównany do lewej dla czytelności */
    }
    
    .case-hero h1 {
        font-size: 2.2rem;
    }
} 

@media (max-width: 768px) {
    .case-hero {
        padding: 60px 0 40px 0;
    }
    .case-section {
        padding: 50px 0;
    }
    
    .feature-layout {
        gap: 40px;
    }

    .feature-header, .feature-header.reverse {
        flex-direction: column-reverse;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }

    .feature-header h2, .feature-header.reverse h2 {
        text-align: center;
    }
}