/* =========================
   CAREER-HERO.CSS – FULLY RESPONSIVE
   Matches about-hero styling exactly (inverted colors)
   Green background, responsive typography
========================= */

.careers-hero {
    width: 100%;
    padding: 12vh 0 8vh;
    background: #0a1f1a;
    position: relative;
}

/* No gradient overlay - matches about-hero */
.careers-hero::before {
    display: none;
}

.careers-hero .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 40px);
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.careers-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.careers-hero-content h5 {
    color: #c084fc;  /* Purple to match about-hero's purple accent */
    font-size: clamp(0.75rem, 3vw, 0.9rem);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.careers-hero-content h1 {
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: #e2d6f0;
    line-height: 1.2;
}

/* No gradient text - simple like about-hero */
.careers-hero-content p {
    font-size: clamp(1rem, 4vw, 1.2rem);
    color: #d1e0d6;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Buttons - matching about-hero button style */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 40px;
    transition: all 0.3s ease;
    background: #c084fc;
    color: #0a1f1a;
    border: 2px solid #c084fc;
    box-shadow: 0 0 6px rgba(192, 132, 252, 0.3);
}

.btn-primary:hover {
    background: #a855f7;
    border-color: #a855f7;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(168, 85, 247, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 40px;
    transition: all 0.3s ease;
    background: transparent;
    color: #4ade80;
    border: 2px solid #4ade80;
}

.btn-secondary:hover {
    background: rgba(74, 222, 128, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(74, 222, 128, 0.2);
}

/* ========== RESPONSIVE BREAKPOINTS ========== */

/* Tablet (≤ 900px) */
@media (max-width: 900px) {
    .careers-hero {
        padding: 10vh 0 6vh;
    }
    .careers-hero-content h1 {
        margin-bottom: 20px;
    }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
    .careers-hero {
        padding: 8vh 0 5vh;
    }
    .careers-hero-content h5 {
        margin-bottom: 12px;
    }
    .careers-hero-content h1 {
        margin-bottom: 16px;
    }
    .careers-hero-content p {
        padding: 0;
    }
}

/* Small phones (≤ 480px) */
@media (max-width: 480px) {
    .careers-hero {
        padding: 6vh 0 4vh;
    }
    .careers-hero-content h5 {
        margin-bottom: 8px;
    }
    .careers-hero-content h1 {
        margin-bottom: 12px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

/* Very narrow (≤ 360px) */
@media (max-width: 360px) {
    .careers-hero {
        padding: 4vh 0 3vh;
    }
}