/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #080808;
    color: white;
    overflow-x: hidden;
}


/* =========================================
   ARRIÈRE-PLAN
========================================= */

.background {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100%;

    background-image: url("images/fond.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    filter: brightness(200);

    z-index: -3;
}


/* VOILE SOMBRE */

.overlay {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            rgba(5, 5, 5, 0.5) 0%,
            rgba(5, 5, 5, 0.5) 45%,
            rgba(5, 5, 5, 0.5) 100%
        );

    z-index: -2;
}

/* =========================================
   HEADER
========================================= */

.header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 78px;

    padding: 0 6.5%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    z-index: 9999;

    background: rgba(8, 8, 8, 0.82);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


/* =========================================
   MARQUE
========================================= */

.brand {
    display: flex;
    align-items: center;
    gap: 13px;
}


/* LOGO */

.logo {

    width: 38px;
    height: 38px;

    border: 1px solid #9b1c18;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #d1201b;

    font-size: 21px;

    box-shadow:
        0 0 10px rgba(180, 20, 15, 0.3);
}

.logo span {
    transform: scale(0.7);
}


/* TEXTE DU LOGO */

.brand-text h2 {

    font-size: 17px;
    letter-spacing: 1.5px;

    color: #eeeeee;

    font-weight: 700;
}

.brand-text p {

    margin-top: 4px;

    font-family: monospace;

    font-size: 8px;

    letter-spacing: 1.5px;

    color: #ad8424;
}


/* =========================================
   NAVIGATION
========================================= */

.navigation {

    display: flex;
    align-items: center;
    gap: 34px;
}


.navigation a {

    position: relative;

    text-decoration: none;

    color: #8e8b8b;

    font-family: monospace;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 1px;

    transition: 0.3s ease;
}


.navigation a:hover {
    color: #ffffff;
}


/* LIEN ACTIF */

.navigation .active {
    color: #c51a17;
}


/* PETITE LIGNE SOUS ACCUEIL */

.navigation .active::after {

    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: -13px;

    height: 1px;

    background: #c51a17;
}


/* =========================================
   BOUTON POSTULER
========================================= */

.btn-postuler {

    padding: 11px 24px;

    border-radius: 25px;

    background: linear-gradient(
        180deg,
        #c91c1c,
        #a80f0f
    );

    border: 1px solid #e0352d;

    color: white !important;

    box-shadow:
        0 5px 20px rgba(180, 20, 20, 0.2);
}

.btn-postuler:hover {

    transform: translateY(-1px);

    box-shadow:
        0 7px 25px rgba(210, 30, 25, 0.35);
}


/* =========================================
   BOUTON MENU MOBILE
========================================= */

.menu-button {

    display: none;

    background: transparent;

    border: none;

    color: white;

    font-size: 28px;

    cursor: pointer;
}


/* =========================================
   HERO
========================================= */

.hero {

    position: relative;

    width: 100%;

    min-height: calc(100vh - 78px);

    padding-left: 6.5%;
    padding-top: 106px;

    display: flex;
    flex-direction: column;

    align-items: flex-start;
}


/* =========================================
   PETIT TEXTE D'INVITATION
========================================= */

.invitation {

    display: flex;
    align-items: center;
    gap: 10px;

    margin-top: 4px;

    font-family: monospace;

    font-size: 11px;

    font-weight: bold;

    letter-spacing: 1.4px;

    color: #c4952d;
}


/* POINT ROUGE */

.red-dot {

    width: 6px;
    height: 6px;

    background: #d21b1b;

    border-radius: 50%;

    display: inline-block;
}


/* =========================================
   GRAND TITRE
========================================= */

.hero h1 {

    margin-top: 29px;

    max-width: 800px;

    font-size: clamp(65px, 6.2vw, 106px);

    line-height: 0.94;

    letter-spacing: -5px;

    font-weight: 800;

    color: #f4f1eb;
}


/* TEXTE COLORÉ */

