/* Règles générales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}
a {
    text-decoration: none;
}
section {
    padding: 3%; /* Marges latérales et verticales de chaque section */
}
button {
    padding: 15px;
    font-size: 2em;
    border: solid 3px #172c29;
    border-radius: 35px;
    background-color: transparent;
    color: #172c29;
    cursor: pointer;
}
button:hover {
    transform: scale(1.1);
    transition: all 0.2s ease-in-out;
}

/* Version Téléphone */
.body {
    background-color: #e0d9cf;
}
.stephane {
    color: whitesmoke;
    background-color: #ede7e0;
}
.stephane-title {
    margin: 0 0 3% 1%;
    font-family: "Cormorant", serif;
    font-size: 70px;
    color: #333333;
}
.stephane-img {
    width: 100%;
    object-fit: cover;
}
/*  stephane Texte Containers*/
.stephane-text-container {
    padding: 3%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    z-index: 1;
    color: #333333;
}
.chapitre-container {
    height: 90vh;
}
.chapitre-img {
    width: 100%;
    object-fit: cover;
}
.innovateur-container {
    height: 95vh;
    margin: 5% 0;
}
.innovateur-img {
    width: 50%;
    object-fit: cover;
}
.stephane-secondary-title {
    font-family: "Cormorant", serif;
    font-size: 55px;
    text-align: center;
}
.stephane-text {
    font-size: 40px;
}
.stephane-innovateur-button-container {
    width: 100%;
    display: flex;
    justify-content: right;
}
.stephane-innovateur-button {
    padding: 20px;
    font-size: 30px;
    border-radius: 50px;
    color: #333333;
    border: solid 3px #333333;
}
    /*  Animations - Genèse Texte Containers */
    .stephane-innovateur-button:hover {
        border: solid 3px #333333;
        background-color: #333333;
        color: #9c856a;
    }
    .stephane-innovateur-button:active {
        border: solid 3px #333333;
        background-color: #333333;
        color: #9c856a;
    }


/* Box Honoris I */
.honoris-container {
    height: fit-content;
    background-color: #e0d9cf;
    padding: 3%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    color: #333333;
}
.honoris-title {
    font-size: 55px;
    font-family: "Cormorant", serif;
    text-align: center;
}
.honoris-img {
    width: 80%;
    margin: 3% 10%;
}
.honoris-text {
    font-size: 40px;
}
.honoris-button-container {
    display: flex;
    justify-content: right;
}
.honoris-button {
    color: #333333;
    border: solid 3px #333333;
    font-size: 40px;
    padding: 20px;
    border-radius: 50px;
}
    /* Animations - Box Honoris I */
    .honoris-button:hover {
        border: solid 3px #333333;
        background-color: #333333;
        color: #9c856a;
    }
    .honoris-button:active {
        border: solid 3px #333333;
        background-color: #333333;
        color: #9c856a;
    }




