/* =====================================================
    HUMAS - Modern Styles
    Extends style.css and profil-modern.css
   ===================================================== */

/* ===== Hero Color Variants ===== */
.hero-humas--kerjasama {
    --hero-profil-a: rgba(16, 185, 129, 0.92);
    --hero-profil-b: rgba(59, 130, 246, 0.88);
}

.hero-humas--prakerin {
    --hero-profil-a: rgba(245, 158, 11, 0.92);
    --hero-profil-b: rgba(16, 185, 129, 0.88);
}

.hero-humas--kunjungan {
    --hero-profil-a: rgba(59, 130, 246, 0.92);
    --hero-profil-b: rgba(236, 72, 153, 0.88);
}

.hero-humas--bkk {
    --hero-profil-a: rgba(139, 92, 246, 0.92);
    --hero-profil-b: rgba(245, 158, 11, 0.88);
}

.hero-humas--alumni {
    --hero-profil-a: rgba(6, 182, 212, 0.92);
    --hero-profil-b: rgba(59, 130, 246, 0.88);
}

/* Light mode overrides */
[data-theme="light"] .hero-humas--kerjasama {
    --hero-profil-a: rgba(5, 150, 105, 0.95);
    --hero-profil-b: rgba(37, 99, 235, 0.92);
}

/* ===== Partner Grid (Kerjasama) ===== */
.partner-section {
    margin-bottom: 3rem;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.partner-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partner-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.partner-name {
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    z-index: 2;
}

/* Decoratiive icon behind text */
.partner-card::before {
    content: '\f1ad';
    /* building icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    font-size: 5rem;
    color: var(--text-primary);
    opacity: 0.03;
    transform: rotate(-15deg);
    z-index: 1;
}

/* ===== Internship Steps (Prakerin) ===== */
.prakerin-steps {
    position: relative;
    margin: 2rem 0;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateX(10px);
    border-color: var(--warning-500);
}

.step-number {
    background: linear-gradient(135deg, var(--warning-500), var(--orange-600));
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.step-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

/* ===== Job Vacancy (BKK) ===== */
.vacancy-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.vacancy-card:hover {
    border-color: var(--accent-500);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
}

.vacancy-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.vacancy-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.vacancy-company {
    color: var(--accent-400);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vacancy-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.vacancy-tag {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ===== Alumni Grid ===== */
.alumni-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.alumni-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.alumni-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.alumni-cover {
    height: 100px;
    background: linear-gradient(135deg, var(--hero-profil-a), var(--hero-profil-b));
}

.alumni-avatar {
    width: 100px;
    height: 100px;
    margin: -50px auto 1rem;
    border-radius: 50%;
    border: 4px solid var(--bg-card);
    background: var(--bg-primary);
    overflow: hidden;
}

.alumni-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alumni-name {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.alumni-job {
    color: var(--accent-400);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.alumni-story {
    padding: 0 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
}