.hero h1 span {

    background: linear-gradient(
        90deg,
        #e9a42d,
        #d84922,
        #bd1919
    );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


/* =========================================
   LIGNE
========================================= */

.title-line {

    width: 725px;
    max-width: 58vw;

    height: 1px;

    margin-top: 36px;

    background: linear-gradient(
        90deg,
        rgba(155, 40, 25, 0.7),
        rgba(155, 40, 25, 0.15),
        transparent
    );
}


/* =========================================
   DESCRIPTION
========================================= */

.description {

    width: 570px;
    max-width: 80vw;

    margin-top: 25px;

    color: #bdbbbb;

    font-size: 16px;

    line-height: 1.6;

    font-weight: 500;
}


/* =========================================
   BOUTONS DU HERO
========================================= */

.buttons {

    display: flex;
    align-items: center;

    gap: 16px;

    margin-top: 26px;
}


/* BOUTON PRINCIPAL */

.btn-primary {

    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 227px;

    height: 54px;

    padding: 0 30px;

    border-radius: 28px;

    text-decoration: none;

    background: linear-gradient(
        180deg,
        #d21d1d,
        #b30e0e
    );

    border: 1px solid #e52a25;

    color: white;

    font-weight: bold;

    font-size: 14px;

    box-shadow:
        0 8px 25px rgba(180, 20, 20, 0.2);

    transition: 0.3s ease;
}


.btn-primary:hover {

    transform: translateY(-2px);

    box-shadow:
        0 10px 30px rgba(220, 30, 25, 0.35);
}


/* BOUTON SECONDAIRE */

.btn-secondary {

    display: flex;
    align-items: center;
    justify-content: center;

    height: 54px;

    padding: 0 28px;

    border-radius: 28px;

    text-decoration: none;

    background: rgba(10, 10, 10, 0.25);

    border: 1px solid rgba(120, 120, 120, 0.28);

    color: #b8b5b5;

    font-family: monospace;

    font-size: 11px;

    font-weight: bold;

    letter-spacing: 1px;

    transition: 0.3s ease;
}


.btn-secondary:hover {

    border-color: rgba(200, 200, 200, 0.5);

    color: white;

    background: rgba(30, 30, 30, 0.4);
}


/* =========================================
   RESPONSIVE TABLETTE
========================================= */

@media (max-width: 1000px) {

    .header {
        padding: 0 5%;
    }

    .hero {
        padding-left: 5%;
    }

    .navigation {
        gap: 20px;
    }

    .navigation a {
        font-size: 10px;
    }

    .hero h1 {
        font-size: 70px;
    }

}


/* =========================================
   RESPONSIVE MOBILE
========================================= */

@media (max-width: 750px) {

    .header {

        height: 70px;

        padding: 0 25px;
    }


    .menu-button {
        display: block;
    }


    .navigation {

        display: none;

        position: absolute;

        top: 70px;
        right: 20px;

        width: 220px;

        padding: 25px;

        flex-direction: column;

        align-items: flex-start;

        gap: 22px;

        background: rgba(10, 10, 10, 0.96);

        border: 1px solid rgba(255, 255, 255, 0.08);

        border-radius: 10px;

        backdrop-filter: blur(10px);
    }


    .navigation.show {
        display: flex;
    }


    .navigation .active::after {
        display: none;
    }


    .hero {

        min-height: calc(100vh - 70px);

        padding: 35px 25px;

    }


    .invitation {
        font-size: 9px;
        letter-spacing: 1px;
    }


    .hero h1 {

        margin-top: 25px;

        font-size: clamp(48px, 13vw, 70px);

        line-height: 0.98;

        letter-spacing: -3px;
    }


    .title-line {

        width: 100%;

        max-width: none;

        margin-top: 28px;
    }


    .description {

        width: 100%;

        font-size: 14px;

        line-height: 1.6;
    }


    .buttons {

        width: 100%;

        flex-direction: column;

        align-items: stretch;
    }


    .btn-primary,
    .btn-secondary {

        width: 100%;
    }

}


/* =========================================
   PETIT MOBILE
========================================= */

@media (max-width: 450px) {

    .brand-text h2 {
        font-size: 15px;
    }

    .brand-text p {
        font-size: 7px;
    }

    .logo {
        width: 34px;
        height: 34px;
    }

    .hero h1 {
        font-size: 48px;
    }

}


.ticker {
    width: 100%;
    height: 56px;

    overflow: hidden;

    border-top: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.12);

    background: rgba(5,5,5,0.65);

    display: flex;
    align-items: center;
}


.ticker-track {
    display: flex;

    width: max-content;

    flex-shrink: 0;

    animation: ticker-infinite 18s linear infinite;
}


.ticker-group {
    display: flex;
    align-items: center;

    flex-shrink: 0;

    white-space: nowrap;
}


.ticker-group span {
    display: inline-block;

    margin-right: 24px;

    font-family: Arial, sans-serif;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1.5px;

    color: #858281;
}


