@font-face {
    font-family: 'arkipelagoregular';
    src: url('../fonts/arkipelago_1.003-webfont.woff2') format('woff2'),
    url('../fonts/arkipelago_1.003-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #faf9f7;
}

/* Hero section */
.hero {
    position: relative;
    height: calc(100vh - 10px);
    background: url('../images/about/hero-background.jpg?v=2') center/cover no-repeat;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: -90px; /* trừ chiều cao header 1 hàng — header trong suốt đè lên hình hero (transparent header) */
}

.hero .display-wrapper {
    z-index: 12;
}

.hero .display-wrapper .display-3 {
    border: none;
}

.hero .display-wrapper .lead {
    color: var(--text-dark);
    font-size: 14px;
}

/* Careers content */
.careers-section {
    background-color: #fdf9f3;
}

.careers-section .section-heading {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.careers-section .lead-intro {
    max-width: 720px;
    margin: 0 auto;
    color: #555;
}

.job-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.job-card h5 {
    font-weight: 700;
}

.job-card .job-type {
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.careers-cta {
    background: var(--bg-soft-gradient);
    color: #fff;
}

.careers-cta a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
}

@media (max-width: 992px) {
    .careers-section .section-heading {
        font-size: 2rem;
    }
}
