/* FONT */

@font-face {
    font-family: "Domaine Display";
    src: url("/fonts/test-domaine-sans-display-bold.woff2") format("truetype");
    src: url("/fonts/domaine-sans-display-black.woff2") format("truetype");
    src: url("/fonts/TestDomaineDisplay-Bold.otf") format("truetype");
    /* Ajoutez d'autres formats de police si nécessaire */
}


html {
    scroll-behavior: smooth;
}



/* MENU HAMB */


.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {

    padding-left: 0 !important;
    padding-right: 0 !important;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #fff;
}
.logo {
    font-weight: bold;
}
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100%;
    background-color: #f0f4f7;
    transition: right 0.3s ease-in-out;
    padding-top: 100px;
    flex-direction: column;
    justify-content: center;
    z-index: 1000;
}
.nav-menu.active {
    right: 0;
}
.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;

}
.nav-links li {
    margin: 1.5rem 0;
    text-align: center;
}
.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;

}
.burger {
    display: block;
    cursor: pointer;
    z-index: 2000;
}
.burger div {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px;
    transition: all 0.3s ease;
}
.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2 {
    opacity: 0;
}
.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}


/* Style de base pour le lien */
a.underline-center {
    color: #333;
    text-decoration: none;
    position: relative;
    padding-bottom: 1px;
    transition: color 0.3s ease;
}

/* Effet de soulignement centré */
.underline-center::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    bottom: -4px;
    left: 25%; /* Pour centrer le soulignement */
    background-color: #000000;
    color: #000000;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.6s ease;
}

.underline-center:hover::after {
    transform: scaleX(1);
}

/********** common setting **********/


.pt-6 {
    padding-top: 4rem !important;
}

.pb-6 {
    padding-bottom: 4rem !important;
}

.cont-mp-10 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
}


.my-10 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
}


/********** common setting **********/


body {
    font-size: 1.1rem !important;
    font-family: "Abril Fatface", serif;
}

h1 {
    font-family: "quasimoda", sans-serif !important;
    font-size: 2rem !important;
    line-height: 48px;
    font-weight: 900 !important;
    text-transform: uppercase;
}

h2 {
    font-size: 1.6rem !important;
    font-family: "Nunito", sans-serif !important;
}

h5 {
    font-size: 1rem !important;
    letter-spacing: 4px;
    font-weight: 200;
    margin-bottom: 0px;
    padding-bottom: 0px;
    color: #0a58ca
}



a,
button {
    cursor: pointer;
}

.solutions a {
    color: rgba(183, 148, 106, 1)!important;
    text-decoration: none !important;
    transition: color 0.3s ease, text-decoration 0.3s ease; /* Ajoute une transition pour la couleur et la décoration du texte */
}

.solutions a:hover {
    color: rgb(128, 103, 73) !important;
    text-decoration: none !important; /* Conserve "none" pour éviter la décoration */
}


p {
    font-size: 1.6rem !important;
}

li {
    font-size: 1.4rem !important;
    line-height: 2.4rem;
}

footer .p {
    font-size: 10px;
}



/********** paralax **********/

.parallax {

    /* Set a specific height */
    min-height: 400px;

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax-txt {
    position: relative;
    padding: 150px;
}

/********** common setting **********/


#banner {
    background-size: cover;

}

/********** banner **********/
#banner header {
    overflow: hidden;
}

#banner header img {
    max-width: 180px;
}


.full-height-img {
    background-size: cover; /* Couvre toute la div sans déformer l'image */
    background-position: center center; /* Centrer l'image */
    top: 0;
    right: 0;
    height: 100%; /* Prendre toute la hauteur de la fenêtre */
    width: 50vw; /* La moitié de l'écran */
}


.text-container {
    background-color: #f8f9fa; /* Couleur de fond pour visualiser, modifiable */
    padding: 2rem; /* Ajouter du padding si nécessaire pour le texte */
}

.image-container {
    position: relative;
    overflow: hidden; /* Masque tout débordement */
}

