/* === CAREERS SECTION (reduced height) === */
.careers-section {
  position: relative;
  background: none;
  padding: clamp(3.5rem, 8vw, 6rem) 1.5rem;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 440px; /* redus de la 700px/540px */
  overflow: hidden;
}

.careers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://theonerecords.com/images/tablou.webp") center center / cover no-repeat;
  filter: blur(5px);
  transform: scale(1.05);
  z-index: 0;
}

.careers-overlay {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.careers-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Titluri */
.careers-title {
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 0.8rem;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.6);
  animation: fadeInUp 1s ease forwards;
}

.careers-subtitle {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: #d0d0d0;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1.1s ease forwards;
}

.careers-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 2.2rem;
  max-width: 1000px;
  margin-inline: auto;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 1.2s ease forwards;
}

/* Etichete roluri */
.careers-roles {
  display: flex;
  justify-content: center;
  gap: 3.5rem;
  margin-bottom: 2.2rem;
  flex-wrap: wrap;
  animation: fadeInUp 1.4s ease forwards;
}

.roles-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 180px;
  align-items: flex-start;
}

.role-label {
  font-size: 1.1rem;
  color: #b7f3c5;
  background: transparent;
  border-left: 3px solid #1db954;
  padding-left: 0.8rem;
  font-weight: 500;
  text-align: left;
  white-space: nowrap;
  user-select: none;
  line-height: 1.4;
  letter-spacing: 0.3px;
}

/* CTA */
.btn-careers {
  background-color: #1db954;
  color: #fff;
  padding: 0.7rem 1.8rem;
  font-size: 1rem;
  border-radius: 100px;
  font-weight: 600;
  letter-spacing: 0.4px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 8px 20px rgba(29, 185, 84, 0.35);
  animation: fadeInUp 1.8s ease forwards;
  text-align: center;
}

.btn-careers:hover,
.btn-careers:focus {
  background-color: #17a74a;
  box-shadow: 0 10px 24px rgba(23, 167, 74, 0.4);
  outline: none;
}

/* Animație */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Mobile & Small Devices === */
@media (max-width: 600px) {
  .careers-title {
    font-size: 1.8rem;
  }

  .careers-subtitle {
    font-size: 1.2rem;
  }

  .careers-content p {
    font-size: 0.95rem;
    padding: 0 0.5rem;
    margin-bottom: 1.5rem;
  }

  .btn-careers {
    font-size: 0.9rem;
    padding: 0.7rem 1.6rem;
  }

  .careers-roles {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    padding: 0 1rem;
  }

  .roles-column {
    align-items: flex-start;
    width: 100%;
  }

  .role-label {
    font-size: 0.9rem;
    padding-left: 0.6rem;
  }
}