@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
}

.slider {
    width: 100%;
    height: 80vh;
    position: relative;
    overflow: hidden;
}

.slider-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(50%);
}

.slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
}

.slider-content h1 {
    font-size: 4rem;
    margin: 0;
}

.slider-content p {
    font-size: 1.5rem;
    margin-top: 10px;
}

h1 {
    color: white;
    font-size: 5rem;
}

h2 {
    scroll-margin-top: 120px; /* Ajuste selon la hauteur de ton menu */
    font-size: 2rem;
    margin-bottom: 50px;
}

.btn-download {
    display: inline-block;
    margin: 20px 0;
    padding: 12px 24px;
    background-color: #13414a; /* Couleur personnalisée */
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-download:hover {
    background-color: #13414a; /* Variante plus foncée au survol */
    transform: scale(1.05);
}

p {
    font-size: 1.5rem;
    line-height: 1.5em;
}

.slider-content p {
   
    color: white;
    font-size: 2rem;
    font-weight: 300;
}

.section {
    padding: 100px 0;
    scroll-margin-top: 120px;
}




.boxed {
    max-width: 1280px;
    margin-inline: auto;
}

.flex {
    display: flex;
}

.orange {
    background: #13414a;
    background-size:cover;
    background-position-y: 50%;
    color: white;
}

.w40 {
    width: 30%;
}

.w60 {
    width: 60%;
}

.text-center {
    text-align: center;
}

.w25 {
    width: 25%;
}

.w32{
    width:32%;
}

.w40 {
    width: 30%;
    margin-bottom: 20px;
}




.space-between{
    justify-content: space-between;
}
.gap20 {
    gap: 20px;
}

.skill {
    background: white;
    border-radius: 25px;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

.skill img {
    width: 100px;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
}

.skill h3 {
    margin-top: -2px;
    color: black;
}

.skill ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.skill li {
    margin-bottom: 8px;
    font-size: 1rem;
    color: black;
}

.wrap {
    flex-wrap: wrap;
}

.skill-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-sizing: border-box;
    width: calc(50% - 20px);
    margin-bottom: 20px;
    text-align: left;
    color: black;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-5px);
}

.skill-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: #13414a;
}

.skill-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skill-card li {
    margin-bottom: 8px;
    padding-left: 1em;
    position: relative;
}

.skill-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #13414a;
}


.realisation{
    height:auto;
    aspect-ratio :1/1;
    position:relative;

}

.realisation h3{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    font: size 2rem;
    width:max-content;
    opacity: 0;
    transition: .4s ease;
}

.realisation a{
    display: block;
    width:100%;
    height:100%;
    text-decoration: none;
    color: #fff;
}

.realisation img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:brightness(70%);
    transition: .4s ease;
}

.realisation:hover img{
    filter:brightness(40%);
}

.realisation:hover h3{

    opacity:1;
}

.icon{
    display:block;
    font-size:40px !important;
}

.label{
    display:block;
    font-weight:700;
    text-transform: uppercase;
    margin: 10px 0;
    font-size:1.5rem;
}

.value{
    display:block;
    font-size:1.5rem;
}
.contact-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 0;
}

.contact {
    flex: 1 1 calc(33.333% - 20px);
    border: 2px dashed #13414a;
    border-radius: 15px;
    padding: 30px;
    box-sizing: border-box;
    min-width: 250px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.05); /* pour contraste */
}


.aligncenter {
    align-items: center;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width:100%;
    background:#FFF;
    z-index: 999;
    padding-block: 10px;
    box-shadow: 1px 1px 25px rgba(0,0,0,0.5);
}

.header-logo {
    display: block;
}

.header-logo img {
    width:60px;
}

.header-menu {
    display: flex;
    align-items: center;
    list-style: none;
}

.header-menu li a{
    text-decoration: none;
    color:#000;
    padding:10px 20px;
    display: block;
    box-sizing:border-box;
    transition:.2s ease;
}

.header-menu li a:hover{
    background-color: #F2F2F2;
}



html {
    scroll-behavior: smooth;
}
