/* --- style.css (CLEANED & FINAL) --- */

/* 1. Header Sticky Standard */
/* Memastikan header tetap menempel di atas saat discroll */
.app-header, #global-header-container {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    background-color: white; 
}

/* CATATAN: 
   Style untuk "Language Toggle" SUDAH DIHAPUS dari sini.
   Sekarang style tersebut ditangani langsung oleh components.js 
   agar warna kontrasnya terjamin dan tidak bentrok.
*/

/* 2. Footer Standard */
/* Pengaturan jarak dan warna dasar footer */
#global-footer-container {
    margin-top: 3rem;
    padding-top: 1.5rem;       
    padding-bottom: 1.5rem;
    border-top: 1px solid #e5e7eb;
    background-color: #f3f4f6;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

#global-footer-container a {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.2s;
}

#global-footer-container a:hover {
    color: #3498db;
}