/* Webinar Speakers Page Styles */
.webinar-speakers-container {
    min-height: 100vh;
    background: #f8f9fa;
}

/* Breadcrumb */
.breadcrumb-section {
    background: white;
    padding: 15px 0;
    margin-top: 70px;
    border-bottom: 1px solid #e1e5e9;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    margin: 0;
}

.breadcrumb-item {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item:hover {
    color: #667eea;
}

.breadcrumb-item.active {
    color: #2c3e50;
    font-weight: 600;
}

.breadcrumb-item:not(:last-child)::after {
    content: '>';
    margin-left: 8px;
    color: #6c757d;
    font-size: 0.8rem;
}

/* Header Section */
.speakers-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.speakers-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.speakers-header .container {
    position: relative;
    z-index: 2;
}

.speakers-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.speakers-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.speakers-description {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Speakers Grid Section */
.speakers-grid-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.speakers-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px;
}

.speaker-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #e1e5e9;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    text-align: left;
    min-height: 200px;
}

.speaker-image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    overflow: hidden;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speaker-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #94a3b8;
    font-size: 3rem;
}

.speaker-content {
    flex: 1;
    text-align: left;
}

.speaker-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    line-height: 1.3;
}

.speaker-specialization {
    font-size: 1rem;
    color: #667eea;
    margin-bottom: 15px;
    font-weight: 500;
    max-width: 300px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.4;
    text-align: center;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.speaker-bio {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
}

.speaker-bio p {
    margin: 0;
}

.speaker-social {
    margin-top: 15px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    white-space: nowrap;
    min-width: fit-content;
}

.social-link.linkedin {
    background: #0077b5;
    color: white;
}

.social-link.linkedin:hover {
    background: #005885;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

.social-link.website {
    background: #667eea;
    color: white;
}

.social-link.website:hover {
    background: #5a6fd8;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.social-link i {
    font-size: 0.9rem;
}



.btn-outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}



.btn i {
    font-size: 1rem;
}

/* No Speakers */
.no-speakers {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.no-speakers-icon {
    font-size: 4rem;
    color: #6c757d;
    margin-bottom: 20px;
}

.no-speakers h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.no-speakers p {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Back to Webinar */
.back-to-webinar {
    padding: 50px 0;
    background: #f8f9fa;
    text-align: center;
    border-top: 1px solid #e1e5e9;
}

.back-to-webinar .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    text-align: center;
    justify-content: center;
    min-width: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.back-to-webinar .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    color: white;
}

.back-to-webinar .btn i {
    font-size: 1.1rem;
}

/* Bio Modal */
.bio-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.bio-modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bio-modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid #e1e5e9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px 15px 0 0;
}

.bio-modal-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.bio-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.bio-modal-close:hover {
    background-color: rgba(255,255,255,0.2);
}

.bio-modal-body {
    padding: 30px;
}

.bio-modal-image {
    text-align: center;
    margin-bottom: 25px;
}

.bio-modal-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e1e5e9;
}

.bio-modal-text {
    color: #6c757d;
    line-height: 1.7;
    font-size: 1rem;
}

.bio-modal-text p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .speakers-title {
        font-size: 2rem;
    }
    
    .speakers-subtitle {
        font-size: 1.3rem;
    }
    
    .speakers-description {
        font-size: 1rem;
    }
    
    .speakers-grid {
        gap: 30px;
    }
    
    .speaker-card {
        padding: 25px;
        gap: 25px;
    }
    
    .speaker-image {
        width: 100px;
        height: 100px;
    }
    
    .speaker-name {
        font-size: 1.2rem;
    }
    
    .speaker-specialization {
        font-size: 0.95rem;
        max-width: 280px;
        min-height: 45px;
    }
    
    .speaker-bio {
        font-size: 0.9rem;
    }
    
    .social-link {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
        min-width: 140px;
    }
    
    .back-to-webinar .btn {
        padding: 14px 28px;
        font-size: 1rem;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .speakers-header {
        padding: 40px 0 30px;
    }
    
    .speakers-title {
        font-size: 1.8rem;
    }
    
    .speakers-subtitle {
        font-size: 1.2rem;
    }
    
    .speakers-grid {
        gap: 25px;
    }
    
    .speaker-card {
        padding: 20px;
        gap: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .speaker-image {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }
    
    .speaker-content {
        text-align: center;
    }
    
    .speaker-name {
        font-size: 1.1rem;
    }
    
    .speaker-specialization {
        font-size: 0.9rem;
        max-width: 250px;
        min-height: 40px;
    }
    
    .speaker-bio {
        font-size: 0.85rem;
        text-align: left;
    }
    
    .social-link {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-width: 120px;
    }
    
    .back-to-webinar .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
        min-width: 160px;
    }
}
