/* 
    Bio Section Styles
    Max Width: 1400px (Uses .bsb-container)
*/
.bsb-bio-section {
    position: relative;
    padding: 10rem 0;
    padding-bottom: 0;
    /* Soft off-white to contrast the main white hero/about */
    background-color: #f7f7f7;
    overflow: hidden;
    z-index: 5;
}

.bio-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 4rem;
}

.bsb-bio-content {
    flex: 1;
    max-width: 600px;
    padding-bottom: 10rem;
}

.bsb-bio-heading {
    font-family: var(--bsb-font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--bsb-color-text);
    margin-bottom: 2.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.bsb-bio-text {
    font-family: var(--bsb-font-primary);
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    line-height: 1.8;
    color: #333;
    /* Slightly softer than pure black */
    margin-bottom: 2rem;
    font-weight: 400;
}

.bsb-bio-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border: 1px solid var(--bsb-color-text);
    border-radius: 50px;
    font-family: var(--bsb-font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--bsb-color-text);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    background: transparent;
    margin-top: 1rem;
    overflow: hidden;
    position: relative;
}

.bsb-bio-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.bsb-bio-btn:hover {
    background: var(--bsb-color-text);
    color: var(--bsb-color-bg);
}

.bsb-bio-btn:hover svg {
    transform: translateX(4px);
}

.bsb-bio-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.bsb-bio-image-inner {
    width: 100%;
    max-width: 600px;
    /* Constrain image to align nicely with text */
    /* Optional slight border radius if it looks too sharp */
    /* border-radius: 8px; */
}

.bsb-bio-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    /* Move off-screen or scale for intro animation via JS */
    transform-origin: center right;
}

/* Animations State */
.bsb-bio-heading,
.bsb-bio-text,
.bsb-bio-btn {
    /* Set up for split text or stagger reveal */
    opacity: 0;
    transform: translateY(20px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .bio-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .bsb-bio-content {
        max-width: 800px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .bsb-bio-heading {
        margin-bottom: 2rem;
    }

    .bsb-bio-image-wrapper {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .bsb-bio-section {
        padding: 5rem 0;
        padding-bottom: 0;
    }

    .bsb-bio-heading {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }
}