:root {
    --blue-dark: rgba(0, 75, 93, 1);
    --blue-light: rgba(151, 212, 217, 1);
    --jaune: rgba(247, 220, 129, 1);
    --jaune-dark: #C9A83A;
}

body {
    margin: 0;
    padding: 0;
}

.entete {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 80px;
    background: white;
    box-shadow: 0 4px 20px 0 rgba(255, 255, 255, 0.01);
    position: relative;
    z-index: 10;
    animation: headerSlideDown 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}


.navbar {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.navbar a {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    color: var(--blue-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.navbar a:hover {
    color: var(--jaune-dark);
}

.btn-cta {
    background: var(--jaune);
    color: white;
    text-decoration: none;
    padding: 24px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 17px;
}

.btn-cta:hover {
    background: #C9A83A;
    transform: translateY(-2px);
}

.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 740px;
}

.hero_video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero_text {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0 80px;
    gap: 32px;
}

.hero_title {
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    font-weight: bold;
    font-size: 70px;
    margin-top: 65px;
    color: var(--jaune);
    opacity: 0;
    transform: translateX(-60px);
    animation: slideInLeft 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}

.hero_title:hover {
    text-shadow: 0 0 40px rgba(247, 220, 129, 0.6);
    transition: text-shadow 0.4s ease;
}

.hero_p {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 20px 24px 20px;
    width: 550px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    opacity: 0;
    transform: translateX(-60px);
    animation: slideInLeft 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.65s forwards;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-size: 20px;
    color: var(--blue-dark);
}

.hero_p:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero_scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0;
    animation: fadeIn 0.6s ease 1.4s forwards;
}

.hero_scroll span {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 1);
}

