/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Styles */
body {
    font-family: Arial;
    
}
p{
    text-align: justify;
    word-spacing: normal;
    hyphens: auto; /* Ajoute la césure automatique des mots */
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

/* Banner Section */
.banner {
    position: relative;
    height: 100vh; /* Hauteur initiale du héros */
    background-image: url('/assets/Images/slide/slide6.png'); /* Remplace avec ton image */
    background-size: cover;
    background-position: center;
    margin-top: 110px;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 98, 51, 0.4), rgba(0, 0, 0, 0.4)); /* dégradé linéaire sur le bord gauche */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: white;
    padding-left: 20px;
}


.overlay h1 {
    margin: 0;
    width: 100%;
    font-weight: bolder;
    text-transform: uppercase;
    font-size: 4em; 
}
.overlay #accueil-banner{
    margin: 0;
    width: 100%;
    font-weight: bolder;
    text-transform: uppercase;
    font-size: 3vw;
}

.overlay p {
    margin-top: 10px;
    text-transform: uppercase;
    margin-top: 300px;
    font-size: 1.5em;
}

.banner .overlay {
    padding: 60px 20px;
    border-radius: 10px;
    color: white;
}

.banner p {
    font-size: 1em;
}

.banner h1 {
    font-size: 1.5em;
}


/* Styles responsives */
@media (max-width: 768px) {
    .banner {
        height: 40vh;
    }

    .banner .content {
        padding: 15px;
    }

    .banner .content h1 {
        font-size: 2em;
    }

    .banner .content p {
        font-size: 0.8em;
    }
    .overlay #accueil-banner {
        font-size: 1em;   
    }
}

@media (max-width: 480px) {
    .overlay #accueil-banner {
        font-size: 0.9em;
        margin: 0;
        width: 100%;
        text-transform: uppercase;
        margin-top: 95px;
    }
   
    
    .overlay p {
        display: none;
    }
    
    .banner {
        height: 30vh;
    }

    .banner .content {
        padding: 10px;
        margin-top: 120px;
    }

    .banner .content h1 {
        font-size: 1em;
    }

    .banner .content p {
        font-size: 0.4em;
    }
}

.titre{
    margin-bottom: 0px;
    font-size: 1.9em; /* Taille du titre */
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    text-align: center;

}
.soustitre{
    font-size: 1.5em; /* Taille du titre */
    text-align: center;
}




/* Section Two */
.section-two {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto; /* Centrer la section */
    padding: 0 15px; /* Ajouter un peu d'espace sur les côtés */
}



.image-block, .content-block {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.image-block img {
    width: 100%;
    border-radius: 10px;
  
}

.content-block h2 {
    font-size: 1.5em;
  
}

.content-block p {
    font-size: 1em;
    margin-bottom: 20px;
    text-align: justify;
    word-spacing: normal;
    hyphens: auto; /* Ajoute la césure automatique des mots */
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

.content-block ol {
    padding-left: 20px;
}

.content-block li {
    margin-bottom: 10px;
}


.btns {
    display: inline-block;
    padding: 10px 20px;
    color: #15171C;
    background: #ff6233;
    border-radius: 5px;
    text-decoration: none;
}

.btns:hover {
    background: #FFBD59;
}

/* Section Three */
.section-three {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
    max-width: 1200px;
  margin: 0 auto; /* Centrer la section */
  padding: 0 15px; /* Ajouter un peu d'espace sur les côtés */
}

.section-three .block {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    text-align: center;
}

.section-three img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.section-three h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.section-three p {
    font-size: 1em;
    margin-bottom: 20px;
}



/* Custom Section */
.custom-section {
    background: url('Images/fond.png') no-repeat center center/cover;
    padding: 60px 20px;
    color: white;
    text-align: center;
    
}

.custom-section .content {
    max-width: 1200px;
    margin: auto;
}
.custom-section .content h1 {
    margin-bottom: 0px;
    font-size: 1.9em; /* Taille du titre */
    font-weight: bold;
    text-transform: uppercase;
    color: #15171C;
    text-align: center;
}

.custom-section h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.custom-section .text-blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.custom-section .text-block {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    margin: 10px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
}

.custom-section .text-block p {
    text-align: left;
}

.custom-section .text-block ul {
    padding-left: 20px;
}

.custom-section .text-block li {
    margin-bottom: 10px;
}

.custom-section .btns {
    margin-top: 20px;
}

/* Partners Section */
.partners-section {
    padding: 20px;
    text-align: center;
}

.partners-section h2 {
    margin-bottom: 20px;
    font-size: 1.9em; /* Taille du titre */
    font-weight: bold;
    text-transform: uppercase;
    color: #ff6233;
    text-align: center;
}

.partners-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.partner-logo {
    flex: 1;
    min-width: 150px;
    padding: 20px;
}

.partner-logo img {
    width: 100%;
    max-width: 150px;
    border-radius: 10px;
}

/* Two-Block Section */
.two-block-section {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto; /* Centre le conteneur */
    padding: 0 15px; /* Ajoute un peu d'espace sur les côtés */
}

.two-block-section.reverse {
    flex-direction: row-reverse;
}

.two-block-section .block-image, .two-block-section .block-text {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.two-block-section img {
    width: 100%;
    border-radius: 10px;
}

.two-block-section h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.two-block-section p {
    font-size: 1em;
    margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .section-two, .section-three, .custom-section .text-blocks, .partners-container, .two-block-section {
        flex-direction: column;
    }
}
@media (max-width: 768px) {
    #jeune-fille-intiative{
        flex-direction: column;
    }
}
@media (max-width: 768px) {
    .section-two .content-block{
       margin-top: 300px;
    }
}
@media (max-width: 480px) {
    .section-two .content-block{
       margin-top: 0px;
    }
    .section-two .content-block h2{
      text-align: center;
      font-size: 1em;
    }

    .custom-section .content h1 {
        font-size: 1.4em; /* Taille du titre */
    }
}


.hidden {
    display: none;
}

.extraContent {
    margin-top: 10px;
    padding: 10px;
    color: #15171C;
    background-color: #f9f9f9;
}
.extraContent p{
     text-align: justify;
  word-spacing: normal;
  hyphens: auto; /* Ajoute la césure automatique des mots */
  -webkit-hyphens: auto;
  -ms-hyphens: auto;

}




