/* ============================================================
   LOTUS CAFE — jobs.css
   ============================================================ */

/* ── HERO — uses High Res 20 (cafe interior) ── */
.jobs-hero {
  position: relative;
  height: 100vh; min-height: 560px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; margin-top: 72px; overflow: hidden;
  background: var(--green);
}
.jobs-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('assets/lotus_cafe_highres_20.jpg') center/cover no-repeat;
  opacity: 0.45;
}
.jobs-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,26,0.45), rgba(45,74,62,0.78));
}
.jobs-hero-content {
  position: relative; z-index: 2;
  color: var(--white); padding: 0 24px; max-width: 760px;
}
.jobs-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300; color: var(--white);
  margin: 10px 0 16px; line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.jobs-hero-content p {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.15rem; color: var(--gold); margin-bottom: 28px;
}

/* ── PERKS ── */
.perks-section { padding: 80px 0; }

/* ── PHOTO ROW — 2:1 split ── */
.jobs-photo-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  height: 420px;
  gap: 4px;
}
.jobs-photo-item { overflow: hidden; }
.jobs-photo-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.jobs-photo-item:hover img { transform: scale(1.05); }

/* ── CHECKBOXES & RADIOS ── */
.checkbox-row,
.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 6px;
}
.checkbox-label,
.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--charcoal);
  cursor: pointer;
  user-select: none;
}
.checkbox-label input[type="checkbox"],
.radio-label input[type="radio"] {
  width: 16px; height: 16px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
  padding: 0; border: none;
}

/* ── FILE UPLOAD ── */
.field-note {
  font-size: 0.72rem; color: var(--gray);
  font-weight: 300; letter-spacing: 0;
  text-transform: none; margin-left: 6px;
}
.file-upload-wrap { position: relative; }
.file-upload-wrap input[type="file"] {
  position: absolute; inset: 0;
  opacity: 0; cursor: pointer; z-index: 2; padding: 0;
}
.file-upload-label {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  border: 1.5px dashed rgba(201,168,76,0.5);
  border-radius: var(--radius);
  background: rgba(201,168,76,0.04);
  color: var(--gray); font-size: 0.88rem;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.file-upload-label:hover,
.file-upload-wrap:focus-within .file-upload-label {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.file-upload-label i { color: var(--gold); font-size: 1rem; }

/* ── ACTIVE NAV ── */
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { right: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .jobs-photo-row { grid-template-columns: 1fr; height: auto; }
  .jobs-photo-item { height: 280px; }
  .jobs-photo-item.jobs-photo-wide { height: 280px; }
}
@media (max-width: 600px) {
  .jobs-hero { height: 75vh; min-height: 420px; }
  .checkbox-row, .radio-row { gap: 8px 16px; }
  .jobs-photo-item { height: 220px; }
  .file-upload-label { padding: 12px 14px; font-size: 0.82rem; }
}
