/* =========================================================
   DREAMJOB — HOME PAGE
   ========================================================= */

.dreamjob-home {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.dreamjob-hero {
    width: 100%;
    background: #0f3d33;
    color: #ffffff;
    padding: 90px 24px;
}

.dreamjob-hero-inner {
    width: min(1180px, 100%);
    margin: 0 auto;
    text-align: center;
}

.dreamjob-eyebrow {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #d9b76a;
}

.dreamjob-hero h1 {
    max-width: 900px;
    margin: 0 auto 22px;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.dreamjob-hero p {
    max-width: 720px;
    margin: 0 auto 35px;
    font-size: 18px;
    line-height: 1.7;
    color: #e7eee9;
}

.dreamjob-hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.dreamjob-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.dreamjob-btn-primary {
    background: #d9b76a;
    color: #102f28;
}

.dreamjob-btn-primary:hover {
    background: #e5c77f;
    color: #102f28;
}

.dreamjob-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.45);
}

.dreamjob-btn-secondary:hover {
    background: rgba(255,255,255,0.08);
    color: #ffffff;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .dreamjob-hero {
        padding: 65px 20px;
    }

    .dreamjob-eyebrow {
        font-size: 11px;
        letter-spacing: 1px;
        line-height: 1.5;
    }

    .dreamjob-hero h1 {
        font-size: 38px;
        line-height: 1.12;
        letter-spacing: -0.8px;
    }

    .dreamjob-hero p {
        font-size: 16px;
        line-height: 1.6;
    }

    .dreamjob-hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .dreamjob-btn {
        width: 100%;
        max-width: 320px;
    }

}