/* ===============================
   CAREER PAGE – JOB OPENINGS
================================ */
.title-bar {
    width: 10px;
    height: 35px;
    background-color: var(--accent-gold);
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
}
.career-section {
    background: #f8f9fb;
    padding: 60px 0;
}

/* Job Card */
.job-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform .25s ease, box-shadow .25s ease;
}

.job-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

/* Job Image */
.job-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

/* Job Title */
.job-title {
    font-size: 20px;
    font-weight: 700;
    color:var(--dark-navy);
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;

}

/* Job Meta */
.job-meta {
    font-size: 14px;
    color: black;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
}

/* Job Description */
.job-description {
    font-size: 15px;
    color: black;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Apply Button */
.apply-btn {
    background: #E0C58F;
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-navy);
    border: none;
    padding: 12px 16px;
    font-weight: 700;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    transition: background .2s ease;
}

.apply-btn:hover {
    background: #d4b476;
    color: #062c5a;
}

/* ===============================
   APPLICATION FORM
================================ */

.application-section {
    font-family: 'Montserrat', sans-serif;
    background: #ffffff;
    padding: 60px 0;
}

.application-form {
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

/* Form Labels */
.application-form label {
    font-weight: 600;
    font-size: 14px;
    color: #062c5a;
    margin-bottom: 5px;
}

/* Inputs */
.application-form .form-control,
.application-form .form-select {
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #d6d6d6;
    font-size: 14px;
}

.application-form .form-control:focus,
.application-form .form-select:focus {
    border-color: #062c5a;
    box-shadow: none;
}

/* File Upload */
.application-form input[type="file"] {
    padding: 10px;
}

/* Submit Button */
.submit-btn {
    background: #062c5a;
    color: #ffffff;
    padding: 14px;
    font-weight: 700;
    border-radius: 10px;
    border: none;
    transition: background .25s ease;
}

.submit-btn:hover {
    background: #041f40;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
    .job-card {
        padding: 20px;
    }

    .application-form {
        padding: 25px;
    }
}
/* ==============================
   CAREER DETAIL PAGE
============================== */

.job-detail-card {
    padding: 30px;
}

.job-detail-card .job-title {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color:var(--dark-navy);
}

.job-detail-card .job-meta {
    font-size: 15px;
    color: black;
    font-family: 'Montserrat', sans-serif;
}

.job-description-full {
    font-size: 16px;
    line-height: 1.7;
    color: black;
    font-family: 'Montserrat', sans-serif;
}

/* Bigger apply button */
.apply-btn.btn-lg {
    padding: 12px 30px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
}
