@font-face {
    font-family: "Jura";
    src: url("fonts/Jura-Light.ttf") format("truetype");
    font-weight: 200;
}

@font-face {
    font-family: "Jura";
    src: url("fonts/Jura-Regular.ttf") format("truetype");
    font-weight: 300;
}

@font-face {
    font-family: "Jura";
    src: url("fonts/JuraBook.ttf") format("truetype");
    font-weight: 400;
}

@font-face {
    font-family: "Jura";
    src: url("fonts/Jura-Medium.ttf") format("truetype");
    font-weight: 600;
}

@font-face {
    font-family: "Jura";
    src: url("fonts/Jura-SemiBold.ttf") format("truetype");
    font-weight: 700;
}

@font-face {
    font-family: "Jura";
    src: url("fonts/Jura-Bold.ttf") format("truetype");
    font-weight: 800;
}

* {
    box-sizing: border-box;
}

body {
    font-weight: 400;
    font-size: 16px;
    font-family: "Jura", sans-serif;
    color: rgba(0, 0, 0, .87);
    line-height: 1.8;
}

/* Supprimer le fond et la bordure du formulaire */


.logo-container {
    background-color: #FFF6E8;
    padding-top: 20px;
}

body h1 {
    font-family: 'Source Sans Pro', sans-serif;
    Font-size: 10px;
    Font-weight: 600;
}


.logo {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;

}

.top-header-info {
    background-color: #f5e8d0;
    /* beige clair */
    overflow: hidden;
    white-space: nowrap;
    padding: 8px 0;
    border-bottom: 1px solid #ccc;
}

.scrolling-text {
    display: flex;
    align-items: center;
    overflow: hidden;
    font-size: 1.1rem;
    /* augmente la taille du texte */
    font-weight: 500;
    /* rend le texte plus lisible */
    letter-spacing: 0.5px;
}

.scrolling-content {
    display: inline-flex;
    gap: 50px;
    /* espace entre les éléments */
    animation: scroll-left 20s linear infinite;
}

.topbar-item {
    display: flex;
    align-items: center;
    color: #333;
    font-weight: 500;
    gap: 5px;
}

.icon {
    fill: currentColor;
}

/* Animation du défilement horizontal */
@keyframes scroll-left {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}


.custom-bg-footer {
    background-color: #365292;
}

.nav-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    background-color: #FFF6E8;
    padding: 20px;
}

.nav-item {
    color: #365292cd;
    text-decoration: none;
    margin: 10px, 150px;
    font-weight: 800;
    font-size: 30px;
    transition: opacity 0.3s, text-decoration 0.3s;
}

.nav-item:hover {
    opacity: 1;
    color: #365292;
    font-size: 31px;
    text-decoration: none;
}

/* Conteneur principal : couleur de fond sombre, texte blanc, padding */
.top-header-info {
    /*background: linear-gradient(to right, #222, #333); /* effet gradient */
    background-color: #FFF6E8;
    color: FFFFFF;
    padding: 10px 0;
    font-size: 10px;
}

/* Conteneur des infos : flex pour affichage en ligne */
.top-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    gap: 10px;
}