/* Version Tablette */
@media screen and (min-device-width: 768px) {
.stephane {
    color: whitesmoke;
}
.stephane-title {
    margin: 0 0 1% 1%;
    font-size: 50px;
}
/*  Stephane Texte Containers*/
.stephane-text-container {
    padding: 3%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    z-index: 1;
}
.chapitre-container {
    height: fit-content;
}
.chapitre-img {
    width: 60%;
    margin: 3% 0;
    object-fit: cover;
}
.innovateur-container {
    height: fit-content;
}
.innovateur-img {
    width: 30%;
    margin: 3% 0;
    object-fit: cover;
}
.stephane-secondary-title {
    font-size: 35px;
    text-align: center;
}
.stephane-text {
    margin: 2%;
    font-size: 20px;
}
.stephane-innovateur-button-container {
    display: flex;
    justify-content: right;
}
.stephane-innovateur-button {
    margin: 1% 0 0 0;
    padding: 10px;
    font-size: 20px;
    border-radius: 50px;
    border: solid 1px #333333;
}
/*  Animations - Genèse Texte Containers */
    .stephane-innovateur-button:hover {
        border: solid 1px #333333;
        background-color: #333333;
        color: #9c856a;
    }
    .stephane-innovateur-button:active {
        border: solid 1px #333333;
        background-color: #333333;
        color: #9c856a;
    }

/* Box Honoris I */
.honoris-container {
    width: 75%;
    height: fit-content;
    padding: 3%;
    margin: 3% 12.5% 0 12.5%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
.honoris-title {
    margin: 1% 0;
    font-size: 35px;
    text-align: center;
}
.honoris-img {
    width: 60%;
    margin: 3% 0;
}
.honoris-text {
    font-size: 20px;
    padding: 5%;
    text-align: center;
}
.honoris-button-container {
    display: flex;
    justify-content: center;
}
.honoris-button {
    border: solid 1px #333333;
    font-size: 20px;
    padding: 10px;
    border-radius: 50px;
}
    /* Animations - Box Honoris I */
    .honoris-button:hover {
        border: solid 1px #333333;
        background-color: #333333;
        color: #9c856a;
    }
    .honoris-button:active {
        border: solid 1px #333333;
        background-color: #333333;
        color: #9c856a;
    }
}





/* Version Desktop */
@media screen and (min-device-width: 1024px) {
.stephane {
    margin: 10vh 0 0 0;
}
.stephane-title {
    margin: 0;
    font-size: 40px;
}
/*  stephane Texte Containers*/
.stephane-text-container {
    padding: 1% 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    z-index: 1;
}
.chapitre-container {
    height: fit-content;
}
.chapitre-img {
    width: 35%;
    max-width: 450px;
    margin: 3% 0;
    object-fit: cover;
}
.innovateur-container {
    height: fit-content;
}
.innovateur-img {
    width: 15%;
    max-width: 200px;
    margin: 3% 0;
    object-fit: cover;
}
.stephane-secondary-title {
    margin: 1% 0 0 0;
    font-size: 30px;
    text-align: left;
}
.stephane-text {
    margin: 1% 0 0 0;
    font-size: 15px;
}
.stephane-innovateur-button-container {
    display: flex;
    justify-content: right;
}
.stephane-innovateur-button {
    margin: 2px 0;
    padding: 10px;
    font-size: 15px;
    border-radius: 50px;
    border: solid 1px #333333;
}
/*  Animations - Genèse Texte Containers */
    .stephane-innovateur-button:hover {
        border: solid 1px #333333;
        background-color: #333333;
        color: #9c856a;
    }
    .stephane-innovateur-button:active {
        border: solid 1px #333333;
        background-color: #333333;
        color: #9c856a;
    }

/* Box Honoris I */
.honoris-container {
    width: 50%;
    height: fit-content;
    padding: 3%;
    margin: 3% 25% 0 25%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
.honoris-title {
    font-size: 30px;
    text-align: center;
}
.honoris-img {
    width: 50%;
    max-width: 300px;
    margin: 3% 0;
}
.honoris-text {
    font-size: 15px;
    margin: 3% 0;
    padding: 0 5%;
    text-align: center;
}
.honoris-button-container {
    display: flex;
    justify-content: center;
}
.honoris-button {
    border: solid 1px #333333;
    font-size: 15px;
    margin: 3% 0 0 0;
    padding: 10px;
    border-radius: 50px;
}
    /* Animations - Box Honoris I */
    .honoris-button:hover {
        border: solid 1px #333333;
        background-color: #333333;
        color: #9c856a;
    }
    .honoris-button:active {
        border: solid 1px #333333;
        background-color: #333333;
        color: #9c856a;
    }
}





/* Version 4K */
@media screen and (min-device-width: 2560px) {
.stephane {
    margin: 10vh 0 0 0;
}
.stephane-title {
    margin: 0;
    font-size: 50px;
}
/*  stephane Texte Containers*/
.stephane-text-container {
    padding: 1% 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    z-index: 1;
}
.chapitre-container {
    height: fit-content;
}
.chapitre-img {
    width: 50%;
    max-width: 900px;
    margin: 2% 0;
    object-fit: cover;
}
.innovateur-container {
    height: fit-content;
}
.innovateur-img {
    width: 40%;
    max-width: 400px;
    margin: 2% 0;
    object-fit: cover;
}
.stephane-secondary-title {
    margin: 1% 0 0 0;
    font-size: 40px;
    text-align: left;
}
.stephane-text {
    margin: 1% 10% 0 10%;
    font-size: 20px;
}
.stephane-innovateur-button-container {
    display: flex;
    justify-content: right;
    margin: 2% 20% 0 0;
}
.stephane-innovateur-button {
    margin: 2px 0;
    padding: 15px;
    font-size: 20px;
    border-radius: 50px;
    border: solid 1px #333333;
}
/*  Animations - Genèse Texte Containers */
    .stephane-innovateur-button:hover {
        border: solid 1px #333333;
        background-color: #333333;
        color: #9c856a;
    }
    .stephane-innovateur-button:active {
        border: solid 1px #333333;
        background-color: #333333;
        color: #9c856a;
    }

/* Box Honoris I */
.honoris-container {
    width: 30%;
    height: fit-content;
    padding: 1%;
    margin: 3% 35% 0 35%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
.honoris-title {
    font-size: 40px;
    text-align: center;
}
.honoris-img {
    width: 50%;
    max-width: 300px;
    margin: 3% 0;
}
.honoris-text {
    font-size: 20px;
    margin: 3% 0;
    padding: 0 5%;
    text-align: center;
}
.honoris-button-container {
    display: flex;
    justify-content: center;
}
.honoris-button {
    border: solid 1px #333333;
    font-size: 20px;
    margin: 3% 0 0 0;
    padding: 15px;
    border-radius: 50px;
}
    /* Animations - Box Honoris I */
    .honoris-button:hover {
        border: solid 1px #333333;
        background-color: #333333;
        color: #9c856a;
    }
    .honoris-button:active {
        border: solid 1px #333333;
        background-color: #333333;
        color: #9c856a;
    }
}