/* File: style_background.css 
    Tujuan: Standarisasi warna background dan variasi teks agar senada di setiap halaman profil.
*/

:root {
    /* Variabel Warna Utama */
    --bg-body: #f8f9fa;            /* Abu-abu sangat muda (Light) */
    --bg-card: #ffffff;            /* Putih bersih untuk konten */
    --primary-accent: #ffc107;     /* Kuning khas SMANESTER */
    --primary-dark: #e0a800;       /* Kuning gelap untuk hover */
    
    /* Variabel Warna Teks */
    --text-main: #2d3436;          /* Hitam elegan untuk isi konten */
    --text-heading: #1a1a1a;       /* Hitam pekat untuk judul */
    --text-muted: #636e72;         /* Abu-abu untuk teks keterangan/breadcrumb */
    --text-on-accent: #000000;     /* Hitam untuk teks di atas warna kuning */
}

/* 1. Aturan Dasar Body */
body {
    background-color: var(--bg-body) !important;
    color: var(--text-main);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

/* 2. Variasi Latar Belakang */
.bg-main { background-color: var(--bg-body); }
.bg-card-custom { 
    background-color: var(--bg-card); 
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* 3. Variasi Warna Teks */
.text-heading { color: var(--text-heading) !important; font-weight: 800; }
.text-accent { color: var(--primary-dark) !important; } /* Kuning gelap agar terbaca di background putih */
.text-muted-custom { color: var(--text-muted) !important; }

/* 4. Variasi Judul & Garis Dekorasi */
.title-wrapper {
    text-align: center;
    margin-bottom: 3rem;
}

.title-divider {
    width: 80px;
    height: 4px;
    background-color: var(--primary-accent);
    margin: 15px auto;
    border-radius: 2px;
}

/* 5. Komponen Card Konten Utama */
.main-content-wrapper {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
}

/* 6. Breadcrumb Styling (Senada) */
.breadcrumb-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-item a:hover {
    color: var(--primary-dark);
}

/* 7. Styling Khusus Cetak (Printing) */
@media print {
    body {
        background-color: white !important;
        color: black !important;
    }
    .main-content-wrapper {
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
    }
    .text-accent {
        color: black !important;
        font-weight: bold;
    }
}