/* Fonts */
@font-face {
    font-family: 'script';
    src: url('/assets/fonts/le-jour-script.ttf') format('truetype'); /* Format TTF */
}
@font-face {
    font-family: 'montserrat';
    src: url('/assets/fonts/Montserrat-ExtraLight.ttf') format('truetype'); /* Format TTF */
}
:root {
    --main-color : #434A2f;
    --second-color: #747961;
    --third-color : #969A7b;
    --four-color: #A5A387;
    --five-color : #CBC3A1;
    --six-color : #E8E1D1;
    --seven-color : #F4F2E5;
}

/* Styles pour le contenu principal */
body {
    font-family: 'montserrat', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #434a2fc4;
    /* Fond foncé */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    color: white;
}


main {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    max-width: 60%;
    padding: 20px;
    background: #434a2f8f;
    backdrop-filter: blur(10%);
    border: 2px solid var(--six-color);
    border-radius: 10px;
    display: flex;
    flex-direction: row;
}




.content-left {
    flex-basis: 40%;
    padding: 10px;
}

.content-left img {
    max-width: 100%;
}

.content-right {
    flex-grow: 1;
    padding: 65px;
    margin-top: 15px;
}

ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: space-evenly;
}

ul li {
    margin-bottom: 10px;
}

a {
    text-decoration: none;
    color: rgb(255, 255, 255);
}

.social-network {
    padding-top: 15px;
}

@media (max-width: 768px) {

    /* Pour les écrans de petite taille, inverser la disposition en colonne */
    .content {
        flex-direction: column;
        max-width: 100%;
        text-align: justify;
        padding: 10px;
        background-color: #434a2fc4;
    }
    .partenaire {
        display: flex;
        flex-direction: column;
    }
    .content-left {
        margin: auto;
        width: 70%;
    }
    .content-right {
        padding-top: 10px;
    }
    .text-partenaire {
        padding-top: 15px;
    }
}

@media (max-width: 1200px) {

    /* Pour les écrans de petite taille, inverser la disposition en colonne */
    .content {
        flex-direction: column;
        max-width: 100%;
        text-align: justify;
        padding: 10px;
        background-color: #434a2fc4;
    }
    .partenaire {
        display: flex;
        flex-direction: row;
    }
    .content-left {
        margin: auto;
        width: 70%;
        text-align: center;
    }
    .content-right {
        padding-top: 10px;
    }
    .text-partenaire {
        padding-top: 15px;
    }
}