/* Import Font dari Google Fonts (Menyesuaikan dengan font web utama Anda) */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

:root {
    --primary-color: #ff9e1b;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --text-color: #333333;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    background-color: #ffffff;
    line-height: 1.6;
}

/* Header & Navigasi */
.site-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.header-logo img {
    max-height: 50px;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-navigation ul li {
    margin-left: 20px;
}

.main-navigation ul li a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.main-navigation ul li a:hover,
.main-navigation ul li a.active {
    color: var(--primary-color);
}

/* Tombol Global */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: #e68a00;
    border-color: #e68a00;
}

.btn-dark {
    background-color: var(--dark-color);
    border-color: var(--dark-color);
}

/* Job Cards Hover Effect */
.job-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

/* Footer */
.site-footer {
    background-color: var(--dark-color);
    color: #ffffff;
    padding: 50px 0 20px;
}

.footer-widgets {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-widgets .widget {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-widgets h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-widgets ul {
    list-style: none;
    padding: 0;
}

.footer-widgets ul li {
    margin-bottom: 10px;
}

.footer-widgets ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-widgets ul li a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
}

.social-icons li {
    margin-right: 15px;
}

.social-icons li a {
    font-size: 20px;
    background-color: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #999999;
}