/* Committee Page Styles */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content .lead {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
}

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

/* Committee Member Cards */
.committee-card {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.committee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.committee-card .card-body {
    text-align: center;
    padding: 2rem 1.5rem;
}

/* Committee Member Avatar */
.member-avatar {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.member-avatar.small {
    font-size: 3rem;
}

/* Member Information */
.member-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-role {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.member-institution {
    font-size: 0.9rem;
    color: #495057;
    margin-bottom: 1rem;
}

.member-bio {
    font-size: 0.875rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Member Contact */
.member-contact {
    font-size: 0.875rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.member-contact:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Committee Categories */
.committee-category {
    margin-bottom: 3rem;
}

.category-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content .lead {
        font-size: 1.1rem;
    }
    
    .committee-card .card-body {
        padding: 1.5rem 1rem;
    }
    
    .member-avatar {
        font-size: 3rem;
    }
    
    .member-avatar.small {
        font-size: 2.5rem;
    }
    
    .member-name {
        font-size: 1.1rem;
    }
}

/* Grid Layout */
.committee-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .committee-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (min-width: 992px) {
    .committee-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

/* Card Enhancements */
.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

/* Background Light Section */
.bg-light {
    background-color: #f8f9fa !important;
}

/* Text Colors */
.text-primary {
    color: var(--primary-color) !important;
}

.text-muted {
    color: #6c757d !important;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header .lead {
    color: #6c757d;
    font-size: 1.1rem;
}

/* Member Specializations */
.member-specializations {
    margin-top: 1rem;
}

.specialization-tag {
    display: inline-block;
    background-color: rgba(var(--primary-color-rgb), 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin: 0.25rem;
    font-weight: 500;
}

/* Contact Information */
.contact-info {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
} 