.ticker-group span:nth-child(odd) {
    color: #c99a2d;
}


/* RUBAN INFINI */

@keyframes ticker-infinite {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}

.cards-section {
    width: 87%;
    margin: 45px auto 0;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border: 1px solid rgba(255, 255, 255, 0.18);

    background: rgba(8, 8, 8, 0.58);

    backdrop-filter: blur(2px);
}


.card {
    min-height: 240px;

    padding: 45px 32px;

    border-right: 1px solid rgba(255, 255, 255, 0.15);
}


.card:last-child {
    border-right: none;
}


.card-number {
    display: block;

    margin-bottom: 18px;

    font-family: monospace;

    font-size: 12px;

    letter-spacing: 1px;

    color: #c99a2d;
}


.card h2 {
    margin-bottom: 17px;

    color: #eeeeeb;

    font-size: 21px;

    font-weight: 700;
}


.card p {
    max-width: 330px;

    margin-bottom: 20px;

    color: #858281;

    font-size: 15px;

    line-height: 1.55;
}


.card a {
    text-decoration: none;

    font-family: monospace;

    font-size: 11px;

    font-weight: bold;

    letter-spacing: 1px;

    color: #c51c1c;

    transition: 0.3s ease;
}


.card a:hover {
    color: #ef3b32;
}

@media (max-width: 750px) {

    .cards-section {
        width: calc(100% - 50px);

        margin-top: 35px;

        grid-template-columns: 1fr;
    }


    .card {
        border-right: none;

        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }


    .card:last-child {
        border-bottom: none;
    }

}

/* =========================================
   SECTION POURQUOI MAINTENANT
========================================= */

.decision-section {
    width: 100%;
    min-height: 580px;

    padding: 70px 6.5%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;

    background: transparent;
}


/* =========================================
   CONTENU GAUCHE
========================================= */

.decision-content {
    width: 55%;
}


/* PETIT TITRE */

.section-label {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 25px;

    font-family: monospace;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 1.5px;

    color: #c99a2d;
}

.section-label span {
    font-size: 10px;
}


/* GRAND TITRE */

.decision-content h2 {
    margin: 0;

    font-size: clamp(45px, 4.3vw, 66px);

    line-height: 0.98;

    letter-spacing: -3px;

    font-weight: 800;

    color: #f1eee9;
}


/* MOT ORANGE / ROUGE */

.decision-content h2 span {
    background: linear-gradient(
        90deg,
        #e9a42d,
        #c92820
    );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


/* =========================================
   DESCRIPTION
========================================= */

.decision-description {
    width: 570px;
    max-width: 100%;

    margin-top: 25px;

    color: #9a9795;

    font-size: 16px;

    line-height: 1.6;
}


/* =========================================
   LISTE DES AVANTAGES
========================================= */

.advantages {
    margin-top: 25px;

    display: flex;
    flex-direction: column;

    gap: 16px;
}


.advantage {
    display: flex;
    align-items: center;

    gap: 14px;
}


.advantage > span {
    flex-shrink: 0;

    color: #c99a2d;

    font-size: 9px;
}


.advantage p {
    margin: 0;

    color: #999694;

    font-size: 15px;

    line-height: 1.4;
}


/* =========================================
   BOUTON
========================================= */

.decision-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    height: 55px;

    min-width: 248px;

    margin-top: 42px;

    padding: 0 30px;

    border-radius: 30px;

    text-decoration: none;

    color: white;

    font-size: 14px;

    font-weight: bold;

    background: linear-gradient(
        180deg,
        #d21d1d,
        #b30e0e
    );

    border: 1px solid #e52a25;

    box-shadow:
        0 8px 25px rgba(190, 20, 20, 0.22);

    transition: 0.3s ease;
}


.decision-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 30px rgba(220, 30, 25, 0.35);
}


/* =========================================
   LOGO À DROITE
========================================= */

.decision-logo {

    width: 40%;

    display: flex;

    align-items: center;

    justify-content: center;
}


.decision-logo img {

    width: 330px;

    max-width: 100%;

    height: auto;

    display: block;

    filter:
        drop-shadow(0 0 18px rgba(180, 20, 20, 0.20));
}


/* =========================================
   TABLETTE
========================================= */

