/* ==================== FOUNDER PROFILE PAGE STYLES ==================== */

.founder-profile {
    min-height: 100vh;
    padding: 120px 0 60px;
    background: var(--black);
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 40px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.back-link:hover {
    color: var(--neon-green);
    transform: translateX(-5px);
}

/* Profile Header */
.profile-header {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: start;
}

.profile-image-container {
    position: sticky;
    top: 100px;
}

.profile-image {
    width: 300px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid var(--primary-green);
    box-shadow: 0 10px 40px rgba(0, 255, 65, 0.3);
    position: relative;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--medium-gray), var(--light-gray));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.placeholder-text {
    font-size: 6rem;
    font-weight: 700;
    color: var(--primary-green);
    font-family: 'IBM Plex Mono', monospace;
    opacity: 0.3;
}

.upload-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-gray);
    font-size: 0.9rem;
    text-align: center;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    border: 1px solid var(--primary-green);
}

/* Replace placeholder with actual photo by adding this style to a <style> tag or inline:
   #founder-photo { background-image: url('path/to/photo.jpg'); background-size: cover; background-position: center; }
   And hide the placeholder div
*/

.profile-info {
    padding-top: 20px;
}

.founder-name {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary-green);
    margin-bottom: 10px;
    font-weight: 700;
}

.founder-title {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--medium-gray);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-btn:hover {
    background: var(--primary-green);
    color: var(--black);
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

/* Profile Content */
.profile-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
}

.bio-section h2 {
    color: var(--primary-green);
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.bio-section h3 {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.bio-section p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.education-list {
    list-style: none;
    padding: 0;
}

.education-list li {
    background: var(--medium-gray);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--light-gray);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.education-list li:hover {
    border-color: var(--primary-green);
    transform: translateX(5px);
}

.education-list strong {
    color: var(--primary-green);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 5px;
}

.education-list span {
    color: var(--text-gray);
    display: block;
    font-size: 1rem;
    margin-top: 5px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.expertise-card {
    background: var(--medium-gray);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.expertise-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 5px 20px rgba(0, 255, 65, 0.2);
    transform: translateY(-5px);
}

.expertise-card h4 {
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.expertise-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.founder-quote {
    background: var(--medium-gray);
    border-left: 4px solid var(--primary-green);
    padding: 30px;
    margin: 40px 0;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--white);
    border-radius: 0 8px 8px 0;
}

.research-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.research-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-gray);
    font-size: 1.05rem;
}

.research-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-size: 1.2rem;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: var(--medium-gray);
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    border-color: var(--primary-green);
}

.sidebar-card h3 {
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.facts-list {
    list-style: none;
    padding: 0;
}

.facts-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--text-gray);
}

.facts-list li:last-child {
    border-bottom: none;
}

.facts-list strong {
    color: var(--primary-green);
}

.team-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--dark-gray);
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.team-link:hover {
    border-color: var(--primary-green);
    transform: translateX(5px);
}

.team-initial {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--black);
    font-family: 'IBM Plex Mono', monospace;
    flex-shrink: 0;
}

.team-link strong {
    color: var(--white);
    display: block;
    font-size: 1rem;
}

.team-link span {
    color: var(--text-gray);
    font-size: 0.9rem;
    display: block;
}

.cta-card {
    background: var(--light-gray);
    border-color: var(--primary-green);
}

.cta-card p {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.cta-card .btn {
    width: 100%;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 968px) {
    .profile-header {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .profile-image-container {
        position: relative;
        top: 0;
        margin: 0 auto;
    }

    .profile-content {
        grid-template-columns: 1fr;
    }

    .sidebar {
        order: 2;
    }

    .bio-section {
        order: 1;
    }
}

@media (max-width: 640px) {
    .profile-image {
        width: 250px;
        height: 250px;
    }

    .placeholder-text {
        font-size: 4rem;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .founder-name {
        font-size: 2rem;
    }

    .founder-title {
        font-size: 1.2rem;
    }
}

/* ==================== INDIVIDUAL FOUNDER PAGE PHOTOS ==================== */
/* These styles will be applied on individual founder pages */
