/* assets/css/founder.css */

/* --- General Founder Page Structure --- */
.founder-page-content {
    padding-top: 100px; /* Space for fixed header */
}

/* --- Founder Hero / Introduction --- */
.founder-hero {
    padding: 60px 0;
    text-align: center;
    background-color: var(--color-light-background);
}

.founder-profile-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 6px solid var(--color-primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.founder-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    color: var(--color-primary-dark);
}

.founder-hero .title {
    font-size: 1.2rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

/* --- Two-Column Layout for Bio/Stats --- */
.founder-intro-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 30px 0;
    text-align: left;
}

.founder-stats h3 {
    margin-top: 0;
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-light-gray);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.stat-item {
    padding: 10px 0;
    border-bottom: 1px dashed var(--color-border);
}

.stat-item i {
    color: var(--color-secondary);
    margin-right: 10px;
}

/* --- Experience Timeline (Academic/Professional) --- */
.experience-section {
    background-color: var(--color-light-background);
}

.timeline-exp {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-exp::after {
    content: '';
    position: absolute;
    width: 4px;
    background: var(--color-primary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

/* Reuse and adapt timeline classes from about.html or use simplified version: */
.exp-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.exp-item.left {
    left: 0;
}

.exp-item.right {
    left: 50%;
}

.exp-item::after {
    content: '\f0b1'; /* Icon for briefcase/graduation cap */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    width: 30px;
    height: 30px;
    right: -15px;
    top: 20px;
    background-color: var(--color-white);
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    z-index: 1;
    text-align: center;
    line-height: 25px;
}

.exp-item.right::after {
    left: -15px;
}

.exp-content {
    padding: 20px;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* --- Skills / Expertise Section --- */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding-top: 30px;
}

.skill-item {
    text-align: center;
    padding: 20px;
    border: 1px solid var(--color-light-gray);
    border-radius: 8px;
    transition: background-color 0.3s;
}

.skill-item:hover {
    background-color: var(--color-hover);
}

.skill-item h4 {
    color: var(--color-secondary);
    margin-top: 10px;
}

/* --- Responsive Adjustments --- */
@media screen and (max-width: 800px) {
    .founder-intro-grid {
        grid-template-columns: 1fr;
    }
    .timeline-exp::after {
        left: 31px;
    }
    .exp-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    .exp-item.left, .exp-item.right {
        left: 0;
    }
    .exp-item.left::after, .exp-item.right::after {
        left: 15px;
    }
    .exp-content {
        /* Arrows removed for simplicity on mobile, focused on content */
    }
}