@media (max-width: 900px) {

    .decision-section {
        padding: 60px 5%;
    }

    .decision-content {
        width: 58%;
    }

    .decision-logo {
        width: 38%;
    }

    .decision-logo img {
        width: 270px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 750px) {

    .decision-section {
        padding: 60px 25px;

        flex-direction: column;

        align-items: flex-start;
    }


    .decision-content {
        width: 100%;
    }


    .decision-content h2 {
        font-size: 46px;

        letter-spacing: -2px;
    }


    .decision-description {
        font-size: 14px;
    }


    .advantage p {
        font-size: 14px;
    }


    .decision-logo {
        width: 100%;

        margin-top: 50px;

        justify-content: center;
    }


    .decision-logo img {
        width: 250px;
    }

}

/* =========================================
   SECTION DANS L'ASSEMBLÉE
========================================= */

.rites-section {
    width: 100%;

    padding: 80px 6.5% 90px;

    position: relative;
}


/* =========================================
   EN-TÊTE
========================================= */

.rites-header {
    width: 650px;
    max-width: 100%;

    margin-bottom: 48px;
}


/* PETIT LABEL */

.rites-label {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 20px;

    font-family: monospace;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 1.5px;

    color: #c99a2d;
}


.rites-label span {
    font-size: 9px;
}


/* GRAND TITRE */

.rites-header h2 {
    margin: 0;

    color: #f2efea;

    font-size: clamp(45px, 4.2vw, 64px);

    line-height: 0.98;

    letter-spacing: -3px;

    font-weight: 800;
}


/* DESCRIPTION */

.rites-header p {
    width: 590px;
    max-width: 100%;

    margin-top: 22px;

    color: #969391;

    font-size: 16px;

    line-height: 1.55;
}


/* =========================================
   GALERIE
========================================= */

.rites-gallery {

    width: 100%;

    display: grid;

    grid-template-columns:
        1fr
        1fr
        1fr;

    grid-auto-rows: 300px;

    gap: 12px;
}


/* =========================================
   CARTES
========================================= */

.rite-card {

    position: relative;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.14);

    background: #111;

    cursor: pointer;
}


/* GRANDE IMAGE */

.rite-large {
    grid-column: span 2;
}


/* PETITE IMAGE */

.rite-small {
    grid-column: span 1;
}


/* IMAGE MOYENNE */

.rite-medium {
    grid-column: span 1;
}


/* =========================================
   IMAGE
========================================= */

.rite-card img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.6s ease,
        filter 0.6s ease;
}


/* =========================================
   VOILE NOIR
========================================= */

.rite-overlay {

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 50%;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.9),
            rgba(0, 0, 0, 0)
        );

    pointer-events: none;
}


/* =========================================
   TITRE DE L'IMAGE
========================================= */

.rite-title {

    position: absolute;

    left: 16px;
    bottom: 15px;

    font-family: monospace;

    font-size: 11px;

    font-weight: bold;

    letter-spacing: 1.2px;

    color: #c99a2d;

    z-index: 2;
}


/* =========================================
   EFFET AU SURVOL
========================================= */

.rite-card:hover img {

    transform: scale(1.04);

    filter: brightness(1.08);
}


/* =========================================
   TABLETTE
========================================= */

