/* ===============================
   Careers Page Styling
   =============================== */

/* General */
main h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #111;
}

main p {
  font-size: 1rem;
  color: #555;
}

/* Section Headings */
section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a1a;
  border-left: 4px solid #e91e63;
  padding-left: 0.6rem;
  animation: fadeInLeft 0.8s ease;
}

/* Culture Cards */
section .p-4 {
  background: #fafafa;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
section .p-4:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

/* Job Search */
form input {
  border-radius: 6px;
  padding: 0.75rem;
  border: 1px solid #ddd;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}
form input:focus {
  border-color: #e91e63;
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.2);
  outline: none;
}

/* Job Listings */
.list-group-item {
  border: none;
  border-bottom: 1px solid #f2f2f2;
  transition: background 0.2s ease, transform 0.2s ease;
}
.list-group-item:hover {
  background: #f9f9f9;
  transform: translateX(4px);
}
.list-group-item h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111;
}

/* Badges */
.badge {
  font-size: 0.8rem;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
}

/* Future Opportunities Box */
section.mt-5 .p-4 {
  background: linear-gradient(135deg, #f8f8f8, #ffffff);
  border-left: 4px solid #e91e63;
  animation: fadeInUp 1s ease;
}

/* Buttons */
.btn-contact {
  background: #e91e63;
  color: #fff;
  font-weight: 700;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  transition: 0.3s ease;
}
.btn-contact:hover {
  background: #c2185b;
  transform: translateY(-2px);
}

/* ===============================
   Animations
   =============================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===============================
   Responsive
   =============================== */

/* Tablets */
@media (max-width: 992px) {
  main h1 {
    font-size: 2rem;
  }
  section h3 {
    font-size: 1.3rem;
  }
  .list-group-item h5 {
    font-size: 1rem;
  }
}

/* Mobile */
@media (max-width: 576px) {
  main h1 {
    font-size: 1.8rem;
  }
  .btn-contact {
    width: 100%;
    text-align: center;
  }
  .list-group-item {
    padding: 1rem;
  }
  form .col-md-5, form .col-md-2 {
    flex: 100%;
    max-width: 100%;
  }
  form .btn {
    margin-top: 0.5rem;
  }
}
