/* =====================================================
    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;
}

/* Sidebar Modern Styling */
.sidebar-widget {
    background: var(--bg-card, #ffffff);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.widget-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--primary-color, #1d4ed8);
}

.widget-header i {
    font-size: 1.2rem;
}

.widget-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
}

/* Links Modern */
.widget-links-modern {
    list-style: none;
    padding: 0;
}

.widget-links-modern li {
    margin-bottom: 12px;
}

.widget-links-modern a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 16px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-secondary, #64748b);
    transition: all 0.3s ease;
    background: #f8fafc;
}

.widget-links-modern a .icon-box {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.widget-links-modern a:hover,
.widget-links-modern a.active {
    background: var(--primary-color, #1d4ed8);
    color: #fff;
    transform: translateX(5px);
}

.widget-links-modern a:hover .icon-box,
.widget-links-modern a.active .icon-box {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Contact Card */
.contact-glass {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    border-left: 4px solid #1d4ed8;
}

.widget-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 20px;
}

.contact-item-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.contact-item-link:hover {
    border-color: #1d4ed8;
    box-shadow: 0 5px 15px rgba(29, 78, 216, 0.1);
}

.item-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.item-icon.mail {
    background: #fee2e2;
    color: #ef4444;
}

.item-icon.whatsapp {
    background: #dcfce7;
    color: #22c55e;
}

.item-label {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.item-value {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
}

.operational-hours {
    margin-top: 15px;
    font-size: 0.8rem;
    color: #94a3b8;
    text-align: center;
    padding-top: 15px;
    border-top: 1px dashed #e2e8f0;
}