@media (max-width: 900px) {

    .rites-section {
        padding-left: 5%;
        padding-right: 5%;
    }

    .rites-gallery {
        grid-auto-rows: 250px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .rites-section {

        padding: 60px 25px 70px;
    }


    .rites-header h2 {

        font-size: 45px;

        letter-spacing: -2px;
    }


    .rites-header p {

        font-size: 14px;
    }


    .rites-gallery {

        grid-template-columns: 1fr;

        grid-auto-rows: 260px;

        gap: 10px;
    }


    .rite-large,
    .rite-small,
    .rite-medium {

        grid-column: span 1;
    }

}


/* =========================================
   SECTION TÉMOIGNAGES
========================================= */

.testimonials-section {
    width: 100%;

    padding: 85px 6.5% 100px;

    position: relative;
}


/* =========================================
   EN-TÊTE
========================================= */

.testimonials-header {
    width: 700px;
    max-width: 100%;

    margin: 0 auto 55px;

    text-align: center;
}


/* PETIT LABEL */

.testimonials-label {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

    font-family: monospace;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 1.5px;

    color: #c99a2d;
}


.testimonials-label span {
    font-size: 9px;
}


/* GRAND TITRE */

.testimonials-header h2 {
    margin: 0;

    color: #f2efea;

    font-size: clamp(45px, 4.2vw, 64px);

    line-height: 0.98;

    letter-spacing: -3px;

    font-weight: 800;
}


/* DESCRIPTION */

.testimonials-header p {
    width: 620px;
    max-width: 100%;

    margin: 22px auto 0;

    color: #969391;

    font-size: 16px;

    line-height: 1.55;
}


/* =========================================
   GRILLE
========================================= */

.testimonials-grid {

    width: 100%;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}


/* =========================================
   CARTE
========================================= */

.testimonial-card {

    min-height: 232px;

    padding: 30px 28px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    background: rgba(8, 8, 8, 0.48);

    border: 1px solid rgba(255, 255, 255, 0.14);

    transition:
        border-color 0.3s ease,
        background 0.3s ease;
}


/* CARTE MISE EN AVANT */

.testimonial-card.featured {

    border-color: rgba(194, 151, 43, 0.65);

    background: rgba(15, 12, 8, 0.5);
}


.testimonial-card:hover {

    border-color: rgba(255, 255, 255, 0.3);

    background: rgba(15, 15, 15, 0.6);
}


/* =========================================
   TEXTE
========================================= */

.testimonial-text {

    margin: 0;

    color: #d0cecb;

    font-size: 16px;

    line-height: 1.6;

    font-weight: 500;
}


/* =========================================
   MEMBRE
========================================= */

.member {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 28px;
}


/* PHOTO */

.member-photo {

    width: 48px;
    height: 48px;

    flex-shrink: 0;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            #777 0%,
            #444 50%,
            #171717 100%
        );

    border: 1px solid rgba(255, 255, 255, 0.2);

    color: #eeeeee;

    font-family: Arial, sans-serif;

    font-size: 11px;

    font-weight: bold;

    filter: grayscale(100%);
}


/* NOM */

.member-info {

    display: flex;

    flex-direction: column;

    gap: 5px;
}


.member-info strong {

    color: #eeeeee;

    font-size: 14px;

    font-weight: 700;
}


/* PROFESSION */

.member-info span {

    color: #777472;

    font-family: monospace;

    font-size: 9px;

    letter-spacing: 1px;
}


/* =========================================
   TABLETTE
========================================= */

@media (max-width: 950px) {

    .testimonials-section {

        padding-left: 5%;
        padding-right: 5%;
    }


    .testimonials-grid {

        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .testimonials-section {

        padding: 60px 25px 70px;
    }


    .testimonials-header h2 {

        font-size: 45px;

        letter-spacing: -2px;
    }


    .testimonials-header p {

        font-size: 14px;
    }


    .testimonials-grid {

        grid-template-columns: 1fr;

        gap: 12px;
    }


    .testimonial-card {

        min-height: 220px;

        padding: 25px 22px;
    }


    .testimonial-text {

        font-size: 15px;
    }

}


/* =========================================
   DERNIER APPEL
========================================= */

.final-call {
    width: 100%;
    min-height: 520px;

    padding: 95px 25px 100px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    position: relative;
}


/* =========================================
   LABEL
========================================= */

.final-label {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 25px;

    font-family: monospace;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 1.5px;

    color: #c99a2d;
}

.final-label span {
    font-size: 9px;
}


/* =========================================
   TITRE
========================================= */

.final-call h2 {
    margin: 0;

    color: #f3f0eb;

    font-size: clamp(48px, 5vw, 70px);

    line-height: 0.98;

    letter-spacing: -3px;

    font-weight: 800;
}


/* TEXTE ORANGE */

.final-call h2 span {
    background: linear-gradient(
        90deg,
        #e9a42d,
        #d84922,
        #bd1919
    );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


/* =========================================
   DESCRIPTION
========================================= */

.final-call p {
    margin-top: 28px;

    color: #969391;

    font-size: 16px;

    line-height: 1.55;
}


/* =========================================
   BOUTON
========================================= */

.final-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 198px;

    height: 54px;

    margin-top: 28px;

    padding: 0 30px;

    border-radius: 30px;

    text-decoration: none;

    color: #ffffff;

    font-size: 14px;

    font-weight: bold;

    background: linear-gradient(
        180deg,
        #d21d1d,
        #b30e0e
    );

    border: 1px solid #e52a25;

    box-shadow:
        0 8px 28px rgba(190, 20, 20, 0.28);

    transition: 0.3s ease;
}


.final-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 35px rgba(220, 30, 25, 0.4);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .final-call {
        min-height: 450px;

        padding: 70px 25px;
    }


    .final-call h2 {
        font-size: 45px;

        letter-spacing: -2px;
    }


    .final-call p {
        font-size: 14px;
    }


    .final-call p br {
        display: none;
    }

}

