/* --------------------------------------- */
/* ---------- MOBILE XS - 300px ---------- */
@media (min-width:1px) {
    main {
        background: #ffffff;
        overflow-x: hidden;
        max-width: 2400px;
        margin: 0 auto;
    }

    /* -- section hero banner -- */ @media screen, print {

        /* Conteneur section hero banner */
        #Section_voyageur_hero {
            position: relative;
            background-image: url(../img/hero-info-voyageur.jpg);
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            padding: 0 30px 85px 30px;
            display: flex;
            align-items: end;
            justify-content: center;
            width: 100%;
            min-height: 400px;
            height: calc(100vh - var(--navbar-height) - 3vh);
            overflow: visible;
        }

        /* Conteneur intermédiaire pour le titre */
        .svh--content-wrapper {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        /* Titre de la page/section */
        .svh--sec-ttr {
            font-family: 'Teko', sans-serif;
            font-size: 48px;
            font-weight: 600;
            text-align: center;
            color: #ffffff;
            text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.25);
            margin: 0;
            line-height: 1;
        }

        /* Sous-titre */
        .svh--sec-sub-ttr {
            font-family: 'Cabin', sans-serif;
            font-size: 20px;
            font-weight: 600;
            text-align: center;
            color: #ffffff;
            margin: 0;
            text-shadow: 0px 1px 5px rgb(0 0 0 / 25%);
        }

        /* Conteneurs de bulles décoratives */
        .svh--bulles {
            position: absolute;
            z-index: 0;
            height: auto;
            
        }

        /* Groupe de bulle décorative n°1 */
        #Hero_bulles_01 {
            top: -20px;
            left: -30px;
            width: 25%;
            max-width: 200px;
            max-height: 33%;
        }

        /* Groupe de bulle décorative n°2 */
        #Hero_bulles_02 {
            bottom: -20px;
            right: -30px;
            width: 24%;
            max-width: 180px;
            max-height: 33%;
        }

    } /* -- FIN section hero banner -- */

    /* -- section résumé fonctionnalités -- */ @media screen, print {

        /* Conteneur de la section */
        #Section_resume_features {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 20px;
            padding: 50px 30px 100px 30px;
            background: #ffffff;
            overflow-x: hidden;
        }

        /* Bloc qui contient le visuel de la section */
        .srf--bloc-visuel {
            order: 1;
            min-width: 260px;
            width: 100%;
            max-width: 500px;
        }

        /* Animation lottie */
        #lottie-services-bus {
            width: 100%;
            height: auto;
        }

        /* Bloc qui contient le texte de la section */
        .srf--bloc-txt {
            order: 2;
            max-width: 500px;
        }

    } /* -- FIN section résumé fonctionnalités -- */

    /* -- section détail des services -- */ @media screen, print {

        /* Conteneur de la section */
        #Section_detail_services {
            background-color: var(--noir-clair);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 50px;
            padding: 50px 30px 100px 30px;
        }

        /* Conteneur des éléments qui parle d'un service en détail */
        .sdc--bloc-service {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        /* Conteneur de l'image */
        .sdc--visuel-service {
            width: 100%;
            max-width: 580px;
        }

        /* Image d'illustration */
        .sdc--visuel-service img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0px 2px 7px 3px rgba(255, 255, 255, 0.08);
        }

        /* Conteneur des textes */
        .sdc--txt-grp {
            display: flex;
            flex-direction: column;
            gap: 5px;
            flex-grow: 1;
            max-width: 600px;
        }

        /* Liste à puces */
        .sdc--bullet-list {
            margin: 5px 0 0 0;
            padding-inline-start: 20px;
        }

        .sdc--bullet-list li {
            margin: 0!important;
        }


    } /* -- FIN section détail des services -- */

    /* -- section catégories annonces voyageur -- */ @media screen, print {

        #Section_info_cat_voyageur {
            background: var(--secondary);
            padding: 50px 30px 60px 30px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Conteneur intermédiaire */
        .sicv--wrapper {
            display: flex;
            flex-direction: column;
            align-items: start;
            gap: 25px;
        }

        /* Bloc du texte desktop de la section */
        .sicv--txt-grp {
            max-width: 600px;
        }

        /* Conteneur des textes de chaque catégorie sur desktop */
        .sicv--paragraph-bloc {
            display: none;
            flex-direction: column;
        }

        /* Bloc de texte de base */
        #Base_txt_bloc_sicv {
            display: flex;
        }

        /* Conteneur accordéon */
        #Info_cat_accord {
            display: flex;
            flex-direction: column;
            border-color: var(--gris);
            --bs-accordion-border-color: var(--gris);
            font-family: 'Cabin', sans-serif;
            font-size: 17px;
            font-weight: 500;
            color: var(--noir-texte);
            width: 100%;
            max-width: 600px;
        }

        #Info_cat_accord .accordion-button {
            padding: 15px 45px 15px 20px;
            transition: none!important;
        }

        /* Masquer l'icone par défaut des boutons d'accordéon */
        #Info_cat_accord .accordion-button::after {
            display: none;
        }

        /* Effet survol volet accordéon */
        .accordion-button:hover {
            background: var(--gris-contraste);
        }

        /* Effet de focus volet accordéon */
        .accordion-button:focus {
            border-color: #ffffff00;
            box-shadow: none;
            background: var(--gris-contraste);
        }

        /* Icone désignant la catégorie */
        .accordion-button .icon-accord {
            --size:22px;
            width: var(--size);
            height: var(--size);
            background-color: var(--noir-texte);
            margin-right: 7px;
        }

        /* Icone fermée volet accordéon */
        .accord-toggle-ico {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            --size:14px;
            width: var(--size);
            height: var(--size);
            -webkit-mask-image: url(../svg/ico-plus.svg);
            mask-image: url(../svg/ico-plus.svg);
            background-color: var(--secondary);
            transition: transform 0.3s ease-in-out;
        }

        /* Icone quand le volet est ouvert */
        .accordion-button.active .accord-toggle-ico {
            background-color: #ffffff;
            transform: translateY(-50%) rotate(-45deg);
        }

        /*  */
        .accordion-body {
            color: #ffffff;
            font-family: 'Cabin', sans-serif;
            font-size: 16px;
            font-weight: 500;
            background-color: var(--noir-clair);
        }

        /* Arrondi spécifique sur le dernier volet de l'accordéon */
        .accordion-item:last-of-type .accordion-body {
            border-bottom-right-radius: 5px;
            border-bottom-left-radius: 5px;
        }

        /* Règles générales bouton actif */
        .accordion-button.active {
            color: #ffffff;
        }

        .accordion-button.active .icon-accord {
            background-color: #ffffff;
        }

        /* --- Règles spécifiques volet "emploi" --- */

        /* Bouton volet */
        .accordion-button[switch-tag="emploi"].active {
            background-color: var(--cat-emploi-dark);
        }

        .accordion-button[switch-tag="emploi"] .icon-accord {
            -webkit-mask-image: url(../svg/ico-emploi.svg);
            mask-image: url(../svg/ico-emploi.svg);
        }

        .accordion-collapse[switch-tag="emploi"] .accordion-body {
            background-color: var(--cat-emploi);
        }

        #Info_cat_accord:has(.accordion-button[switch-tag="emploi"].active) {
            --bs-accordion-border-color: var(--cat-emploi);
        }

        /* --- Règles spécifiques volet "bon plan" --- */

        /* Bouton volet */
        .accordion-button[switch-tag="bonplan"].active {
            background-color: var(--cat-affaire-dark);
        }

        .accordion-button[switch-tag="bonplan"] .icon-accord {
            -webkit-mask-image: url(../svg/ico-affaire.svg);
            mask-image: url(../svg/ico-affaire.svg);
        }

        .accordion-collapse[switch-tag="bonplan"] .accordion-body {
            background-color: var(--cat-affaire);
        }

        #Info_cat_accord:has(.accordion-button[switch-tag="bonplan"].active) {
            --bs-accordion-border-color: var(--cat-affaire);
        }

        /* --- Règles spécifiques volet "sortie" --- */

        /* Bouton volet */
        .accordion-button[switch-tag="sortie"].active {
            background-color: var(--cat-event-dark);
        }

        .accordion-button[switch-tag="sortie"] .icon-accord {
            -webkit-mask-image: url(../svg/ico-event.svg);
            mask-image: url(../svg/ico-event.svg);
        }

        .accordion-collapse[switch-tag="sortie"] .accordion-body {
            background-color: var(--cat-event);
        }

        #Info_cat_accord:has(.accordion-button[switch-tag="sortie"].active) {
            --bs-accordion-border-color: var(--cat-event);
        }

        /*  */
        .accordion:last-child {
            border-radius: 0 0 5px 5px;
        }

        /* -- Conteneur zone boutons switch catégorie desktop -- */
        .sicv--desk-btn-grp {
            display: none;
            flex-direction: column;
            gap: 20px;
            flex-grow: 1;
            max-width: 550px;
        }

        /* Phrase qui accompagne les boutons switch desktop */
        .btn-switch-instruction {
            font-family: 'Cabin', sans-serif;
            font-size: 16px;
            font-weight: 600;
            color: #ffffff;
            text-align: center;
            margin: 0;
        }

        /* Conteneur des boutons desktop */
        .btn-switch-container {
            display: flex;
            flex-direction: row;
            justify-content: center;
            gap: 20px;
        }

        /* Bouton switch catégorie */
        .btn-switch-element {
            padding: 12px 10px;
            background: #ffffff;
            box-shadow: 0px 1px 10px rgba(0, 0, 0, .1);
            width: 110px;
            min-height: 85px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            border-radius: 6px;
            gap: 3px;
        }

        /* Texte du bouton switch */
        .btn-switch-element p {
            text-align: center;
            font-family: 'Cabin', sans-serif;
            font-size: 14px;
            color: var(--noir-texte);
            margin: 0 auto;
            font-weight: 500;
            line-height: 1.2;
            width: 100%;
        }

        /* Icones des boutons switch */
        .btn-switch-element .mask-ico {
            --size:28px;
            width: var(--size);
            height: var(--size);
            background-color: var(--noir-texte);
            display: block;
            background-repeat: no-repeat;
            background-position: center;
        }

        /* Règles spécifiques au bouton "emploi" */
        #ico-switch-emploi {
            -webkit-mask-image: url(../svg/ico-emploi.svg);
            mask-image: url(../svg/ico-emploi.svg);
        }

        #btn-switch-emploi:hover p, #btn-switch-emploi.active p {
            color: var(--cat-emploi);
        }

        #btn-switch-emploi:hover #ico-switch-emploi, #btn-switch-emploi.active #ico-switch-emploi {
            background-color: var(--cat-emploi);
        }

        /* Règles spécifiques au bouton "bon plan" */
        #ico-switch-affaire {
            -webkit-mask-image: url(../svg/ico-affaire.svg);
            mask-image: url(../svg/ico-affaire.svg);
        }

        #btn-switch-affaire:hover p, #btn-switch-affaire.active p {
            color: var(--cat-affaire);
        }

        #btn-switch-affaire:hover #ico-switch-affaire, #btn-switch-affaire.active #ico-switch-affaire {
            background-color: var(--cat-affaire);
        }

        /* Règles spécifiques au bouton "sortie" */
        #ico-switch-event {
            -webkit-mask-image: url(../svg/ico-event.svg);
            mask-image: url(../svg/ico-event.svg);
        }

        #btn-switch-event:hover p, #btn-switch-event.active p {
            color: var(--cat-event);
        }

        #btn-switch-event:hover #ico-switch-event, #btn-switch-event.active #ico-switch-event {
            background-color: var(--cat-event);
        }
    } /* -- FIN section catégories annonces voyageur -- */

    /* -- section call to action fin de page -- */ @media screen, print {

        /* Conteneur section */
        #Section_endpage_cta_voyageur {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 20px;
            padding: 50px 30px 100px 30px;
            background: var(--gris-background);
        }

        /* Grille de fond */
        .secv--backgrid {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: url(../svg/dashgrid01.svg);
            z-index: 0;
            background-size: 1000px;
            opacity: 0.7;
            pointer-events: none;
        }

        /* Titre */
        #Section_endpage_cta_voyageur .section-base-ttr {
            text-align: center;
            z-index: 1;
            font-size: 40px;
        }

        /* Conteneur intermédiaire pour les blocs CTA */
        .secv--cta-wrapper {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        /* Conteneur bloc CTA */
        .secv--cta-bloc {
            /* layout */
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: end;
            padding: 25px;

            /* taille */
            width: 100%;
            max-width: 350px;
            aspect-ratio: 1/1;

            /* apparence */
            background: var(--gris);
            border-radius: 10px;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.15);
            overflow: hidden;
        }

        /* Nécessaire pour le gradient */
        .secv--cta-bloc * {
            z-index: 1;
        }

        /* Dégradé noir de contraste bloc CTA */
        .secv--cta-gradient {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 75%;
            background: linear-gradient(180deg, rgba(0,0,0,0) 4%, rgba(0,0,0,0.9) 49%);
            z-index: 0!important;
        }

        /* Titre de bloc CTA */
        .secv--cta-ttr {
            font-family: 'Teko', sans-serif;
            font-size: 38px;
            font-weight: 500;
            color: #ffffff;
            line-height: 1.0;
            margin-bottom: 8px;
        }

        /* Paragraphes des blocs CTA */
        .secv--cta-txt {
            font-family: 'Cabin', sans-serif;
            font-size: 16px;
            font-weight: 400;
            color: #ffffff;
        }

        /* Règles spécifiques bloc CTA "Explorer une ligne" */
        #CTA_explorer_ligne_voyageur {
            background-image: url(../img/info-voyageur-cta-explorer.jpg);
        }

        /* Règles spécifiques bloc CTA "Créer un compte" */
        #CTA_creer_compte_voyageur {
            background-image: url(../img/info-voyageur-cta-compte.jpg);
        }

    } /* -- FIN section call to action fin de page -- */
}




