﻿/* Biography Styles */

/* Hero Section */
.bio-hero-section {
    background: linear-gradient(135deg, #E25822, #3A0CA3);
    min-height: 250px;
    color: #FFD700;    
}

.bio-hero-img {
    max-height: 200px;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.bio-hero-title {
    font-size: 2.8rem;
    font-weight: bold;
}

.bio-hero-subtitle {
    font-size: 1.3rem;
}

.bio-breadcrumb .bio-breadcrumb-link {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}

/* Main Content */
.bio-main-content {
    background: #1B1B2F;
    color: #EAEAEA;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 2rem;
}

/* Sections */
.bio-section-title {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.bio-info-list, .bio-list {
    list-style: none;
    padding-left: 0;
    line-height: 1.8;
    font-size: 1.05rem;
}

.bio-text {
    background: #2B2B3F;
    border-radius: 10px;
    padding: 1.5rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.bio-divider {
    border-top: 2px solid #FFD700;
    margin: 2rem 0;
}

/* Timeline */
.bio-timeline {
    list-style: none;
    padding-left: 20px;
    position: relative;
}

    .bio-timeline li {
        position: relative;
        margin-bottom: 15px;
        padding-left: 20px;
    }

        .bio-timeline li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 5px;
            width: 10px;
            height: 10px;
            background: #FFD700;
            border-radius: 50%;
        }

/* Quotes */
.bio-quote {
    font-style: italic;
    border-left: 4px solid #FFD700;
    padding-left: 1rem;
    color: #FFD700;
    margin-bottom: 2rem;
}

/* Tags */
.bio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.bio-tag {
    background: #3A0CA3;
    padding: 5px 10px;
    border-radius: 5px;
    color: #FFD700;
    font-size: 0.9rem;
}

/* Author Info */
.bio-author-section {
    background: #2B2B3F;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bio-author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #FFD700;
}

.bio-author-details p {
    margin: 0;
}

    .bio-author-details p.text-muted {
        color: #C0C0C0;
        font-size: 0.85rem;
    }

/* Sidebar */
.bio-sidebar {
    background: #2B2B3F;
    border-radius: 10px;
    padding: 1.5rem;
}

.bio-sidebar-title, .bio-sidebar-group {
    color: #FFD700;
}

.bio-sidebar-list {
    list-style: none;
    padding-left: 0;
}

    .bio-sidebar-list li a {
        color: #EAEAEA;
        text-decoration: none;
        display: block;
        padding: 3px 0;
    }

        .bio-sidebar-list li a:hover {
            color: #FFD700;
        }

/* Responsive */
@media(max-width: 991px) {
    .bio-hero-section {
        flex-direction: column;
    }

    .bio-hero-img {
        max-height: 250px;
        margin-bottom: 1rem;
    }
}

@media(max-width: 767px) {
    .bio-main-content .row {
        flex-direction: column;
    }

    .bio-sidebar {
        width: 100%;
        margin-top: 2rem;
    }

    .bio-author-section {
        width: 100%;
        margin-top: 2rem;
        padding: 1rem;
        flex-direction: row;
    }
}

@media(max-width: 575px) {
    .bio-author-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .bio-author-img {
        width: 50px;
        height: 50px;
    }
}