/* Élément individuel (email ou téléphone) */
.topbar-item {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

/* Icône SVG */
.icon {
    vertical-align: middle;
    fill: white;
}


/* Bannière principale */
.banniere {
    /*background: linear-gradient(to right, #444, #222); /* ou une image si tu veux */
    background: #ffffff;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

/* Conteneur centré avec largeur maximale */
.banniere-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Titre principal */
.h1-title {
    font-size: 1.70rem;
    margin: 0;
    font-weight: 800;
}

/* Effet contour ou stroke sur le texte */
.title-h1-stroke-text {
    color: #365292;

}

.img-banniere {
    width: auto;
    overflow: hidden;
    /* évite le débordement */
}

.img-banniere img {
    width: 100%;
    /* prend toute la largeur de l'écran */
    /*height: auto;       /* garde les proportions naturelles */
    display: block;
    /* évite les petits espaces en bas (élément inline par défaut) */
    object-fit: cover;
    /* si tu veux qu'elle remplisse son conteneur */
}

/* Conteneur global */
.aboutme-container {
    background-color: #ffffff;
    padding: 60px 20px;
}

/* Contenu centré */
.aboutme-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.aboutme-content h2 {
    color: #365292;
}

/* Titre principal */
.aboutme-title {
    text-align: justify;
    font-size: 1.5rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Paragraphe descriptif */
.aboutme-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #727272;
    margin-bottom: 30px;
}

.aboutme-block {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
    /* important pour forcer le passage en colonne sur mobile */
}

/* Image par défaut à gauche */
.aboutme-image {
    width: 40%;
    max-width: 300px;
    height: auto;
    flex-shrink: 0;
}

/* Texte */
.aboutme-title {
    flex: 1;
    font-size: 1.5rem;
    line-height: 1.6;
    color: #333;
}

.subtitle-desc{
     font-size: 1.1rem;
}

/* Version mobile : image en dessous */
@media (max-width: 768px) {
    .aboutme-block {
        flex-direction: column-reverse;
        text-align: center;
        /* optionnel */
    }

    .aboutme-image {
        width: 80%;
        margin-top: 20px;
    }
}

.reassure-block {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
    /* important pour forcer le passage en colonne sur mobile */
}


/* Lien vers la page contact */
.link-contact {
    color: #365292;
    text-decoration: underline;
}

.link-aboutme {
    color: #ffffff;
    text-decoration: none;
}

/* Bouton */
.card-btn-see-more {
    display: inline-block;
    padding: 12px 24px;
    background-color: #365292;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.drapeau-fr {
    margin-left: 8px;
    vertical-align: middle;
    height: 0.5em;
    width: auto;
}

.card-btn-see-more:hover {
    background-color: #365292cd;
}


.form-container {
    padding: 0 20px;
}


form {
    padding: 2cqi;
    background-color: rgb(255, 255, 255);
    color: #000000;
    max-width: 1000px;
    font-size: 20px;
    margin: 0 auto;
}


.customFormTitle {
    color: white;
    background-color: #365292;
    border: solid 2px #365292;
    border-radius: 20px 20px 0px 0px;
}

.customForm {
    background-color: #ffffff;
    border: solid 2px #365292;
    border-radius: 0px 0px 20px 20px;
    margin-bottom: 0px;
}

.formulaire-input-container {
    padding: 20px;
}

.formulaire-input-container>* {
    margin: 10px 0;
}

.intput-firstname-container {
    margin-top: 10px;
}

.label-id {
    text-transform: uppercase;
}

.input-id {
    height: 23px;
    margin-left: 5px;
    border: none;
    border-radius: 5px;
}

.input-radio-container {
    text-transform: uppercase;
}

.text-area-label {
    text-transform: uppercase;
    text-decoration: underline;
    display: block;
    margin-bottom: 10px;
}

.text-area-input {
    border: none;
    border-radius: 5px;
    width: 100%;
    height: 200px;
}

.custom-bg {
    background-color: #FFF6E8;
}

.custom-text {
    color: #365292;
    margin: 20px, 0px;
    padding: 20px, 0px;
}

.partenaire-container .small-block {
    display: block;
    margin-top: var(--space);
    margin-left: auto;
    margin-right: auto;
    height: 150px;
    width: 150px;
}

.partenaire-container .small-block img {
    display: block;
    width: 100%;
    height: 100%;
}

.custom-card {
    width: 15rem;
    height: 15rem;
    /* carré */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* espace entre contenu */
}

.custom-card img {
    max-height: 80px;
    /* ajuste la taille de l’icône */
    object-fit: contain;
    margin: 10px auto;
}


.carousel-icon {
    width: 200px;
    /* taille fixe pour les icônes */
    height: 200px;
    object-fit: contain;
    margin: auto;
    /* centre l’image */
}

.carousel {
    max-width: 200px;
    /* largeur du carrousel */
    margin: 0 auto;
    /* centre le carrousel */
    position: relative;
    /* permet de placer les flèches correctement */
}

.carousel-control-prev,
.carousel-control-next {
    width: 30px;
    /* réduit la zone cliquable */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 50px 50px;
    /* icônes plus petites */
    filter: invert(1);
    /* rend les flèches noires sur fond clair */
}