/* ==========================================
   PT MODERNLAND REALTY - CAREER PAGE STYLES
   ========================================== */

/* === CAREER HERO SECTION === */
.career-hero {
    position: relative;
    width: 100%;
    height: 720px;
    overflow: hidden;
    margin-top: 96px;
}

.career-hero-image {
    position: absolute;
    inset: 0;
}

.career-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.career-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4),
        rgba(0, 0, 0, 0.6)
    );
}

.career-hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    z-index: 2;
}

.career-hero-title {
    font-family: "Poppins", sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1rem 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.career-hero-subtitle {
    font-family: "Poppins", sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 2.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.join-us-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-family: "Poppins", sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    background-color: #dc2626;
    border: 2px solid #dc2626;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
}

.join-us-btn:hover {
    background-color: #ffffff;
    color: #dc2626;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.join-us-btn svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.join-us-btn:hover svg {
    transform: translateX(4px);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
    .career-hero {
        height: 500px;
    }

    .career-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .career-hero {
        height: 400px;
    }

    .career-hero-title {
        font-size: 2rem;
    }

    .career-hero-subtitle {
        font-size: 1rem;
    }

    .join-us-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .career-hero {
        height: 350px;
    }

    .career-hero-title {
        font-size: 1.75rem;
    }

    .career-hero-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 2rem;
    }

    .join-us-btn {
        padding: 0.75rem 1.75rem;
        font-size: 0.9375rem;
    }
}
