/* =========================
 BIOGRAPHY BANNER
========================= */

.bio-banner {
    height: 300px;
    background: url('../img/banner.jpg') center center / cover no-repeat;
    position: relative;
}

.bio-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.bio-banner-overlay h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 8px;
}

.bio-banner-overlay p {
    font-size: 14px;
}

.bio-banner-overlay a {
    color: #fff;
    text-decoration: none;
}

.bio-banner-overlay a:hover {
    text-decoration: underline;
}

/* =========================
 BIOGRAPHY SECTION
========================= */

.biography-section {
    padding: 80px 0;
    background: #ffffff;
    font-family: "Segoe UI", system-ui, sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.biography-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: stretch;
}

.biography-content {
    height: 100%;
}

/* LEFT CONTENT */
.bio-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111;
}

.bio-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* BIO CARDS */
.bio-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.bio-card {
    padding: 25px;
    color: #fff;
    border-radius: 6px;
}

.bio-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.bio-card p {
    font-size: 14px;
    line-height: 1.6;
}

/* CARD COLORS */
.bio-card.purple { background: #9b6bdc; }
.bio-card.blue   { background: #5bb6d8; }
.bio-card.green  { background: #5fcf65; }
.bio-card.red    { background: #f1644b; }

/* RIGHT IMAGE */
.biography-image {
    height: 100%;
    overflow: hidden;
    border-radius: 6px;
}

.biography-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================
 RESPONSIVE
========================= */

@media (max-width: 992px) {
    .biography-grid {
        grid-template-columns: 1fr;
    }

    .biography-image {
        height: 350px;
        margin-top: 30px;
    }

    .bio-cards {
        grid-template-columns: 1fr;
    }

    .bio-title {
        font-size: 30px;
    }
}
