/* --- STYLE HALAMAN PROFILE --- */

/* Reset dasar */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #FAFAFA;
    color: #333;
    min-height: 100vh; /* Agar background mengisi layar penuh */
}

/* Container Utama */
.all-profiles {
    padding: 80px 20px; /* Padding Desktop disamakan dengan halaman lain */
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Header Section */
.page-header {
    margin-bottom: 60px;
    padding: 0 10px;
}

.page-header h1 {
    font-family: 'Merriweather', serif;
    font-size: 3rem;
    color: #1A1A2E;
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 1rem;
}

/* Grid System untuk Kartu */
.profile-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

/* --- STYLING KARTU PESERTA --- */
.profile-card {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px 20px;
    
    /* PERBAIKAN: Gunakan max-width agar fleksibel di HP */
    width: 100%;
    max-width: 280px; 
    
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

/* Efek Hover */
.profile-card:hover {
    border-color: #F85F14;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Foto Profil */
.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #FFF0EB;
}

/* Konten Teks */
.card-content {
    width: 100%; /* Memastikan konten mengisi lebar kartu */
}

.card-content h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    color: #1A1A2E;
    margin-bottom: 8px;
    min-height: 54px; /* Menjaga tinggi area judul agar kartu sejajar */
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
}

.card-content .major {
    color: #F85F14;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-content .origin {
    color: #888;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background-color: #f9f9f9;
    padding: 8px 15px;
    border-radius: 50px;
    width: fit-content;
    margin: 0 auto; /* Posisi tengah */
}

/* ========================================= */
/* --- RESPONSIVE MOBILE (FIX KETUTUP NAVBAR) --- */
/* ========================================= */
@media (max-width: 900px) { /* Samakan 900px agar konsisten */
    
    .all-profiles {
        /* PERBAIKAN: Padding atas 100px agar Judul turun dibawah Navbar */
        padding: 100px 20px 60px 20px; 
    }

    .page-header {
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .page-header h1 {
        font-size: 2rem; 
        line-height: 1.2;
    }

    .profile-grid {
        gap: 30px; 
    }

    .profile-card {
        width: 100%;
        max-width: 320px; 
        margin: 0 auto; /* Tengah */
    }
    
    .card-content h3 {
        font-size: 1.2rem; 
        min-height: auto; 
        margin-bottom: 10px;
    }
}