﻿/* ================= EMPLOYMENT PAGE ================= */

.employment {
  padding: 80px 20px;
}

/* TITLE */
.employment-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
}

/* INTRO */
.employment-intro {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.8;
}

/* IMAGE */
.employment-image {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.employment-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* TEXT */
.employment-text {
  max-width: 900px;
  margin: auto;
  text-align: justify;              
  font-size: 1.08rem;
  line-height: 1.9;
  font-weight: 500;                
  color: #1e3a8a;                   
}

/* Optional: improve paragraph spacing */
.employment-text p {
  margin-bottom: 22px;
}

/* JOB TITLE */
.job-title {
  text-align: center;
  margin-top: 60px;
  font-size: 2rem;
  font-weight: bold;
  color: var(--secondary);
}


.job-note::before {
  content: "NOTICE";
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
}


/* JOB NOTE */
.job-note {
  max-width: 800px;
  margin: 30px auto 50px;
  padding: 25px 30px;
  text-align: center;
  background: linear-gradient(135deg, #f0f4ff, #ffffff);
  border-left: 6px solid var(--primary);
  border-radius: 10px;
  font-size: 1.05rem;
  line-height: 1.7;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  position: relative;
}

.job-note:hover {
  transform: translateY(-3px);
  transition: 0.3s ease;
}


/* FORM */
.upload-form {
  max-width: 400px;
  margin: auto;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  text-align: center;
}

.upload-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}

.upload-form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.upload-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 12px 20px;
  width: 100%;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.upload-btn:hover {
  background: var(--secondary);
}

.upload-note {
  display: block;
  margin-top: 10px;
  font-size: 0.8rem;
  color: #777;
}

.g-recaptcha {
  margin: 20px 0;
  display: flex;
  justify-content: center;
}

#uploadResponse {
  margin-top: 15px;
  text-align: center;
  font-weight: 600;
}

#uploadResponse .success {
  color: #155724;
  background: #d4edda;
  padding: 10px;
  border-radius: 8px;
}

#uploadResponse .error {
  color: #721c24;
  background: #f8d7da;
  padding: 10px;
  border-radius: 8px;
}