/**********
* ACCUEIL *
**********/



/* Hero */
.hero{
    width: 100%;
    height: 100vh;
    position: relative;
}
.hero .hero__video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding-top: 15vh;
}
.scroll-arrow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6.25rem;
    height: 3.125rem;
    background-color: white;
    border-radius: 3.125rem 3.125rem 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.scroll-arrow::after {
    content: "";
    width: 20px;
    height: 20px;
    border: 4px solid var(--primaire);
    border-left: none;
    border-top: none;
    border-radius: 2px; 
    transform: rotate(45deg);
}
.hero__logo{
    height: 12vh;
    position: absolute;
    top: 1vh;
    left: 50%;
    transform: translateX(-50%);
}
/* Reponsive desktop */
@media screen and ( min-width:1280px ) {
    .hero__logo{
        display: none;
    }
}
@media screen and (min-width: 1280px) and (max-width: 1500px) {
	.hero .hero__video{
		padding-top: 7vh;
	}
}




/* Présentation */
.presentation{
    display: flex;
    flex-direction: column;
    padding-top: 12rem;
    gap: 2rem;
}
.presentation__contenu{
    position: relative;
}
.presentation__contenu::before{
    content: '';
    background-image: url(../images/design/fireworks.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -11rem;
    right: 0;
    width: 15rem;
    height: 15rem;
    transform: scale(0.7);
}
.presentation__surtitre{
    text-transform: uppercase;
    font-family: 'Dosis', sans-serif;
    font-weight: 100;
    font-size: 1.875rem;
}
.presentation__surtitre span{
    text-transform: none;
    font-size: 1rem;
    display: block;
    margin-top: 4px;
}
.presentation__titre{
    color: var(--primaire);
    font-size: 2.25rem;
    padding: 1rem 0;
}
.presentation__img{
    object-fit: contain;
}
/* Reponsive tablette */
@media screen and ( min-width:750px ) {
    .presentation{
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
        padding-right: 10%;
    }
    .presentation__img{
        width: 40%;
    }
    .presentation__contenu::before{
        top: -8rem;
        right: -10rem;
    }
    .presentation__titre{
        font-size: 2.5rem;
    }
}
/* Reponsive desktop */
@media screen and ( min-width:1280px ) {
    .presentation__img{
        width: 60%;
        margin-top: -2rem;
    }
}




/* Services */
.services{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding-top: 0;
}
.service{
    text-align: center;
    max-width: 300px;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 1s ease-in-out, transform 0.5s ease-in-out;
}
.service__titre{
    margin-bottom: .5rem;
    color: var(--primaire);
}
.service__separation{
    align-self: center;
}
.service.appear {
    opacity: 1;
    transform: translateY(0);
}
/* Reponsive tablette */
@media screen and ( min-width:850px ) {
    .services{
        gap: 3rem;
        flex-direction: row;
        align-items: flex-start;
    }
}
/* Reponsive desktop */
@media screen and ( min-width:1280px ) {
    .services{
        gap: 3rem;
        flex-direction: row;
    }
    .service{
        max-width: 25%;
    }
}




/* Des moments de partage */
.partage{
    background: linear-gradient(297deg, rgba(206, 180, 129, 0.30) 49.35%, rgba(206, 180, 129, 0.00) 99.47%);
    margin: 4rem 0;
    padding: 0;
}
.partage__contenu{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 10%;
    gap: 1rem;
}
.partage .boutons{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
.partage__photo{
    width: 100%;
    object-fit: contain;
    margin-bottom: -4px;
    max-height: initial;
}
/* Reponsive desktop */
@media screen and ( min-width:1280px ) {
    .partage{
        position: relative;
    }
    .partage::before{
        position: absolute;
        content: url(../images/design/elements-graphiques/flat-lay-uncooked-spaghetti-penne-parmesan-with-copy-space.png);
        left: 0;
        top: -7rem;
    }
    .partage__texte{
        max-width: 50%;
    }
}




/* Ce qui fait la différence */
.differences__conteneur{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: flex-start;
    margin-top: 4rem;
}
.difference{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
    max-width: 16rem;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
.difference.appear {
    opacity: 1;
    transform: translateY(0);
}
.difference__titre{
    color: var(--primaire);
}
/* Reponsive desktop */
@media screen and ( min-width:1280px ) {
    .differences{
        padding: 4rem 8%;
        position: relative;
    }
    .differences::before{
        position: absolute;
        content: url(../images/design/elements-graphiques/overhead-view-croissant-coffee-halved-kiwi-pears-dried-flower-raspberries-white-background.png);
        right: 0;
        bottom: -28rem;
    }
    .differences__conteneur{
        gap: 4rem;
    }
}
/* Reponsive desktop */
@media screen and ( min-width:1448px ) {
    .differences::before{
        right: 0;
        bottom: -34rem;
    }
}




/* La recherche du bien commun */
.recherche .engagements{
    margin-top: 3.5rem;
}
.recherche .btn{
    margin-top: 1.5rem;
}
.recherche .engagements__contenu > p{
    margin-bottom: .5rem;
}
.recherche .engagements__titre, .recherche .equipe__titre{
    color: var(--tertiaire);
}
.recherche .engagements__titre{
	margin: 1rem 0;
}
.recherche .equipe{
    margin-top: 3.5rem;
}
.recherche .equipe__sous-titre{
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
.recherche .equipe__titre{
    margin-bottom: .25rem;
}
.recherche ul li{
    position: relative;
    margin-left: 1.5rem;
    margin-bottom: .25rem;
}
.recherche ul li::before{
    content: '';
    position: absolute;
    width: .4rem;
    height: .4rem;
    left: 0;
    border-radius: 50%;
    background-color: var(--primaire);
    color: var(--primaire);
    margin-left: -1rem;
    margin-top: .5rem;
}
.recherche .equipe__image{
    margin-top: 2rem;
    max-height: 470px;
}
.recherche img{
    width: 100%;
    margin-bottom: 1rem;
}
.recherche .equipe__contenu{
    text-align: start;
}
.recherche .equipe .boutons{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
/* Reponsive tablette */
@media screen and ( min-width:850px ) {
	.recherche{
		padding-bottom: 5rem;
		margin-bottom: initial;
	}
    .recherche__conteneur{
        display: flex;
        gap: 5rem;
        justify-content: center;
    }
    .recherche__conteneur > *{
        flex: 1;
    }
}
/* Responsive desktop */
@media screen and ( min-width:1170px ) {
	.recherche .equipe__image {
		max-height: 550px;
	}
}


/* Réseaux sociaux */
.feed{
	background-color: rgba(206, 180, 129, 0.30);
    margin-bottom: 4rem;
}
.feed .boutons{
	display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}
.feed .btn{
	margin-top: 0;
}
.feed__conteneur{
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 2rem;
	margin-top: 4rem;
	justify-content: center;
}
.feed__conteneur img{
	width: calc(50% - 0.5rem);
	cursor: pointer;
	transition: all .3s;
}
.feed__conteneur img:hover{
	filter: grayscale(1);
}
/* Reponsive desktop */
@media screen and ( min-width:850px ) {
	.feed{
		margin-top: 4rem;
	}
	.feed__conteneur img{
		width: calc(25% - 1rem);
	}
}



/* Ils nous font confiance */

.clients__conteneur {
    width: 100vw;
    overflow: hidden;
    margin-left: -10vw;
    margin-top: 3rem;
    margin-top: 4rem;
}
.logos {
    display: flex;
}
.logos img {
    min-width: 8rem;
    height: 5rem;
    margin-right: 2rem; /* Espace entre les logos */
    object-fit: contain;
}

/* Responsive desktop */
@media screen and ( min-width:1170px ) {
    .clients__conteneur {
        width: 100vw;
        overflow: hidden;
        margin-left: -15vw;
        margin-top: 4rem;
    }
    .logos img {
        min-width: 10rem;
        height: 6.25rem;
        object-fit: contain;
        padding: .5rem;
        transition: all .3s;
    }
    .logos img:hover{
        transform: scale(1.125);
    }
    .clients{
        position: relative;
    }
    .clients::before{
        position: absolute;
        content: url(../images/design/elements-graphiques/white-garlic-with-greens-pepper-powder.png);
        left: 0;
        top: -15rem;
        transform: scaleX(-1);
        z-index: -1;
    }
}