.scroll {
    transform: rotate(0deg);
    animation: bounce 1.4s ease infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: rotate(0deg) translateY(0);
    }

    50% {
        transform: rotate(0deg) translateY(6px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.valeurs {
    padding: 100px 150px 200px;
    text-align: center;
}

.valeurs_titre {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 40px;
    color: var(--blue-dark);
    margin-bottom: 200px;
}

.valeurs_cartes {
    display: flex;
    gap: 80px;
    margin: 0 auto;
}

.valeurs_carte {
    background: #FFFFFF;
    border: 1px solid var(--blue-light);
    border-radius: 16px;
    padding: 44px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    cursor: default;
    opacity: 0;
    width: 400px;
    transform: translateY(30px);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.valeurs_carte.visible {
    animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.valeurs_carte:hover {
    box-shadow: 0 10px 20px 2px rgba(0, 0, 0, 0.25);
}

.valeurs_icone {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s, transform 0.3s;
}

.valeurs_carte-titre {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 20px;
    color: var(--blue-dark);
    margin: 0;
}

.valeurs_carte-texte {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    margin: 0;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.missions {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-direction: column;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url("./img/30122016_JOB5054F_Lever_Brenva-1920\ 1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 100px 150px 120px;
    box-sizing: border-box;
    z-index: 2;
    height: 850px;
    gap: 120px;
}

.missions_titre {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 40px;
    color: var(--blue-dark);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    padding: 14px 36px;
    border-radius: 12px;
    opacity: 0;
    animation: missionFadeDown 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

.missions_cartes {
    display: flex;
    gap: 80px;
    width: 100%;
    align-items: start;
}

.missions_carte {
    background: rgba(255, 255, 255, 1);
    border-radius: 18px;
    padding: 36px 28px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    opacity: 0;
}

.missions_carte_bas {
    margin-top: 100px;
}

.missions_carte_haut {
    margin-top: 0;
}


.missions_carte:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.missions_carte.visible {
    animation: missionSlideUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.missions_carte:nth-child(1).visible {
    animation-delay: 0.10s;
}

.missions_carte:nth-child(2).visible {
    animation-delay: 0.00s;
}

.missions_carte:nth-child(3).visible {
    animation-delay: 0.20s;
}

.missions_icone {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s, transform 0.3s;
}

.missions_carte:hover .missions_icone {
    transform: scale(1.1) rotate(5deg);
}

.missions_carte-titre {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 20px;
    color: var(--blue-dark);
    margin: 0;
}

.missions_carte-texte {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(51, 51, 51, 1);
    margin: 0;
}

@keyframes missionFadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes missionSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.candidature {
    padding: 120px 150px 100px 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
}

.candidature_haut {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.candidature_titre {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-style: italic;
    font-size: 40px;
    color: var(--jaune-dark);
    margin: 0;
}

.candidature_sous-titre {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--blue-dark);
    margin: 0;
}

.candidature_contenu {
    display: flex;
    gap: 150px;
    width: 100%;
    justify-content: center;
}

.candidature_gauche {
    border-radius: 20px;
    padding: 36px 40px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    box-shadow: 0 10px 20px 2px rgba(0, 0, 0, 0.15);
}

.candidature_icone {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-light);
}

.candidature_form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.form_champ {
    width: 390px;
    padding: 14px 16px;
    border: 1px solid rgba(0, 75, 93, 0.5);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(84, 110, 122, 1);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form_champ::placeholder {
    color: rgb(84, 122, 104);
}

.form_champ:focus {
    border-color: var(--blue-light);
    box-shadow: 0 0 0 3px rgba(151, 212, 217, 0.2);
}

.form_select_mission {
    width: 190px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px 10px 14px;
    border: 1px solid rgba(0, 75, 93, 0.5);
    border-radius: 8px;
}

.form_select {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(84, 110, 122, 1);
    outline: none;
    cursor: pointer;
    appearance: none;
    border: none;
}

.form_checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(84, 110, 122, 1);
    cursor: pointer;
}

.form_checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form_bouton {
    width: 300px;
    padding: 18px;
    background: var(--jaune);
    color: var(--blue-dark);
    border: none;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 17px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    margin-top: 10px;
}

.form_bouton:hover {
    background: var(--jaune-dark);
    color: white;
    transform: translateY(-2px);
}

.candidature_logoJO {
    width: 38px;
    height: 19px;
    align-self: flex-end;
}

.candidature_droite {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 16px;
}


.candidature_photo {
    width: 100%;
    border: 1px solid var(--jaune);
    border-radius: 50px;
    box-shadow: 10px 10px 20px 2px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.candidature_photo:hover {
    transform: scale(1.03) translateY(-3px);
    box-shadow: 14px 18px 32px 4px rgba(0, 0, 0, 0.30);
}

.footer {
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
    padding: 48px 80px;
}

.footer_colonnes {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer_col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer_col_gauche {
    align-items: center;
    width: 200px;
    flex-shrink: 0;
}

.footer_logo {
    width: 180px;
    height: 180px;
}

.footer_textlogo {
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    font-size: 13px;
    color: var(--jaune-dark);
    text-align: center;
    margin: 0;
}

.footer_col_milieu {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 190px;
}

.footer_nav-liste {
    display: flex;
    gap: 48px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer_nav-liste a {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 16px;
    color: var(--blue-dark);
    text-decoration: none;
    position: relative;
    transition: color 0.2s;
}

.footer_nav-liste a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--jaune-dark);
    transition: width 0.25s ease;
}

.footer_nav-liste a:hover {
    color: var(--jaune-dark);
}

.footer_nav-liste a:hover::after {
    width: 100%;
}

.footer_mentions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer_mentions-liens {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer_mentions-liens a {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 14px;
    color: var(--blue-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.footer_mentions-liens a:hover {
    color: var(--jaune-dark);
    text-decoration: underline;
}

.footer_sep {
    color: var(--blue-light);
}

.footer_copyright {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: bold;
    color: var(--blue-dark);
    text-align: center;
    margin: 0;
}

.footer_col_droite {
    display: flex;
    align-items: flex-end;
    gap: 50px;
}

.footer_reseaux {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-right: 25px;
}

.footer_reseaux-titre {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 16px;
    color: var(--jaune-dark);
}

.footer_reseaux-icones {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer_reseau-lien {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, opacity 0.2s;
}

.footer_reseau-lien:hover {
    transform: translateY(-3px);
    opacity: 0.75;
}

.footer_reseau-img {
    width: 30px;
    height: 30px;
}

.footer_img {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer_partenaire-img {
    width: 80px;
}

.footer_logoJO {
    width: 130px;
    height: 60px;
}


@media (max-width: 1024px) {
    .entete {
        padding: 8px 40px;
    }

    .btn-cta {
        font-size: 14px;
        padding: 16px 14px;
    }

    .hero {
        height: 580px;
    }

    .hero_text {
        padding: 0 40px;
        gap: 24px;
    }

    .hero_title {
        font-size: 52px;
        margin-top: 60px;
    }

    .hero_p {
        font-size: 17px;
        width: 440px;
    }

    .valeurs {
        padding: 80px 60px 120px;
    }

    .valeurs_titre {
        font-size: 32px;
        margin-bottom: 100px;
    }

    .valeurs_cartes {
        gap: 30px;
    }

    .valeurs_carte {
        width: auto;
        padding: 32px 20px;
    }

    .missions {
        padding: 80px 60px 100px;
        height: auto;
        gap: 60px;
    }

    .missions_titre {
        font-size: 32px;
    }

    .missions_cartes {
        gap: 30px;
    }

    .missions_carte_bas {
        margin-top: 60px;
    }

    .candidature {
        padding: 80px 60px 80px;
        gap: 60px;
    }

    .candidature_contenu {
        gap: 60px;
    }

    .form_champ {
        width: 320px;
    }

    .footer {
        padding: 48px 40px;
    }

    .footer_col_milieu {
        gap: 80px;
    }
}

@media (max-width: 768px) {
    .entete {
        padding: 12px 20px;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .entete img:first-child {
        height: 44px;
        width: auto;
    }

    .nav-toggle {
        display: flex;
    }

    .entete .btn-cta {
        display: none;
    }

    .navbar {
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0;
    }

    .navbar li {
        border-bottom: 1px solid rgba(151, 212, 217, 0.3);
    }

    .navbar a {
        display: block;
        padding: 16px 20px;
        font-size: 16px;
    }

    .hero {
        height: auto;
        min-height: 480px;
    }

    .hero_text {
        padding: 0 20px;
        gap: 20px;
    }

    .hero_title {
        font-size: 34px;
        margin-top: 48px;
        line-height: 1.2;
    }

    .hero_p {
        font-size: 15px;
        width: auto;
        max-width: 100%;
        padding: 16px;
    }

    .hero_scroll {
        bottom: 16px;
    }

    .valeurs {
        padding: 60px 20px 60px;
    }

    .valeurs_titre {
        font-size: 26px;
        margin-bottom: 48px;
        line-height: 1.3;
    }

    .valeurs_cartes {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .valeurs_carte {
        width: 100%;
        max-width: 420px;
        padding: 32px 24px;
        box-sizing: border-box;
    }

    .missions {
        padding: 60px 20px 60px;
        height: auto;
        gap: 40px;
    }

    .missions_titre {
        font-size: 26px;
        padding: 12px 24px;
        text-align: center;
    }

    .missions_cartes {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
    }

    .missions_carte_bas,
    .missions_carte_haut {
        margin-top: 0;
    }

    .missions_carte {
        width: 100%;
        max-width: 420px;
        box-sizing: border-box;
        padding: 28px 24px;
    }

    .candidature {
        padding: 60px 20px 60px;
        gap: 40px;
    }

    .candidature_haut {
        gap: 10px;
    }

    .candidature_titre {
        font-size: 28px;
    }

    .candidature_sous-titre {
        font-size: 15px;
    }

    .candidature_contenu {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        width: 100%;
    }

    .candidature_gauche {
        padding: 28px 20px;
        width: 100%;
        max-width: 480px;
        box-sizing: border-box;
    }

    .candidature_droite {
        width: 100%;
        max-width: 480px;
    }

    .candidature_photo {
        border-radius: 24px;
    }

    .candidature_form {
        width: 100%;
    }

    .form_champ {
        width: 100%;
        box-sizing: border-box;
        padding: 14px 14px;
    }

    .form_select_mission {
        width: 100%;
        box-sizing: border-box;
    }

    .form_select {
        width: 100%;
    }

    .form_bouton {
        width: 100%;
        padding: 18px;
        font-size: 16px;
    }

    .form_checkbox-label {
        font-size: 13px;
    }

    .footer {
        padding: 40px 20px;
    }

    .footer_colonnes {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        text-align: center;
    }

    .footer_col_gauche {
        width: 100%;
        align-items: center;
    }

    .footer_logo {
        width: 120px;
        height: 120px;
    }

    .footer_col_milieu {
        width: 100%;
        gap: 32px;
        align-items: center;
    }

    .footer_nav-liste {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .footer_col_droite {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        width: 100%;
    }

    .footer_reseaux {
        margin-right: 0;
    }

    .footer_img {
        justify-content: center;
    }

    .footer_logoJO {
        width: 100px;
        height: auto;
    }

    .footer_copyright {
        font-size: 11px;
    }
}

html {
    scroll-behavior: smooth;
}