/* =========================================
   Global Utility
   ========================================= */
.text-yellow {
    color: #EAB308;
    /* Warna kuning emas utama */
}

/* =========================================
   Vision & Mission Section
   ========================================= */
.vision-mission-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.vm-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Mengubah ke layout menyamping pada layar laptop/tablet */
@media (min-width: 768px) {
    .vm-row {
        flex-direction: row;
        align-items: flex-start;
        gap: 5rem;
    }
}

.vm-title {
    flex: 0 0 150px;
    font-size: 1.25rem;
    color: #333333;
}

.vm-text {
    flex: 1;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-medium, #444);
    font-weight: 500;
}

body.dark-mode .vision-mission-section,
body.dark-mode .team-section {
    background-color: var(--bg-white);
}

body.dark-mode .vm-title {
    color: var(--text-dark);
}

/* =========================================
   Meet The Team Section
   ========================================= */
.team-section {
    padding: 5rem 0 8rem 0;
    background-color: #ffffff;
    /* Sesuai referensi gambar putih bersih */
}

.team-layout {
    display: flex;
    flex-direction: column-reverse;
    /* Pada HP, Judul tampil di atas kartu */
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .team-layout {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* Style untuk kontainer kartu */
.team-cards {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    flex: 1;
}

/* Style kotak/card kuning anggota tim */
.team-card {
    background-color: var(--primary-light, #FDF1C4);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 320px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Style gambar avatar */
.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: contain;
    padding: 5px;
}

/* Warna background avatar (Sesuai referensi ilustrasi) */
.bg-pink {
    background-color: #FFB1CE;
}

.bg-blue {
    background-color: #A2D5F2;
}

/* Teks nama dan jabatan */
.team-info h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.05rem;
    color: #222222;
    font-weight: 800;
}

.team-info p {
    margin: 0;
    font-size: 0.85rem;
    color: #666666;
    font-weight: 500;
}

/* Tipografi Judul Kanan */
.team-text {
    flex: 0 0 350px;
    text-align: center;
}

@media (min-width: 992px) {
    .team-text {
        text-align: left;
        /* Teks rata kiri di layar besar */
    }
}

.team-text h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #4B4B4B;
    /* Warna abu-abu gelap kehitaman */
    font-weight: 800;
    margin: 0;
}