/* ===================================
   LEADERSHIP SECTION STYLES
   ===================================
   Leadership team cards with profile images
*/

.leadership {
    background: #0a0a0a;
}

.leader-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 cột */
    gap: 32px;
    max-width: 1500px;
    margin: 0 auto;
}

.leader-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #6b7280;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
    border-color: #ffd700;
}

.leader-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    margin-bottom: 15px;
    border: 3px solid #6b7280;
    transition: border-color 0.3s ease;
}

.leader-card:hover img {
    border-color: #ffd700;
}

.leader-card h3 {
    /* font-family: 'Orbitron', sans-serif; */
    color: #ffd700;
    font-size: 24px;
    margin-bottom: 10px;
}

.leader-card p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 16px;
}

@media (max-width: 1024px)
{
    .leader-grid {
        grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
    }
}

/* Mobile Leadership Styles */
@media (max-width: 768px) {
    .leader-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .leader-card {
        margin: 20px;
        padding: 20px;
    }
    
    .leader-card img {
        width: 120px;
        height: 120px;
    }
    
    .leader-card h3 {
        font-size: 20px;
    }
    
    .leader-card p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .leader-card {
        padding: 15px;
    }
    
    .leader-card img {
        width: 100px;
        height: 100px;
    }
    
    .leader-card h3 {
        font-size: 18px;
    }
    
    .leader-card p {
        font-size: 12px;
    }
} 