.container-hero {
    max-width:900px;
    margin:0 auto;
}

.hero {
    padding-top: 50px;
    position: relative;
    overflow: hidden;
}


.hero-illustration {
    position: absolute;
    top: 0;
    right: -200px;
    height: 100%;
    z-index: -1;
    mix-blend-mode: lighten;
    overflow: hidden;
}

.hero-logo {
    text-align: center;
}

.hero-logo img {
    width: 100px;
}

.hero-title {
    text-align: center;
    font-size: 70px;
    font-weight: 500;
    line-height: 115%;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 155.556%;
    max-width: 600px;
    margin: 20px auto 30px;
    text-align: center;
    color:var(--texte-color);
}









.container_cards {
    display: flex;
    justify-content: space-between;
    margin:auto;
    margin-top:50px;
    max-width: 1200px;
    gap:3rem;
    margin-bottom: 100px;
}

.card {
    width:30%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--dark-color);
    padding: 3rem 2rem;
    border-radius: 1rem;
}

.num_card {
    position:relative;
    width:44px;
}

.num_card svg {
    width:44px;
}

.num_card .numero {
    position: absolute;
    font-weight:600;
    font-size: 1.4rem;
    top:10px;
    left:50%;
    transform: translateX(-50%);
}

.titre-card {
    font-size: 1.5rem;
    font-weight: 600;
}

.texte-card {
    font-size: 1rem;
    font-weight: 100;
    line-height: 140%;
}

.card-02 {
    width:30%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.illustration-card {
    overflow: hidden;
    position: relative;
    height: 350px;
    border-radius: 1rem;
    margin-top: 1rem;
}


.lien-card {
    margin-top: 1rem;
    transition: all 0.3s ease-in-out;
}

.lien-card:hover {
    translate: 10px 0px;
}

.lien-card  a {
    position: relative;
    text-decoration: none;
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease-in-out;
}

.lien-card  a:hover {
    background-color: var(--primary-color-hover);
    color: white;
}











.section-droite {
    width:100%;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
}

.section-droite .container-section {
    max-width: 1200px;
    margin: auto;
    display: flex;
}

.section-gauche {
    width:100%;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
    background: #1e293b;
    padding:2rem 0rem;
}

.section-gauche .container-section {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: row-reverse;
}

.section-image {
    width:50%;
    height: 100%;
    display: inline-block;
    margin: auto;
    
}

.section-image img {
    width:100%;
    border-radius: 1rem;
}

.section-content {
    width:50%;
    padding: 1rem 2rem;
}

.section-nom {
    font-size: 14px;
    font-weight: 600;
    color: var(--texte-color);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 20px;
}

.titre-section {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 115%;
}

.texte-section {
    font-size: 1rem;
    font-weight: 100;
    line-height: 155.556%;
    color: var(--texte-color);
}

.section-ligne-numero {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
}
.section-ligne-numero .numero {
    background: var(--primary-color);
    border-radius: 10%;
    padding:0.5rem;
    width:auto;
    font-size: 1.1rem;
}

.section-lien {
    margin-top:30px;
    transition: all 0.3s ease-in-out;
}

.section-lien:hover {
    translate: 10px 0px;
}

.section-lien a {
    text-decoration: none;
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease-in-out;
}

.section-lien a:hover {
    background-color: var(--primary-color-hover);
    color: white;
    
}

.titre-ligne {
    font-size: 1.1rem;
    font-weight: 600;
}

.texte-ligne {
    font-size: 1rem;
    line-height: 140%;
    font-weight: 200;
    color: var(--texte-color);
    margin-top:0.3rem;
}


.texte-seul {
    margin-top: 50px;
    position: relative;
    display: flex;
    flex-direction: column;     
    padding:2rem 0rem;
}

.container-texte-seul {
    width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 2rem 2rem;
    border-radius: 1rem;
    background: var(--dark-color);
}



#imagePopupOverlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.8);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 99999;
	cursor: pointer;
}


#imagePopupOverlay img {
	max-width: 800px;
	max-height: 90vh;
	box-shadow: 0 0 20px rgba(0,0,0,0.5);
	border-radius: 6px;
	background: white;
}
