/* START OF SECTION: ROOT & BODY */
:root {
    --font-sans: "Exo 2", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    --font-display: "Montserrat";
}

body {
    margin: 0;
    font-family: var(--font-sans);
    background-color: #0b1224;
    color: #fff;
}
/* END OF SECTION: ROOT & BODY */

/* START OF SECTION: HERO */
.hero {
    position: relative;
    background: url('../img/hero-section-career.png')
        center/cover no-repeat;
    height: 60vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;          
    width: 100%;
    max-width: 600px;         
    padding-left: 8%;
    animation: slideInLeft 0.9s ease-out 0.3s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content h1 {
  font-size: 3rem;
    margin: 0;
    letter-spacing: 2px;
}

.hero-content p {
    margin-top: 10px;
    font-size: 1.2rem;
    color: #d1d5db;
}
/* END OF SECTION: HERO */

/* START OF SECTION: CULTURE */
.culture-section {
    padding-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.culture-wrapper {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}

.culture-wrapper h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  text-align: left;
}

.culture-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.culture-content img {
    width: 500px;
    max-width: 100%;
    border-radius: 3px;
    animation: scaleIn 0.7s ease-out 0.9s both;
    transition: transform 0.4s ease;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.culture-content img:hover {
    transform: scale(1.05);
}

.culture-text {
    max-width: 500px;
  font-size: 0.95rem;
  line-height: 1.45;
    margin: 0;
}

.culture-text p {
    margin: 0;                    
    line-height: 1.4;             
}

.culture-text p:first-of-type {
  margin-bottom: 25px;
}

.culture-text ul {
    list-style: disc;
    padding-left: 20px;
}

.culture-text ul {
    margin: 10px 0 0 20px;        
    padding: 0;
}

.culture-text li {
    margin-bottom: 4px; 
}
/* END OF SECTION: CULTURE */

/* START OF SECTION: BENEFITS */
.benefits-section {
    padding: 2.5rem 1.25rem 4rem;
    background-color: #0b1224;
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

.benefits-wrapper {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-wrapper h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  text-align: right;
  
  max-width: 500px;
  margin-left: auto;
}

.benefits-content {
  display: flex;
  align-items: center;
  gap: 100px;
}

.benefits-content img {
  
  width: 100%;
  max-width: 100%;
  border-radius: 3px;
}


.benefits-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end; 
  gap: 12px;
  
  flex: 0 0 500px;
}
.benefits-right h2 {
  margin: 0 0 0 0;
  text-align: right;
  font-size: 2.2rem;
}
.benefits-img {
  
  width: 100%;
  max-width: 500px;
  border-radius: 3px;
  display: block;
  animation: scaleIn 0.7s ease-out 1.6s both;
  transition: transform 0.4s ease;
}

.benefits-img:hover {
  transform: scale(1.05);
}

.benefits-text {
    max-width: 500px;
    font-size: 1.3rem;
    line-height: 1.4;
}

.benefits-text p {
    margin: 0 0 25px 0;
}

.benefits-text ul {
    list-style: disc;
    margin-left: 20px;
    padding-left: 20px;
}

.benefits-text li {
    margin-bottom: 4px;
}
/* END OF SECTION: BENEFITS */

/* START OF SECTION: JOBS */
.jobs-section {
  width: 100%;
  text-align: left;
  margin-top: 20px;
  animation: fadeIn 0.8s ease-out 1.8s both;
}

.job-card-pink {
  width: 280px;
  height: 400px;
  background: #0d1323;
  border: 2px solid #FC0369;
  border-radius: 10px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  color: white;
  animation: fadeInUp 0.6s ease-out both;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.job-card-blue {
  width: 280px;
  height: 400px;
  background: #0d1323;
  border: 2px solid #1653Ef;
  border-radius: 10px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  color: white;
  animation: fadeInUp 0.6s ease-out both;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: center;

  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 50px;
}


.jobs-grid .job-card-pink:nth-child(1),
.jobs-grid .job-card-blue:nth-child(1) {
  animation-delay: 2.0s;
}
.jobs-grid .job-card-pink:nth-child(2),
.jobs-grid .job-card-blue:nth-child(2) {
  animation-delay: 2.1s;
}
.jobs-grid .job-card-pink:nth-child(3),
.jobs-grid .job-card-blue:nth-child(3) {
  animation-delay: 2.2s;
}
.jobs-grid .job-card-pink:nth-child(4),
.jobs-grid .job-card-blue:nth-child(4) {
  animation-delay: 2.3s;
}
.jobs-grid .job-card-pink:nth-child(5),
.jobs-grid .job-card-blue:nth-child(5) {
  animation-delay: 2.4s;
}
.jobs-grid .job-card-pink:nth-child(6),
.jobs-grid .job-card-blue:nth-child(6) {
  animation-delay: 2.5s;
}

.icon-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.icon-wrapper img {
  width: 120px;
  height: auto;
}

.jobs-title {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 5px;
  text-align: center;
}

.job-btn {
  border: 1.5px solid #ff3b7f;
  border-radius: 20px;
  background: transparent;
  color: white;
  padding: 6px 20px;
  width: fit-content;
  font-size: 0.85rem;
  font-family: 'Exo 2', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.job-btn:hover {
  background: #ff3b7f;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 59, 127, 0.4);
}

.job-desc {
  margin-top: 4px;
  color: #dce1f0;
  font-size: 1rem;
  line-height: 1.4;
}




.job-card-pink:hover,
.job-card-pink.dragging {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 18px 40px rgba(2,6,20,0.45), 0 0 20px rgba(252, 3, 105, 0.3);
  border-color: #ff3b7f;
}
.job-card-blue:hover,
.job-card-blue.dragging {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 18px 40px rgba(2,6,20,0.45), 0 0 20px rgba(22, 83, 239, 0.3);
  border-color: #3b82f6;
}


.job-card-pink,
.job-card-blue {
  transform-origin: center;
  will-change: transform;
}
/* END OF SECTION: JOBS */

/* START OF SECTION: MEDIA QUERIES */
@media (min-width: 901px) and (max-width: 1099px) {
  .hero {
    height: 55vh;
  }
  .hero-content {
    max-width: 540px;
    padding-left: 7%;
  }
  .culture-wrapper,
  .benefits-wrapper {
    width: 85%;
  }
  .culture-wrapper h2,
  .benefits-wrapper h2 {
    font-size: 2.2rem;
  }
  .culture-content {
    gap: 80px;
    flex-wrap: nowrap;
  }
  .culture-content img {
    width: 500px;
  }
  
  .benefits-right {
    flex: 0 0 500px;
  }
  .benefits-img {
    max-width: 500px;
  }
  .jobs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 90%;
    max-width: 1000px;
  }
  .job-card-pink,
  .job-card-blue {
    
    width: 340px;
    height: 420px;
    padding: 34px 28px;
  }

  
  .icon-wrapper {
    width: 140px;
    height: 140px;
  }
  .icon-wrapper img {
    width: 140px;
  }
}

@media (max-width: 1024px) and (min-width: 901px) {
  .jobs-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
  .culture-wrapper,
  .benefits-wrapper {
    width: 85%;
  }

  .culture-wrapper h2,
  .benefits-right h2 {
    font-size: 2.3rem;
    margin-bottom: 5px;
  }
 
  .benefits-wrapper h2 {
    max-width: 420px;
    margin-left: auto;
    text-align: right;
  }

  .culture-text,
  .benefits-text {
    font-size: 1rem;
    line-height: 1.35;
  }

  .benefits-text ul {
    padding-left: 0;
  }
}

@media (max-width: 900px) {
  .hero {
    height: 30vh;
    background: url('../img/hero-section-career.png') center/cover no-repeat;
    background-position: center 35%;
    background-size: cover;
  }

  .hero-content {
    max-width: 360px;
    padding-left: 6%;
  }
  .hero-content h1 {
    font-size: 2.6rem;
  }
  .hero-content p {
    font-size: 1.15rem;
  }

  .culture-wrapper,
  .benefits-wrapper {
    width: 85%;
  }

  .culture-wrapper h2,
  .benefits-right h2 {
    font-size: 1.9rem;
    text-align: center;
    margin-bottom: 5px;
  }

  .culture-content,
  .benefits-content {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .benefits-content {
    flex-direction: column-reverse;
    gap: 0;
  }
  .benefits-right {
    flex: 1 1 auto;
    gap: 0;
    align-items: flex-start;
    width: 100%;
  }
  .benefits-right h2 {
    text-align: center;
    width: 100%;
    margin-bottom: 0;
  }
  .culture-content img,
  .benefits-img {
    width: 100%;
    height: auto;
    border-radius: 6px;
  }
  .culture-text,
  .benefits-text {
    font-size: 1rem;
    line-height: 1.35;
  }
  .culture-text ul,
  .benefits-text ul {
    padding-left: 1.25rem;
    margin: 6px 0 0 0;
    list-style-position: outside;
  }
  .culture-text li,
  .benefits-text li {
    margin: 6px 0;
    line-height: 1.25;
    font-weight: 400;
  }
  .jobs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 80%;
    padding-bottom: 30px;
  }
  .job-card-pink,
  .job-card-blue {
    width: 70%;
    height: auto;
    padding: 40px;
    border-radius: 12px;
    padding-bottom: 80px;
  }

  .icon-wrapper {
    width: 90px;
    height: 90px;
  }
  .icon-wrapper img {
    width: 90px;
    height: auto;
  }

  .jobs-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
}

@media (max-width: 420px) {
  .hero {
    height: 20vh;
    background: url('../img/hero-section-career.png') center/cover no-repeat;
    background-position: center 25%;
    background-size: cover;
  }

  .hero-content {
    max-width: 250px;
    padding-left: 5%;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .culture-wrapper,
  .benefits-wrapper {
    width: 80%;
  }

  .culture-wrapper h2,
  .benefits-wrapper h2 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    text-align: center;
  }

  .culture-text,
  .benefits-text {
    font-size: 0.98rem;
  }

  .culture-text ul,
  .benefits-text ul {
    padding-left: 1.1rem;
  }

  .culture-text li,
  .benefits-text li {
    font-size: 0.95rem;
    font-weight: 400;
  }

  .jobs-grid {
    gap: 20px;
    width: 64%;
  }

  .job-card-pink,
  .job-card-blue {
    padding: 16px;
    width: 90%;
  }

  .icon-wrapper {
    width: 72px;
    height: 72px;
  }

  .icon-wrapper img {
    width: 72px;
  }

}

@media (max-width: 360px) {
  .hero {
    height: 20vh;
  }
  .hero-content h1 {
    font-size: 1.45rem;
  }
  .hero-content p {
    font-size: 0.95rem;
  }
  .culture-wrapper,
  .benefits-wrapper {
    width: 80%;
  }
  .culture-wrapper h2,
  .benefits-wrapper h2 {
    font-size: 1.7rem;
    margin-bottom: 5px;
    text-align: center;
  }
  .culture-text li,
  .benefits-text li {
    font-size: 0.95rem;
    font-weight: 400;
  }
  .jobs-grid {
    gap: 20px;
    width: 60%;
  }
}

@supports (background: url()) {
  @media (min-width: 769px) {
    .hero {
      background: url('../img/hero-section-career.png') center/cover no-repeat;
    }
  }
}
/* END OF SECTION: MEDIA QUERIES */

/* START OF SECTION: UTILITY & OVERRIDES */
.benefits-section .benefits-wrapper h2 {
  font-size: 2.2rem !important;
}
.culture-wrapper h2 {
  font-size: 2.2rem !important;
}
.hero-content h1 {
  font-size: 2.6rem !important;
}
.jobs-title {
  font-size: 2rem !important;
}
.culture-text, .benefits-text {
  font-size: 0.95rem !important;
}


.hero-content p,
.culture-text p,
.benefits-text p,
.job-desc,
.footer-tag {
  text-align: justify;
  text-justify: inter-word;
  -webkit-text-size-adjust: 100%;
  hyphens: auto;
}


@media (prefers-reduced-motion: reduce) {
  .hero,
  .hero-content,
  .culture-section,
  .culture-content img,
  .benefits-section,
  .benefits-img,
  .jobs-section,
  .job-card-pink,
  .job-card-blue {
    animation: none !important;
    transition: none !important;
  }
  
  .culture-content img:hover,
  .benefits-img:hover,
  .job-card-pink:hover,
  .job-card-blue:hover,
  .job-btn:hover {
    transform: none !important;
  }
}
/* END OF SECTION: UTILITY & OVERRIDES */
