
body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden; 
}


.navbar-brand img {
    height: 30px; 
}
.navbar-nav .nav-link {
    font-weight: 500;
    color: #333;
}
.btn-login {
    border-radius: 50px; 
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.nav-icon {
    font-size: 1rem;
    color: #555;
    margin-right: 1rem;
}

/* --- Hero Section --- */
.hero-section {
    padding: 1rem 0;
    position: relative;
    background-color: #F3F3F5
}

.hero-text h1 {
    font-size: 1.8rem; /* Ukuran font besar */
    font-weight: 700;
    line-height: 1.2;
}
.hero-text h1.fw-normal {
    font-weight: 400; /* Baris kedua tidak bold */
}

.hero-image-wrapper {
    position: relative;
    text-align: center;
}

.hero-image-wrapper img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 991.98px) {
    /* Sembunyikan floating tags di mobile */
    .floating-tag {
        display: none;
    }

    /* Pusatkan teks hero di mobile */
    .hero-text {
        text-align: center;
        /* margin-bottom: 1rem; */
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }
}


/* --- Career Section --- */
.career-section {
    padding: 2rem 0;
    background-image: url('../img/bervin-pattern.jpg');
    background-size: cover;
    text-align: center;
}

.career-section p {
    font-size: 1.5rem;
    font-weight: 300;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.career-section strong {
    font-weight: 700;
    color: #000;
}

.btn-positions {
        border-radius: 50px; 
}

/* Tombol Merah Outline (dari kode Anda) */
.btn-outline-dark {
--bs-btn-color: #9d2235;
--bs-btn-border-color: #9d2235;
--bs-btn-hover-color: #fff;
--bs-btn-hover-bg: #9d2235;
--bs-btn-hover-border-color: #9d2235;
--bs-btn-focus-shadow-rgb: 33, 37, 41;
--bs-btn-active-color: #fff;
--bs-btn-active-bg: #9d2235;
--bs-btn-active-border-color: #9d2235;
--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
--bs-btn-disabled-color: #9d2235;
--bs-btn-disabled-bg: transparent;
--bs-btn-disabled-border-color: #9d2235;
--bs-gradient: none;
}

/* --- STYLE BARU --- */

/* Tombol Merah Solid (Untuk CTA Utama) */
.btn-primary-bervin {
    background-color: #9d2235;
    border-color: #9d2235;
    color: #fff;
    border-radius: 50px;
    font-weight: 500;
}
.btn-primary-bervin:hover {
    background-color: #831c2c;
    border-color: #831c2c;
    color: #fff;
}

.btn-home{
        border-radius: 50px;
}

/* --- Job List Section --- */
.job-list-section {
    padding: 4rem 0 6rem 0;
    background-color: #ffffff;
}

.job-list-section h2 {
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
    text-align: center;
}

.job-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Penting agar gambar tidak keluar dari radius */
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Style untuk gambar di card */
.job-card .card-img-top {
    height: 180px;
    object-fit: cover; /* Gambar akan di-crop, bukan penyet */
}

.job-card .card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.job-card .card-title {
    font-weight: 700;
    color: #9d2235;
}

.job-card .card-subtitle {
    font-weight: 500;
}

.job-card .card-text {
    font-size: 0.9rem;
    color: #555;
    flex-grow: 1;
}

.job-card .btn-detail {
    background-color: #9d2235;
    border-color: #9d2235;
    color: #fff;
    border-radius: 50px;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    margin-top: 1rem;
}

.job-card .btn-detail:hover {
    background-color: #831c2c;
    border-color: #831c2c;
}

/* --- Footer --- */

.footer-bottom {
    color: #000;
    padding: 1.5rem 0;
    margin-top: 3rem;
}
.list-styled {
    padding-left: 20px;
}
.list-styled li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Membuat form di kanan 'sticky' */
.form-wrapper-sticky {
    position: sticky;
    top: 20px; /* Jarak dari atas modal */
}

/* Style tombol utama (sesuaikan dengan warna brand Anda) */
.btn-primary-bervin {
    background-color: #9d2235;
    border-color: #9d2235;
    color: #fff;
    font-weight: 500;
}
.btn-primary-bervin:hover {
    background-color: #831c2c;
    border-color: #831c2c;
    color: #fff;
}


.section-title {
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
    margin-bottom: 1.25rem;
}

.job-description-content{
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 1rem;
}

/* --- Style Untuk Lightbox --- */

.lightbox-overlay {
    display: none; /* Sembunyi by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85); /* Latar belakang hitam transparan */
    z-index: 1099; /* HARUS lebih tinggi dari z-index modal (1050) */
    text-align: center;
    padding: 20px;
    cursor: pointer; /* Klik di mana saja untuk menutup */
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh; /* 90% dari tinggi layar */
    margin-top: 5vh; /* Sedikit jarak dari atas */
    border-radius: 5px;
    box-shadow: 0 0 25px rgba(0,0,0,0.5);
    /* Penting: Hapus cursor pointer agar tidak membingungkan */
    cursor: default; 
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    font-size: 40px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    z-index: 1100; /* Di atas gambar */
}