/* =========================================
   PIED DE PAGE
========================================= */

.site-footer {
    width: 100%;

    min-height: 340px;

    padding: 55px 25px 45px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    border-top: 1px solid rgba(255, 255, 255, 0.15);

    background: rgba(5, 5, 5, 0.25);
}


/* =========================================
   LOGO
========================================= */

.footer-logo img {
    width: 105px;
    height: 105px;

    object-fit: contain;

    display: block;

    filter:
        drop-shadow(0 0 12px rgba(180, 20, 20, 0.25));
}


/* =========================================
   LOSANGES
========================================= */

.footer-symbols {
    display: flex;
    align-items: center;

    gap: 25px;

    margin-top: 17px;
}


.footer-symbols span {
    color: #c99a2d;

    font-size: 8px;
}


/* =========================================
   TEXTE
========================================= */

.footer-text {
    margin-top: 22px;

    color: #858281;

    font-size: 13px;

    line-height: 1.55;

    font-weight: 400;
}


/* =========================================
   NAVIGATION
========================================= */

.footer-navigation {
    display: flex;
    align-items: center;

    justify-content: center;

    gap: 28px;

    margin-top: 25px;
}


.footer-navigation a {
    text-decoration: none;

    color: #5f5c5a;

    font-family: monospace;

    font-size: 10px;

    font-weight: bold;

    letter-spacing: 1.4px;

    transition: 0.3s ease;
}


.footer-navigation a:hover {
    color: #c99a2d;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .site-footer {
        min-height: 380px;

        padding: 50px 20px 40px;
    }


    .footer-logo img {
        width: 90px;
        height: 90px;
    }


    .footer-text {
        max-width: 350px;

        font-size: 12px;
    }


    .footer-text br {
        display: none;
    }


    .footer-navigation {
        flex-wrap: wrap;

        gap: 18px 25px;

        max-width: 350px;
    }

}


/* =========================================
   LOGO D'ARRIÈRE-PLAN EN ROTATION
========================================= */

.rotating-logo-background {
    position: fixed;

    top: 50%;
    left: 50%;

    width: 650px;
    height: 650px;

    transform: translate(-50%, -50%);

    display: flex;
    align-items: center;
    justify-content: center;

    pointer-events: none;

    z-index: 0;

    opacity: 0.35;
}


.rotating-logo-background img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;

    animation: rotation-logo 35s linear infinite;

    /* Rend le logo noir beaucoup plus visible */
    filter:
        brightness(2.5)
        contrast(1.3)
        drop-shadow(0 0 12px rgba(255, 255, 255, 0.12));
}


@keyframes rotation-logo {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


.rotating-logo-background img {

    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;

    animation: rotation-logo 35s linear infinite;

    filter:
        drop-shadow(0 0 20px rgba(180, 20, 20, 0.15));
}


/* ROTATION LENTE ET CONTINUE */

@keyframes rotation-logo {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


/* =========================================
   LE CONTENU RESTE AU-DESSUS DU LOGO
========================================= */

.hero,
.cards-section,
.decision-section,
.rites-section,
.testimonials-section,
.final-call,
.site-footer {

    position: relative;

    z-index: 1;
}


/* =========================================
   ADAPTATION MOBILE
========================================= */

@media (max-width: 700px) {

    .rotating-logo-background {

        width: 380px;
        height: 380px;

        opacity: 0.13;
    }

}


/* =========================================
   CENTRAGE SUR MOBILE
========================================= */

@media (max-width: 750px) {

    /* GRAND TITRE DU HAUT */

    .hero {
        align-items: center;
    }

    .hero h1 {
        width: 100%;
        text-align: center;
    }

    .invitation {
        justify-content: center;
        text-align: center;
    }

    .description {
        text-align: center;
    }


    /* BOUTONS DU HAUT */

    .buttons {
        width: 100%;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: auto;
    }


    /* BOUTON "DÉPOSER MA CANDIDATURE" */

    .decision-button {
        align-self: center;
    }


    /* BOUTON "PRENDRE MA PLACE" */

    .final-button {
        align-self: center;
        margin-left: auto;
        margin-right: auto;
    }

}

@media (max-width: 750px) {
    .decision-button {
        display: flex;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
}