/* About page specific styles */

.hidden-founder {
    opacity: 0.8;
    border: 1px dashed rgba(205, 133, 63, 0.3);
    position: relative;
}

.hidden-founder::before {
    content: "👁️";
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 0.8em;
    opacity: 0.3;
}

.hidden-founder:hover {
    opacity: 1;
    border-color: rgba(205, 133, 63, 0.6);
}

.hidden-founder .member-photo {
    animation: subtle-pulse 3s ease-in-out infinite;
}

@keyframes subtle-pulse {
    0%, 100% { 
        transform: scale(1); 
    }
    50% { 
        transform: scale(1.02); 
    }
}

/* Additional about page styling */
.date-anomaly {
    background: linear-gradient(90deg, #ff0000, #ffff00, #ff0000);
    background-size: 200% 100%;
    animation: anomaly-glitch 2s infinite;
    padding: 2px 4px;
    border-radius: 3px;
}

@keyframes anomaly-glitch {
    0%, 100% { 
        background-position: 0% 50%; 
        filter: brightness(1);
    }
    50% { 
        background-position: 100% 50%;
        filter: brightness(1.2);
    }
}

.researcher-note {
    background: rgba(205, 133, 63, 0.1);
    border-left: 3px solid #cd853f;
    padding: 10px 15px;
    margin: 15px 0;
    font-style: italic;
}

.philosophy-quote {
    background: rgba(139, 69, 19, 0.1);
    border-left: 4px solid #8b4513;
    padding: 20px;
    margin: 20px 0;
    font-style: italic;
    position: relative;
}

.philosophy-quote::before {
    content: '"';
    font-size: 4em;
    color: rgba(139, 69, 19, 0.3);
    position: absolute;
    top: -10px;
    left: 10px;
}

.technical-jargon {
    background: linear-gradient(45deg, #cd853f, #daa520, #cd853f);
    background-size: 200% 100%;
    animation: jargon-flow 3s ease-in-out infinite;
    padding: 2px 4px;
    border-radius: 3px;
    color: #000;
}

@keyframes jargon-flow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(205, 133, 63, 0.2);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.team-member:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(205, 133, 63, 0.4);
    transform: translateY(-2px);
}

.member-photo {
    font-size: 3em;
    text-align: center;
    margin-bottom: 15px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.member-photo:hover {
    transform: scale(1.1);
}

.role {
    color: #cd853f;
    font-weight: bold;
    margin: 5px 0;
}

.bio {
    margin: 10px 0;
    line-height: 1.5;
}

.member-achievements {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(205, 133, 63, 0.3);
}

.member-achievements small {
    display: block;
    margin: 3px 0;
    color: #888;
}

.certifications ul {
    list-style: none;
    padding: 0;
}

.certifications li {
    margin: 8px 0;
    padding: 5px 0;
    border-bottom: 1px solid rgba(205, 133, 63, 0.1);
}

.partnership-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.partnership-category {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 5px;
    border: 1px solid rgba(205, 133, 63, 0.2);
}

.partnership-category h5 {
    color: #cd853f;
    margin-bottom: 10px;
}

.partnership-category ul {
    list-style: none;
    padding: 0;
}

.partnership-category li {
    margin: 5px 0;
    padding: 3px 0;
    font-size: 0.9em;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.award-item {
    background: rgba(205, 133, 63, 0.1);
    padding: 15px;
    border-radius: 5px;
    border-left: 3px solid #cd853f;
}

.award-item strong {
    color: #cd853f;
}

.award-item em {
    font-size: 0.85em;
    color: #888;
}

.sidebar .info-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(205, 133, 63, 0.3);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.sidebar .info-box h3 {
    color: #cd853f;
    margin-bottom: 15px;
}

.fact-item {
    display: flex;
    justify-content: space-between;
    margin: 8px 0;
    padding: 5px 0;
    border-bottom: 1px solid rgba(205, 133, 63, 0.1);
}

.fact-label {
    font-weight: bold;
}

.fact-value {
    color: #cd853f;
}

.warning-box {
    border-color: #ff6b6b !important;
    background: rgba(255, 107, 107, 0.1) !important;
}

.warning-box h3 {
    color: #ff6b6b !important;
}

.glitch-date {
    animation: date-flicker 2s infinite;
}

@keyframes date-flicker {
    0%, 90%, 100% { opacity: 1; }
    5%, 85% { opacity: 0.3; }
}
