/*
 * FIEM CMS – Public Extra Styles
 * ─────────────────────────────────────────────────────────────────
 * This file adds styles for CMS-specific public UI elements that
 * are not present in the original HTML design files.
 * Your original CSS files (custom.css, style.css, etc.) take
 * priority — do NOT delete them.
 */

/* ── Job Listing Cards ─────────────────────────────────────── */
.job-listing-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 24px;
    transition: box-shadow .2s, transform .2s;
}
.job-listing-card:hover {
    box-shadow: 0 8px 24px rgba(200,16,46,.1);
    transform: translateY(-3px);
}
.badge-job-type {
    background: #fee2e2;
    color: #c8102e;
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}
.job-tag {
    background: #f3f4f6;
    color: #374151;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 12px;
}
.btn-apply {
    background: #e35e0c;
    color: #fff !important;
    border-radius: 8px;
    padding: 8px 22px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s;
}
.btn-apply:hover { background: #a50d26; }

/* ── Job Detail Card ───────────────────────────────────────── */
.job-detail-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 32px;
}
.apply-form-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 28px;
}

/* ── Contact Page ──────────────────────────────────────────── */
.contact-icon-box {
    width: 44px;
    height: 44px;
    background: #fee2e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c8102e;
    flex-shrink: 0;
    font-size: 16px;
}
.contact-form-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 36px;
}

/* ── Director Modal ────────────────────────────────────────── */
.director-modal .modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 20px 60px rgba(0,0,0,.2);
}

/* ── Admin Area Namespace ──────────────────────────────────── */
/* Admin styles are loaded separately via _AdminLayout.cshtml   */
