/* ── About (O mnie) page styles ─────────────────────────────────── */

/* Hero Banner */
.about-banner {
    padding: 200px 0 120px;
    position: relative;
    overflow: hidden;
}

.about-banner h6 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #c44953;
    margin-bottom: 18px;
}

.about-banner h1 {
    font-size: 70px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about-banner {
        padding: 140px 0 80px;
    }
    .about-banner h1 {
        font-size: 42px;
    }
}

/* Bio section */
.about-bio {
    background: #0c0c0c;
}

.about-photo-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}

.about-photo-wrap img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: top center;
    display: block;
    position: relative;
    z-index: 1;
}

.about-photo-accent {
    position: absolute;
    bottom: -18px;
    right: -18px;
    width: 80%;
    height: 80%;
    border: 2px solid #c44953;
    z-index: 0;
    pointer-events: none;
}

@media (max-width: 991px) {
    .about-photo-wrap img {
        height: 420px;
    }
    .about-photo-accent {
        bottom: -10px;
        right: -10px;
    }
}

.about-text-wrap {
    padding-left: 40px;
}

.about-text-wrap h6 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #c44953;
    margin-bottom: 16px;
}

.about-text-wrap h2 {
    font-size: 40px;
    font-weight: 700;
    color: #ddd;
    margin-bottom: 28px;
    line-height: 1.2;
}

.about-text-wrap p {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #999;
    margin-bottom: 18px;
}

.about-signature {
    margin-top: 36px;
    padding-top: 28px;
}

.about-signature .sig-line {
    width: 50px;
    height: 2px;
    background: #c44953;
    margin-bottom: 14px;
}

.about-signature .sig-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #ddd;
    letter-spacing: 1px;
}

.about-signature .sig-title {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 13px;
    color: #c44953;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 4px;
}

@media (max-width: 991px) {
    .about-text-wrap {
        padding-left: 0;
        padding-top: 20px;
    }
    .about-text-wrap h2 {
        font-size: 30px;
    }
}

/* Courses section */
.about-courses {
    background: #0c0c0c;
}

.about-courses h6 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #c44953;
    margin-bottom: 12px;
}

.about-courses h1 {
    font-size: 42px;
    font-weight: 700;
    color: #ddd;
}

.course-card {
    background: #191919;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 36px 30px;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
    height: 100%;
}

.course-card:hover {
    border-color: rgba(196, 73, 83, 0.4);
    transform: translateY(-4px);
}

.course-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(196, 73, 83, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: background 0.3s;
}

.course-card:hover .course-icon-wrap {
    background: rgba(196, 73, 83, 0.2);
}

.course-icon-wrap i {
    font-size: 26px;
    color: #c44953;
}

.course-card h5 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #ddd;
    margin-bottom: 10px;
}

.course-card p {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #777;
    margin: 0;
}

/* CTA section */
.about-cta {
    padding: 100px 0;
    background: #0c0c0c;
}

.about-cta h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ddd;
    margin-bottom: 20px;
}

.about-cta p {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #999;
    max-width: 600px;
    margin: 0 auto 36px;
}

@media (max-width: 768px) {
    .about-cta h2 {
        font-size: 28px;
    }
}
