/* Home page (home.ejs): hero, values, featured offers and the testimonial. */

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero-section {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 80px 0;
    overflow: hidden;
    color: var(--white);
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://assets.forcefore.com/public/asset/7297caf24249239f46dd3821');
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
    z-index: -1;
}
.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.2;
    color: var(--white);
    margin: 0;
    text-shadow: 0 2px 10px var(--scrim);
}
.hero-title span { display: block; }
.hero-title .highlight { color: var(--violet); }
.hero-description {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 20px auto 30px auto;
    color: var(--text-soft);
}

/* ── Values ────────────────────────────────────────────────────────────── */
.values-section {
    padding: 60px 0;
    background-color: var(--white);
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.background-logo-pattern::after {
    content: '';
    background-image: url('https://assets.forcefore.com/public/asset/028e4e5a0ae3d9cfe007f7c9.png');
    background-repeat: no-repeat;
    background-position: 110% -10%;
    background-size: 400px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: -1;
    filter: invert(1);
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}
.value-card {
    text-align: center;
}
.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
    background-color: var(--surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--violet);
}
.value-icon svg { width: 32px; height: 32px; }
.value-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--ink);
}
.value-description {
    color: var(--muted);
    line-height: 1.6;
}

/* ── Featured offers ───────────────────────────────────────────────────── */
.featured-jobs-section {
    padding: 60px 0;
    background-color: var(--surface);
}
.see-all-offers {
    text-align: center;
    margin-top: 50px;
}

/* ── Testimonial ───────────────────────────────────────────────────────── */
.testimonial-section {
    background-color: var(--ink);
    color: var(--text-soft);
    padding: 80px 0;
    text-align: center;
}
.testimonial-content blockquote {
    font-family: 'Franklin Gothic Demi', 'Arial Narrow', Arial, sans-serif;
    font-size: 2rem;
    line-height: 1.4;
    border: none;
    margin: 0 0 20px 0;
    padding: 0;
    max-width: 800px;
    display: inline-block;
}
.testimonial-content blockquote::before,
.testimonial-content blockquote::after {
    content: '"';
    color: var(--violet);
}
.testimonial-content cite {
    font-style: normal;
    font-weight: bold;
    color: var(--muted-2);
    display: block;
}
