/* MAGANG.CSS 
    Khusus untuk halaman Magang Mandiri
*/

/* 1. Typography Overrides */
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif !important;
}

/* Memastikan heading tetap terlihat solid namun mengikuti font baru */
h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 700;
}

/* 2. Hero Adjustments */
/* Kita reuse background image yang sama, tapi kita bisa atur posisi jika perlu */
#heroBgMagang {
    background-image: url('../img/hero-bg.jpg'); /* Pastikan path gambar benar */
    background-size: cover;
    background-position: center;
    position: absolute;
    width: 100%;
    height: 120%;
    top: 0;
    z-index: 0;
}

/* 3. Iframe Wrapper & Responsiveness */
.sheet-wrapper {
    position: relative;
    width: 100%;
    height: 85vh; /* Menggunakan Viewport Height agar tabel maksimal */
    min-height: 500px;
    background-color: #fff;
    overflow: hidden;
}

.sheet-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* 4. Utility Components */
.divider {
    width: 80px;
    height: 4px;
    border-radius: 2px;
    opacity: 0.8;
}

/* Responsive adjustment untuk mobile */
@media (max-width: 768px) {
    .sheet-wrapper {
        height: 70vh; /* Sedikit lebih pendek di HP agar header/footer terlihat */
    }
    
    .display-3 {
        font-size: 2.5rem; /* Ukuran font judul hero disesuaikan */
    }
}