:root {
    --header-gradient: linear-gradient(to right, #d4b45c, #a45a1abe, #5a2a00);
    --bg-gradient: linear-gradient(to bottom, #f2d6a0, #d4aa6a, #b07c3a);
    --card-bg: linear-gradient(145deg, #f3e0c3, #d4b07a);
    --text-dark: #1a0b05;
    --saffron: #d97706;
    --gold: #b8860b;
}

/* Section */
.bio-section {
    background: var(--bg-gradient);
}

/* Image */
.bio-image-box {
    background: #fff;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.bio-image-box img {
    width: 100%;
    height: auto;
    display: block;
}

/* Title */
.bio-title {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
}

.bio-title .arrow {
    display: inline-block;
    width: 60px;
    height: 3px;
    background: var(--saffron);
    margin-left: 10px;
    vertical-align: middle;
}

/* Text */
.bio-section p {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
}

/* Bottom text */
.bio-bottom-text {
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .bio-title {
        font-size: 20px;
    }

    .bio-section p {
        font-size: 15px;
    }
}
