/* Staff Profile Specific Styles */

/* Breadcrumb */
.breadcrumb {
    background: #f8f9fa;
    padding: 1rem 0;
    margin-top: 80px;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #e74c3c;
}

.separator {
    margin: 0 0.5rem;
    color: #6c757d;
    font-size: 0.8rem;
}

.current {
    color: #2c3e50;
    font-weight: 500;
}

/* Staff Hero Section */
.staff-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
}

.staff-hero-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.staff-image-container {
    position: relative;
}

.staff-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.staff-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-status {
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.status-badge {
    background: #27ae60;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.status-badge.active i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.staff-info {
    text-align: left;
}

.staff-name {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.staff-role {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.staff-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.staff-contact-quick {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* Staff Details Section */
.staff-details {
    padding: 4rem 0;
    background: white;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.detail-section {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.section-header {
    margin-bottom: 1.5rem;
}

.detail-section .section-title {
    font-size: 1.5rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0;
}

.detail-section .section-title i {
    color: #e74c3c;
}

/* Biography Content */
.biography-content p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: #555;
}

.biography-content p:last-child {
    margin-bottom: 0;
}

/* Qualifications */
.qualification-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.qualification-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.qualification-icon i {
    color: white;
    font-size: 1.2rem;
}

.qualification-details h3 {
    color: #2c3e50;
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
}

.institution {
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.qualification-details .description {
    color: #666;
    line-height: 1.6;
}

/* Experience */
.experience-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.experience-timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.timeline-marker {
    width: 12px;
    height: 12px;
    background: #e74c3c;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #e74c3c;
}

.timeline-line {
    width: 2px;
    height: 100px;
    background: #e9ecef;
    margin-top: 0.5rem;
}

.experience-details h3 {
    color: #2c3e50;
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
}

.duration {
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.experience-details .description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.responsibilities li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #555;
}

.responsibilities li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

/* Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
    transition: transform 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-2px);
}

.expertise-item i {
    color: #e74c3c;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.expertise-item span {
    font-weight: 500;
    color: #2c3e50;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-details h4 {
    color: #2c3e50;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.contact-details a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-details p {
    color: #666;
    margin: 0;
}

.availability-info {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.availability-info h4 {
    color: #2c3e50;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.availability-info h4 i {
    color: #27ae60;
}

.availability-info p {
    color: #666;
    margin-bottom: 0.5rem;
}

.emergency-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
    font-size: 0.9rem;
}

.emergency-note a {
    color: #e74c3c;
    text-decoration: none;
}

.emergency-note a:hover {
    text-decoration: underline;
}

/* Call to Action Section */
.staff-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .staff-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .staff-image {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }
    
    .staff-name {
        font-size: 2.2rem;
    }
    
    .staff-contact-quick {
        justify-content: center;
    }
    
    .details-grid {
        gap: 2rem;
    }
    
    .detail-section {
        padding: 1.5rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 480px) {
    .staff-image {
        width: 120px;
        height: 120px;
    }
    
    .staff-name {
        font-size: 1.8rem;
    }
    
    .staff-role {
        font-size: 1.1rem;
    }
    
    .contact-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .detail-section .section-title {
        font-size: 1.3rem;
    }
    
    .qualification-item,
    .experience-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-line {
        display: none;
    }
}