/*
 * Stylesheet cho phần hero của trang danh sách việc làm.
 * Tích hợp màu sắc và phông chữ từ các tệp tin khác để tạo sự nhất quán.
 */

:root {
  --primary-color: #3498db;
  --secondary-color: #2c3e50;
  --text-color: #6c757d;
  --light-bg: #f8f9fa;
}

.jobs-hero-section {
  background: linear-gradient(135deg, #1f2c3d, #3c546e);
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.jobs-hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.jobs-hero-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.5rem;
  line-height: 1.2;
  transform: translateY(20px);
  opacity: 0;
  animation: slideIn 0.8s ease-out forwards;
}

.jobs-hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--light-bg);
  margin-bottom: 2rem;
  transform: translateY(20px);
  opacity: 0;
  animation: slideIn 0.8s ease-out 0.2s forwards;
}

.jobs-hero-cta-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--primary-color);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 5px 20px rgba(52, 152, 219, 0.4);
  transition: all 0.3s ease;
  transform: scale(0.9);
  opacity: 0;
  animation: popIn 0.5s ease-out 0.4s forwards;
}

.jobs-hero-cta-btn:hover {
  background-color: #2980b9;
  transform: scale(1.05);
}

/* Hiệu ứng chuyển động */
@keyframes slideIn {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes popIn {
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .jobs-hero-section {
    padding: 3rem 1rem;
  }
}
