/* careers.css */

/* --- Reset & Global --- */
* { margin: 0; padding: 0; box-flex: border-box; }
body { background-color: #000; color: #fff; font-family: 'Inter', sans-serif; line-height: 1.6; }
.c-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* --- Navigation --- */
.c-nav { padding: 40px 0; }
.c-back-link { color: #555; text-decoration: none; font-size: 11px; letter-spacing: 2px; transition: 0.3s; }
.c-back-link:hover { color: #fff; }

/* --- Hero --- */
.c-hero { padding: 80px 0; text-align: center; }
.c-tagline { font-size: 10px; letter-spacing: 5px; color: #444; display: block; margin-bottom: 20px; }
.c-hero h1 { font-size: 60px; letter-spacing: 20px; font-weight: 200; margin-bottom: 20px; }
.c-hero p { font-family: 'Playfair Display', serif; color: #666; font-size: 18px; }

/* --- Job Table --- */
.job-list-wrapper { margin-top: 50px; border-top: 1px solid #1a1a1a; }
.job-row { 
    display: flex; 
    align-items: center; 
    padding: 35px 20px; 
    border-bottom: 1px solid #1a1a1a; 
    transition: 0.4s; 
    cursor: pointer; 
}
.job-row:hover { background: #080808; border-bottom-color: #333; }

.job-cell { font-size: 14px; letter-spacing: 1px; color: #888; }
.job-cell.title { color: #fff; font-size: 18px; width: 40%; font-weight: 300; }
.job-cell.location { width: 30%; }
.job-cell.type { width: 20%; }
.job-cell.arrow { width: 10%; text-align: right; font-size: 20px; color: #444; transition: 0.3s; }
.job-row:hover .arrow { color: #fff; transform: translateX(10px); }

/* --- Application Section --- */
.apply-section { margin: 120px 0; padding-top: 100px; border-top: 1px solid #1a1a1a; }
.apply-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 100px; }

.apply-info h2 { font-size: 40px; letter-spacing: 5px; font-weight: 200; margin-bottom: 30px; line-height: 1.2; }
.apply-info p { color: #666; font-size: 15px; margin-bottom: 40px; }
.contact-detail { color: #fff; font-size: 13px; letter-spacing: 2px; }

/* --- Form Fields --- */
.apply-form-box input, .apply-form-box textarea {
    width: 100%; background: transparent; border: none; border-bottom: 1px solid #222;
    padding: 20px 0; color: #fff; margin-bottom: 30px; outline: none; font-size: 13px;
    letter-spacing: 1px; transition: 0.3s;
}
.apply-form-box input:focus { border-bottom-color: #fff; }

.file-upload { border: 1px dashed #222; padding: 30px; text-align: center; margin-bottom: 40px; }
.file-upload label { font-size: 11px; color: #555; cursor: pointer; letter-spacing: 2px; transition: 0.3s; }
.file-upload:hover { border-color: #444; }
.file-upload:hover label { color: #fff; }

.submit-btn {
    background-color: #fff; color: #000; border: none; padding: 20px 60px;
    font-size: 11px; letter-spacing: 4px; font-weight: 700; cursor: pointer;
    text-transform: uppercase; transition: 0.3s;
}
.submit-btn:hover { background-color: #bbb; transform: translateY(-3px); }

/* --- Responsive --- */
@media (max-width: 900px) {
    .apply-grid { grid-template-columns: 1fr; gap: 50px; }
    .job-cell.location, .job-cell.type { display: none; }
    .job-cell.title { width: 80%; }
    .c-hero h1 { font-size: 35px; letter-spacing: 10px; }
}