@font-face {
    font-family: 'Semi-Bold';
    src: url('/static/fonts/Poppins-SemiBold.ttf');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Medium';
    src: url('/static/fonts/Poppins-Medium.ttf');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Extra-Bold';
    src: url('/static/fonts/Poppins-ExtraBold.ttf');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Regular';
    src: url('/static/fonts/Poppins-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}
h1{
    font-family: 'Extra-Bold', sans-serif;
    line-height: 0.1em;
    font-size: clamp(40px, 4vw, 65px);
}
h2 {
    font-family: 'Regular', sans-serif;
    line-height: 0.1em;
    height: calc(20px + 1vw);
    font-size: clamp(22px, 3vw, 44px);
    color: rgb(4, 67, 186);
}
.p0 {
    font-family: 'Regular', sans-serif;
    line-height: 0em;
    font-size: calc(16px + 0.8vw);
}
.p1 {
    font-family: 'Semi-Bold', sans-serif;
    font-size: calc(16px + 0.8vw);
    line-height: 0.4em;
}
.top-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px 6%;
    background-color: #000000;
    color: white;
    padding-left: 3%;
}
.top-header a {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.top-header img {
    width: min(30px, 3vw);
    height: auto;
    cursor: pointer;
}
.top-header a:hover img {
    opacity: 0.8;
}
.left-text {
    font-family: "Medium", sans-serif;
    flex-grow: 1;
    display: flex;
    justify-content: left;
    padding-left: 2.4%;
    font-size: clamp(12px, 1.7vw, 22px);
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #ffffff;
    color: white;
}
nav {
    flex-grow: 1;
    display: flex;
    justify-content: right;
    padding-right: 5%;
}
.logo {
    display: flex;
    justify-content: left;
    padding-left: 3.5%;
}
.menu {
    display: flex;
    padding: 0;
    gap: 30px;
}
.menu li {
    list-style-type: none;
    position: relative;
}
.menu li a {
    font-family: 'Semi-Bold', sans-serif;
    color: black;
    text-decoration: none;
    /* font-weight: bold; */
    /* font-size: 125%; */
    font-size: clamp(14px, 2vw, 25px);
    padding: 5px 0;
    display: inline-block;
    position: relative;
}
.menu li a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #e74c3c;
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}
.menu li a:hover::after {
    transform: scaleX(1);
}
.accueil {
    position: relative;
    width: 100%;
}
.accueil-image img {
    width: 100%;
    height: auto;
    display: block;
}
.accueil-block {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    color: rgb(0, 0, 0);
    background: rgb(255, 255, 255);
    text-align: center;
    padding: 20px;
    border-radius: 0;
    /* bottom: auto; */
}
.accueil-icons {
    display: flex;
    justify-content: center;
    /* padding-left: 0%; */
    align-items: center;
    gap: 0px;
    margin-top: 15px;
    flex-direction: row;
    width: 100%;
}
.accueil-icons img {
    width: calc(140px + 10vw);
    height: auto;
}
.accueil-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.accueil-icon p {
    font-family: 'Semi-Bold', sans-serif;
}
.services {
    position: relative;
    width: 100%;
    background: rgb(250, 244, 226);
    margin-top: -6%;
}
.services-block {
    width: 100%;
    height: auto;
    left: 50%;
    text-align: center;
}
.arrow {
    margin-left: -1%;
    width: calc(110px + 0.8vw);
    height: calc(110px + 0.8vw);
}
.h1_services {
    font-family: 'Extra-Bold', sans-serif;
    line-height: 2em;
    /* font-size: clamp(60px, 4vw, 65px); */
    font-size: calc(55px + 0.8vw);
    background: rgb(250, 244, 226);
    margin-bottom: 2%;
}
.h2_services {
    font-family: 'Semi-Bold', sans-serif;
    /* line-height: -4em; */
    height: calc(20px + 1vw);
    font-size: clamp(22px, 3vw, 44px);
    color: rgb(0, 0, 0);
    margin-top: -2%;
    margin-bottom: 0%;
}
.h2_services2 {
    font-family: 'Semi-Bold', sans-serif;
    /* line-height: -4em; */
    height: calc(20px + 1vw);
    font-size: clamp(22px, 3vw, 44px);
    color: rgb(0, 0, 0);
    margin-top: 1%;
    margin-bottom: 0%;
}
.projets-container {
    /* position: relative; */
    width: 100%;
    background: rgb(255, 255, 255);
    margin-top: -3%;
    margin-bottom: 0%;
}
.projets-image1 {
    margin-top: -7%;
}
.h1_projets {
    font-family: 'Extra-Bold', sans-serif;
    line-height: 2em;
    font-size: calc(30px + 0.8vw);
    background: rgb(255, 255, 255);
    margin-bottom: 2%;
    text-align: left;
    margin-left: 4%;
}
.p3{
    font-size: calc(10px + 0.8vw);
    font-family: 'Semi-Bold', sans-serif;
    line-break: auto;
    width: 50%;
}
.p4 {
    font-size: calc(10px + 0.8vw);
    font-family: 'Semi-Bold', sans-serif;
    line-break: auto;
    width: 70%;
}
.p5 {
    font-size: calc(10px + 0.8vw);
    line-break: auto;
    width: 80%;
}
/* .services-container, .projets-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
} */
/* .service, .projet {
    background: white;
    padding: 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
} */
footer {
    /* position: fixed; */
    bottom: 0;
    width: 100%;
    background-color: #000000;
    color: white;
    text-align: left;
    padding: 10px;
}
.footer-block {
    display: flex;
    flex-direction: row; /* 🆗 côte à côte */
    align-items: center;
    justify-content: flex-start; /* optionnel */
    text-align: left;
    gap: 30px; /* espace entre logo et texte */
    padding: 30px;
    margin-bottom: -3%;
}

.logo-footer {
    margin-left: 10%;
}

.footer-text {
    padding-left: 10px;
}

.h1-footer {
    font-family: 'Extra-Bold', sans-serif;
    line-height: 2em;
    font-size: calc(25px + 0.8vw);
    margin-top: -5.2%;
    margin-bottom: 0%;
    color: rgb(255, 255, 255);
    text-align: left;
    margin-left: 0%;
}

.h2-footer {
    font-family: 'Regular', sans-serif;
    /* line-height: -4em; */
    /* height: calc(20px + 1vw); */
    font-size: calc(17px + 0.8vw);
    color: rgb(255, 255, 255);
    text-align: left;
    margin-top: 0%;
    margin-bottom: 0%;
}

.h3-footer {
    font-family: 'Medium', sans-serif;
    /* line-height: -4em; */
    /* height: calc(20px + 1vw); */
    font-size: calc(10px + 0.8vw);
    color: rgb(255, 255, 255);
    margin-top: 0%;
    text-align: left;
    margin-bottom: 0%;
}

.footer-contact-line {
    display: flex;
    align-items: center;
    gap: 10px; /* espace entre le texte et l’icône */
}

.insta-icon {
    width: 30px;
    height: auto;
    margin-left: 30%;
    margin-top: -9%;
}

.footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.footer-separator {
    border: none;
    height: 1px;
    background-color: #444; /* ou #fff si tu veux plus de contraste */
    margin: 20px auto;
    width: 90%;
}

.footer-legal {
    color: white;
    font-size: calc(6px + 0.8vw);
    font-family: 'Regular', sans-serif;
    margin-bottom: 20px;
}

.footer-legal a {
    color: white;
    text-decoration: none;
}

.footer-legal a:hover {
    text-decoration: underline;
}