/* ----------------------------------------- */
/* ---------- TABLETTE MD - 768px ---------- */
@media (min-width:768px) {

    /* -- section call to action fin de page -- */ @media screen, print {

        /* Titre */
        #Section_endpage_cta_voyageur .section-base-ttr {
            font-size: 46px;
        }

        /* Conteneur intermédiaire pour les blocs CTA */
        .secv--cta-wrapper {
            flex-direction: row;
        }

    } /* -- FIN section call to action fin de page -- */

}



/* -------------------------------------- */
/* ---------- ECRAN LG - 992px ---------- */
@media (min-width:992px) {

    /* -- section hero banner -- */ @media screen, print {

        /* Conteneur section hero banner */
        #Section_voyageur_hero {
            padding: 0 30px 0px 30px;
            align-items: center;
            height: calc(100vh - var(--navbar-height));
        }

        /* Titre de la page/section */
        .svh--sec-ttr {
            font-size: 82px;
        }

        /* Sous-titre */
        .svh--sec-sub-ttr {
            font-size: 25px;
        }

        /* Conteneurs de bulles décoratives */
        .svh--bulles {
            /* max-width: 250px; */
        }

        /* Groupe de bulle décorative n°1 */
        #Hero_bulles_01 {
            top: 20px;
            left: 40px;
            width: 30%;
            max-width: 250px;
            max-height: 40%;
        }

        /* Groupe de bulle décorative n°2 */
        #Hero_bulles_02 {
            bottom: -20px;
            right: 40px;
            width: 28%;
            max-width: 230px;
            max-height: 40%;
        }

    } /* -- FIN section hero banner -- */

    /* -- section résumé fonctionnalités -- */ @media screen, print {

        #Section_resume_features {
            flex-direction: row;
            padding: 85px 30px 100px 30px;
            gap: 50px;
        }

        .srf--bloc-visuel {
            order: 2;
            max-width: 450px;
        }

        /* Bloc qui contient le texte de la section */
        .srf--bloc-txt {
            order: 1;
            max-width: 600px;
        }

    } /* -- FIN section résumé fonctionnalités -- */

    /* -- section détail des services -- */ @media screen, print {

        /* Conteneur de la section */
        #Section_detail_services {
            gap: 80px;
            padding: 105px 30px 120px 30px;
        }

        /* Conteneur des éléments qui parle d'un service en détail */
        .sdc--bloc-service {
            flex-direction: row;
            flex-wrap: nowrap;
            gap: 60px;
        }

        /* Conteneur des textes */
        .sdc--txt-grp {
            width: 600px;
        }

    } /* -- FIN section détail des services -- */

    /* -- section catégories annonces voyageur -- */ @media screen, print {

            #Section_info_cat_voyageur {
                padding: 140px 30px 160px 30px;
                transition: background 0.8s ease-out;
            }

            /* Changer la couleur de fond de la section en fonction de la catégorie active */
            #Section_info_cat_voyageur[switch-tag="base"] {
                background-color: var(--secondary);
            }

            #Section_info_cat_voyageur[switch-tag="emploi"] {
                background-color: var(--cat-emploi);
            }

            #Section_info_cat_voyageur[switch-tag="bonplan"] {
                background-color: var(--cat-affaire);
            }

            #Section_info_cat_voyageur[switch-tag="sortie"] {
                background-color: var(--cat-event);
            }

            .sicv--wrapper {
                flex-direction: row;
                gap: 50px;
            }

            /* Conteneur des textes de chaque catégorie sur desktop */
            .sicv--paragraph-bloc {
                display: flex;
            }
        
            /* Masquer le texte non actif */
            .sicv--paragraph-bloc.hide {
                display: none!important;
            }
        
            /* Conteneur accordéon */
            #Info_cat_accord {
                display: none;
            }

            .sicv--desk-btn-grp {
                display: flex;
            }
        
    } /* -- FIN section catégories annonces voyageur -- */

    /* -- section call to action fin de page -- */ @media screen, print {

        /* Conteneur section */
        #Section_endpage_cta_voyageur {
            padding: 85px 30px 100px 30px;
        }

        /* Grille de fond */
        .secv--backgrid {
            opacity: 0.5;
            background-size: 1300px;
        }

        /* Titre */
        #Section_endpage_cta_voyageur .section-base-ttr {
            font-size: 52px;
        }

        /* Conteneur bloc CTA */
        .secv--cta-bloc {
            max-width: 440px;
        }

        /* Dégradé noir de contraste bloc CTA */
        .secv--cta-gradient {
            height: 52%;
        }

    } /* -- FIN section call to action fin de page -- */
}



