/* --- STYLES PROKER PAGE --- */

/* Container Utama */
.proker-section {
    padding: 80px 20px; /* Padding kiri-kanan disesuaikan standar mobile */
    background-color: #f5f7fa; 
    font-family: 'Poppins', sans-serif;
    min-height: 100vh; /* Agar background mengisi layar penuh */
}

.proker-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
    padding: 0 10px;
}

.proker-header h1 {
    font-family: 'Merriweather', serif;
    font-size: 3rem;
    color: #1A1A2E;
    margin-bottom: 15px;
    line-height: 1.2;
}

.proker-header p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Grid System: 2 Kolom */
.proker-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Kolom di Laptop */
    gap: 40px; 
    max-width: 1200px; 
    margin: 0 auto;
}

/* Kartu Proker Besar */
.proker-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.proker-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #F85F14;
}

/* Gambar Proker */
.proker-thumb {
    width: 100%;
    height: 300px; /* Tinggi gambar default Laptop */
    object-fit: cover;
}

/* Konten Proker */
.proker-content {
    padding: 35px; /* Padding luas di Laptop */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Label Kategori */
.proker-tag {
    display: inline-block;
    background-color: #FFF0EB;
    color: #F85F14;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 20px;
}

.proker-content h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.8rem;
    color: #1A1A2E;
    margin-bottom: 15px;
    line-height: 1.3;
}

.proker-content p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 30px;
    flex-grow: 1; 
}

/* Footer Kartu */
.card-footer {
    border-top: 1px solid #eee;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Agar aman jika layar sangat sempit */
    gap: 10px;
}

.status {
    font-weight: 600;
    color: #27ae60;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 10px;
    height: 10px;
    background-color: #27ae60;
    border-radius: 50%;
    display: inline-block;
}

.social-actions {
    display: flex;
    gap: 10px;
}

.social-actions a {
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 1.2rem;
    text-decoration: none;
    transition: 0.3s;
}

.social-actions a:hover {
    background-color: #F85F14;
    color: white;
}

/* ========================================= */
/* --- RESPONSIVE MOBILE (FIX KETUTUP NAVBAR) --- */
/* ========================================= */
@media (max-width: 900px) {
    
    .proker-section {
        /* PERBAIKAN: Padding atas 100px agar Judul turun dibawah Navbar */
        padding: 100px 20px 60px 20px; 
    }

    .proker-header {
        margin-bottom: 40px;
    }

    .proker-header h1 {
        font-size: 2rem; 
        line-height: 1.2;
    }

    .proker-grid {
        grid-template-columns: 1fr; /* 1 Kolom */
        gap: 40px;
    }
    
    .proker-thumb {
        height: 220px; 
    }

    .proker-content {
        padding: 25px; 
    }

    .proker-content h3 {
        font-size: 1.5rem; 
    }

    .proker-card {
        max-width: 100%;
    }
}