/* ==========================================================================
   STYLE DEDYKOWANE DLA /o-nas.php
   ========================================================================== */

/* === NOWA SEKCJA HERO === */
.hero-onas-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.hero-onas-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.05;
    z-index: 1;
}

.hero-onas-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-onas-content h1 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.hero-onas-content .hero-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
}

/* === SEKCJA Z HISTORIĄ === */
.history-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.history-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.history-content {
    text-align: left;
}

/* === NOWA SEKCJA - ZAŁOŻYCIELKA === */
.founder-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.founder-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.founder-image img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #FFA550;
    box-shadow: 0 5px 20px rgba(255, 165, 80, 0.3);
}

.founder-content h3 {
    font-size: 1.8rem;
    margin: 0;
}

.founder-content h4 {
    font-size: 1rem;
    font-weight: 400;
    color: #888;
    margin-bottom: 20px;
}

.founder-content blockquote {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
    color: #555;
    border-left: 4px solid #FFA550;
    padding-left: 20px;
    margin: 0;
    text-align: left;
}

/* === SEKCJA MISJI - IKONY === */
.benefit-card .benefit-icon {
    color: #FFA550;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #FFF5E6;
    border-radius: 50%;
    margin-bottom: 20px;
}

.benefit-card .benefit-icon svg {
    width: 28px;
    height: 28px;
}

/* === Media Queries === */
@media (min-width: 768px) {
    .history-grid {
        grid-template-columns: 1fr 1.2fr;
    }
    .founder-wrapper {
        flex-direction: row;
        text-align: left;
        gap: 40px;
    }
    .founder-content blockquote {
        padding-left: 30px;
    }
}