/* --------------------------------------------- */
/* ---------- ECRAN MOYEN XL - 1200px ---------- */
@media (min-width:1200px) {


    /* -- section résumé fonctionnalités -- */ @media screen, print {

        #Section_resume_features {
            gap: 80px;
        }

        .srf--bloc-visuel {
            max-width: 600px;
        }

    } /* -- FIN section résumé fonctionnalités -- */

    /* -- section catégories annonces voyageur -- */ @media screen, print {

        #Section_info_cat_voyageur {
            padding: 170px 30px 200px 30px;
        }

        /* Phrase qui accompagne les boutons switch desktop */
        .btn-switch-instruction {
            font-size: 17px;
        }

        /* Conteneur des boutons desktop */
        .btn-switch-container {
            gap: 30px;
        }

        /* Bouton switch catégorie */
        .btn-switch-element {
            width: 125px;
            min-height: 105px;
        }

        /* Texte du bouton switch */
        .btn-switch-element p {
            font-size: 15px;
        }

        .btn-switch-element .mask-ico {
            --size: 38px;
        }

    } /* -- FIN section catégories annonces voyageur -- */
}



/* ---------------------------------------------- */
/* ---------- ECRAN LARGE XXL - 1400px ---------- */
@media (min-width:1400px) {
    
    /* -- section hero banner -- */ @media screen, print {

        /* Titre de la page/section */
        .svh--sec-ttr {
            font-size: 112px;
        }

        /* Sous-titre */
        .svh--sec-sub-ttr {
            font-size: 28px;
        }

        /* Conteneurs de bulles décoratives */
        .svh--bulles {
            max-width: 250px;
        }

    } /* -- FIN section hero banner -- */

    /* -- section résumé fonctionnalités -- */ @media screen, print {

        #Section_resume_features {
            gap: 125px;
        }

    } /* -- FIN section résumé fonctionnalités -- */

    /* -- section détail des services -- */ @media screen, print {


    } /* -- FIN section détail des services -- */

    /* -- section catégories annonces voyageur -- */ @media screen, print {

        .sicv--wrapper {
            gap: 125px;
        }
        
    } /* -- FIN section catégories annonces voyageur -- */

    /* -- section call to action fin de page -- */ @media screen, print {

        #Section_endpage_cta_voyageur .section-base-ttr {
            font-size: 58px;
        }

    } /* -- FIN section call to action fin de page -- */

    
}

/* ---------------------------------------------- */
/* ---------- EXCEPTION XXXL - 1700px ---------- */
@media (min-width:1700px) {


    
}

/* ---------------------------------------------- */
/* ---------- EXCEPTION - 2400px ---------- */
@media (min-width:2400px) {

    
}
