@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&display=swap');

:root{
    --button-color: #b9965e;
    --p-color: #212529;
    --footer-color: #8B7147;
    --p-color-footer: #e0d0b7;
}

/*Général*/
* {
    box-sizing: border-box;
}

body{
    margin: 0;
    padding: 0;
    font-family: 'Dosis', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.index-body {
    height: 100vh;
    background-image: url(images/background2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

header {
    width: 100%;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: var(--p-color);
}

h1 {
    margin: 0;
    padding: 0;
}

/*Page d'acceuil*/

/*Navigation*/

.container-nav {
    display: flex;
    justify-content: center;
    width: 100%;
    background-color: rgba(255, 255, 255, 0);
}

.nav-bar {
    display: flex;
    flex-direction: row;
    width: 75%;
    border-radius: 50px 50px 50px 50px;
    margin-top: 20px;
    align-items: center;
    box-shadow: 
        0 0 5px rgba(0, 0, 0, 0.1),
        0 0 5px rgba(0, 0, 0, 0.1),
        5px 0 5px rgba(0, 0, 0, 0.1),
        -5px 0 5px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.container-nav .nav-bar a {
    margin-left: 15px;
    font-weight: 600;
    padding: 10px;
    transition: transform 0.3s ease-in-out;
}

.container-nav .nav-bar a:hover {
    transform: scale(1.2);
}

.nav-logo {
    width: 70px;
    margin-left: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
}


/*End Navigation*/

/*index Contenue milieu*/
.main-container {
    display: flex;
    width: 75%;
    height: 100%;
    align-items: center;
}

.content {
    display: flex;
    width: 60%;
    border-radius: 10px;
    box-shadow: 
    0 0 5px rgba(0, 0, 0, 0.1),
    0 0 5px rgba(0, 0, 0, 0.1),
    5px 0 5px rgba(0, 0, 0, 0.1),
    -5px 0 5px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    margin-bottom: 20px;
    flex-direction: column;
    background-color: white;
    height: min-content;
}

.content h1 {
    margin-top: 10px;
    margin-left: 20px;
}

.content p {
    margin-top: 10px;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 20px;
}

.btn-solus {
    display: flex;
    margin-left: 20px;
    width: 25%;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
    
}

.btn-solus-link {
    border: none;
    border-radius: 50px 50px 50px 50px;
    padding: 10px;
    background-color: var(--button-color);
    width: 100%;
    font-weight: 600;
    font-family: 'Dosis', sans-serif;
    font-size: 20px;
}

.btn-solus-link:hover {
    cursor: pointer;
}

.titre1 {
    font-weight: 800;
    font-size: 50px;
    color: var(--button-color);
}


/*End Contenue milieu*/

/*Footer*/

footer {
    display: flex;
    flex-direction: column;
    background-color: var(--footer-color);
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: var(--p-color-footer);
    font-size: 20px;
}

.footer-container1 {
    display: flex;
    flex-direction: row;
    width: 50%;
    align-items: center;
    justify-content: space-around;
}

footer .logo-footer img {
    width: 150px;
}

.reseau-sociaux {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 12.5%;
}

.reseau-sociaux a img {
    width: 30px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(16%) saturate(7477%) hue-rotate(297deg) brightness(116%) contrast(70%);
}

.reseau-sociaux a img:hover {
    filter: brightness(0) saturate(100%) invert(100%) sepia(91%) saturate(0%) hue-rotate(16deg) brightness(101%) contrast(100%);
}

.reseau-sociaux a img:hover {
    cursor: pointer;
}

.logo-footer {
    width: 12.5%;
}

.links {
    width: 12.5%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.links a {
    color: var(--p-color-footer);
}

.links a:hover {
    color: white;
}

.contact-footer a {
    width: 12.5%;
    color: var(--p-color-footer);
}

.btn-footer:hover {
    color: white;
}


/*End Footer*/


/*Title1*/
.title1-big-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--button-color);
    justify-content: center;
    margin-top: 30px;
}

.title1-big-container .title1-container {
    width: 75%;
    padding: 30px;
    display: flex;
    justify-content: center;
}

.title1-big-container .title1-container h1 {
    font-weight: 800;
    font-size: 40px;
}
/*End title1*/

/*page propos content*/

.ambition-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: flex-start;
    gap: 25px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.ambition-culture, .ambition-vr, .ambition-mesure {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 31%;
}

.ambition-culture div, .ambition-vr div , .ambition-mesure div{
    width: 80%;
}

.ambition-culture h2, .ambition-vr h2, .ambition-mesure h2 {
    color: var(--footer-color);
}

.ambition-culture p, .ambition-vr p, .ambition-mesure p {
    font-size: 18px;
}



.title2-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--button-color);
    padding: 30px;
}

.title2-container h1 {
    font-weight: 800;
    font-size: 40px;
}

.equipe-big-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.equipe-container {
    display: flex;
    width: 75%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
    gap: 10px;
}

.membre {
    width: 45%;
    display: flex;
    flex-direction: row;
    color: var(--footer-color);
    gap: 10px;
    align-items: center;
}

.photo-membre img {
    width: 100px;
    clip-path: circle();
}

/*End propos content*/

/*page contact*/
.form-big-container {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.form-container {
    display: flex;
    width: 40%;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.form {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
}

.info {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
}

.info label {
    width: 25%;
    font-weight: 700;
}

.info input {
    width: 70%;
    height: 30px;
}

.info textarea {
    width: 70%;
    resize: vertical;
}

.btn-submit {
    width: 30%;
    align-self: center;
    padding: 10px;
    border-radius: 50px 50px 50px 50px;
    background-color: var(--button-color);
    border: 0px;
    font-weight: 800;
    font-size: large;
}

.btn-submit:hover {
    cursor: pointer;
}
/*End page contact*/

/*page solutions*/

.video-container {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.video {
    display: flex;
    flex-direction: column;
    width: 75%;
    gap: 20px;
    color: var(--button-color);
}

.video video {
    height: 400px;
    width: 50%;
    align-self: center;
    background-color: black;
}

.solus-big-container {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.solus-content {
    display: flex;
    width: 50%;
    flex-direction: column;
    justify-content: center;
}

/*End page solutions*/

/*Responsive*/

@media (min-width: 600px) and (max-width: 1120px) {
    .content {
        width: 100%;
    }

    .content p {
        font-size: 17px;
    }

    .btn-solus {
        width: 50%;
    }

    .btn-solus-link {
        width: 75%;
        font-size: 18px;
    }

    .footer-container1 {
        width: 100%;
    }
}

@media (min-width: 800px) and (max-width: 1200px) {

    .equipe-container {
        flex-direction: column;
    }

    .membre {
        width: 80%;
    }
}

@media (min-width: 500px) and (max-width: 800px) {

    .equipe-container {
        flex-direction: column;
        width: 100%;
    }

    .membre {
        width: 100%;
    }
}

/*Responsive end*/