/* Leadership Section Styles */
.leadership-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.leader-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.leader-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.leader-card:hover::before {
    opacity: 1;
}

.leader-card.president {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--text-white);
}

.leader-card.president::before {
    background: var(--text-white);
}

.leader-card.president .leader-name,
.leader-card.president .leader-position,
.leader-card.president .leader-location {
    color: var(--text-white);
}

.leader-photo {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bg-light);
    position: relative;
}

.leader-card.president .leader-photo {
    width: 100px;
    height: 100px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.leader-card:hover .leader-photo img {
    transform: scale(1.05);
}

.leader-info {
    flex: 1;
    min-width: 0;
}

.leader-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.leader-card.president .leader-name {
    font-size: 1.5rem;
}

.leader-position {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.leader-card.president .leader-position {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.leader-location {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.leader-location::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"/><circle cx="12" cy="10" r="3"/></svg>') no-repeat center;
    background-size: contain;
    margin-right: 4px;
}

.leader-card.president .leader-location {
    color: rgba(255, 255, 255, 0.8);
}

.leader-card.president .leader-location::before {
    content: '';
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M3 21h18M5 21V7l8-4v18M19 21V8l-8-4M9 9v.01M9 12v.01M9 15v.01M9 18v.01"/></svg>') no-repeat center;
}

/* Responsive */
@media (max-width: 768px) {
    .leadership-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .leader-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .leader-card.president {
        grid-column: auto;
        margin-bottom: 1rem;
    }
    
    .leader-photo {
        width: 100px;
        height: 100px;
    }
    
    .leader-card.president .leader-photo {
        width: 120px;
        height: 120px;
    }
    
    .leader-name {
        font-size: 1.2rem;
    }
    
    .leader-card.president .leader-name {
        font-size: 1.4rem;
    }
    
    .leader-position {
        font-size: 0.95rem;
    }
    
    .leader-location {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .leadership-section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .leader-card {
        padding: 1.25rem;
    }
    
    .leader-photo {
        width: 80px;
        height: 80px;
    }
    
    .leader-card.president .leader-photo {
        width: 100px;
        height: 100px;
    }
    
    .leader-name {
        font-size: 1.1rem;
    }
    
    .leader-card.president .leader-name {
        font-size: 1.3rem;
    }
    
    .leader-position {
        font-size: 0.9rem;
    }
    
    .leader-location {
        font-size: 0.85rem;
    }
} 