/* Reset dasar */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0044cc, #ffdd00); /* Gradasi biru ke kuning */
    background-attachment: fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
    color: black;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: center;
    background: black;
    padding: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.navbar a {
    color: yellow;
    text-decoration: none;
    margin: 0 20px;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
}

.navbar a:hover {
    color: #0044cc;
    text-shadow: 0px 0px 5px yellow;
}

/* Container utama */
.container {
    width: 90%;
    max-width: 900px;
    margin: 30px auto;
}

/* Judul utama */
h2 {
    text-align: center;
    font-size: 32px;
    color: black;
    background: yellow;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    width: 80%;
    margin: 20px auto;
    font-weight: bold;
}

/* Job Card */
.job-card {
    border: 4px solid yellow;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    background: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease-in-out;
}

.job-card:hover {
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
    transform: scale(1.02);
}

/* Judul pekerjaan */
.job-title {
    color: #0044cc;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 5px;
}

/* Informasi perusahaan */
.company-name {
    font-size: 1.2em;
    color: black;
    font-weight: bold;
    background: yellow;
    padding: 5px 10px;
    border-radius: 10px;
    display: inline-block;
}

/* Detail pekerjaan */
.job-location, 
.job-position, 
.job-type, 
.job-salary, 
.job-description, 
.job-date {
    font-size: 1em;
    color: black;
    margin: 8px 0;
    font-weight: bold;
}

.job-description {
    font-size: 0.95em;
    color: #333;
}

/* Tombol Kontak */
.contact-button {
    display: inline-block;
    padding: 12px 20px;
    background-color: #ffdd00;
    color: black;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    margin-top: 15px;
    transition: 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(255, 255, 0, 0.5);
    border: 2px solid black;
}

.contact-button:hover {
    background-color: black;
    color: yellow;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.6);
}

/* Footer */
.footer {
    text-align: center;
    padding: 15px;
    background-color: black;
    color: white;
    margin-top: 30px;
    font-weight: bold;
}
