/* --- CONFIGURATION GÉNÉRALE --- */
:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-blue: #3b82f6;
    --font-main: 'Poppins', sans-serif;
    --font-title: 'Poppins', sans-serif;
}

@font-face {
    font-family: 'Poppins', sans-serif;
    src: url('https://assets.team-réality.com/assets/fonts/neuropol/Neuropol X Rg.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    color: var(--secondary-color);
    font-family: var(--font-main);
    scroll-behavior: smooth;
    overflow-x: hidden;
    background-color: var(--secondary-color);
}

.jobs-wrapper { width: 100%; }

/* --- SECTIONS 100VH --- */
.lv-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.40);
}

/* --- BARRE DE RECHERCHE (STYLE LV) --- */
.lv-search-wrapper {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    z-index: 20;
}

.lv-filter-bar {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 12px 10px 30px;
    border-radius: 100px;
    transition: all 0.5s ease;
}

.filter-segment {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 5px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.filter-segment:nth-child(3) { border-right: none; }

.segment-label {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--accent-blue);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.filter-segment input, .filter-segment select {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-family: var(--font-main);
    font-size: 0.9rem;
    width: 100%;
    cursor: pointer;
    text-transform: uppercase;
}

.filter-segment select option { background: #0a0a0a; color: #fff; }

.lv-search-submit {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.lv-search-submit:hover {
    background: var(--accent-blue);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

/* --- OVERLAYS TEXTE --- */
.lv-overlay-center {
    position: relative;
    z-index: 10;
    margin: auto;
    text-align: center;
    width: 100%;
    max-width: 1000px;
}

.hero-title {
    font-family: var(--font-title);
    color: var(--secondary-color);
    font-size: clamp(2.5rem, 8vw, 6rem);
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 50px;
    letter-spacing: -2px;
}

.text-outline {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
}

.pole-desc {
    max-width: 650px;
    margin: 0 auto 40px auto;
    font-size: 14px;
    letter-spacing: 1px;
    opacity: 0.8;
    line-height: 1.6;
    color: var(--secondary-color);
}

.lv-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 45px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 3px;
    text-decoration: none;
    transition: 0.4s;
    text-transform: uppercase;
}

.lv-btn:hover {
    background: #fff;
    color: #000;
}

/* --- MOBILE --- */
@media (max-width: 768px) {
    .lv-filter-bar {
        flex-direction: column;
        border-radius: 25px;
        padding: 25px;
        gap: 20px;
    }
    .filter-segment {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        padding-bottom: 15px;
    }
    .lv-search-submit { width: 100%; }
}