

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: "Cormorant Garamond", sans-serif;
    
}
body{
    width:100%;
}
:root {
    --couleur1: #BFB093;
}
.prestation{
    max-width: 100%;
}
.header_activite {
    width: 100%;
    height: 500px;
}

.header_activite > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.titre_foix {
    width: 300px;
    height: 30px;
}

.titre_foix > h1 {
    font-size: 25px;
    text-align: center;
}

.foix {
    width: 100%;
    height: auto; /* Ajusté pour s'adapter au contenu */
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-evenly;
    padding: 20px; /* Ajouté pour l'espacement intérieur */
}

.img_foix {
    width: 30%;
    height: auto;
    overflow: hidden;
}

.img_foix > img {
    width: 100%;
    height: auto;
    flex-wrap: wrap;
}

.texte_foix {
    width: 50%;
    height: auto;
    margin-top: 20px;
    font-size: 20px;
    text-align: justify;
}

.mirepoix {
    width: 100%;
    height: auto; 
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px; 
}

.img_mirepoix {
    width: 60%;
    height: auto;
    padding-left: 90px;
}

.img_mirepoix > img {
    width: 100%;
    height: auto;
}

.titre_mirepoix {
    width: 100%;
    margin-bottom: 100px;
    text-align: right;
    padding-right: 100px;
}

.titre_mirepoix > h1 {
    font-size: 10px;
    text-align: right;
    margin: 0;
}

.texte_mirepoix {
    font-size: 20px;
    text-align: justify;
    padding-left: 100px;
    margin-top: 30px;
}

.titre_ax {
    width: 300px;
    height: 30px;
}

.titre_ax > h1 {
    font-size: 25px;
    text-align: center;
}

.ax {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-evenly;
    padding: 20px;
}

.img_ax {
    width: 30%;
    height: auto;
    overflow: hidden;
}

.img_ax > img {
    width: 100%;
    height: auto;
    flex-wrap: wrap;
}

.texte_ax {
    width: 50%;
    height: auto; 
    margin-top: 20px;
    font-size: 20px;
    text-align: justify;
}

.titre_tarascon {
    width: 100%;
    margin-bottom: 10px;
    text-align: right;
    padding-right: 100px;
}

.titre_tarascon > h1 {
    font-size: 25px;
    text-align: right;
    margin: 0;
}

.tarascon {
    width: 100%;
    height: auto; 
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin-bottom: 80px;
    padding: 20px; 
}

.img_tarascon {
    width: 30%;
    height: auto;
    overflow: hidden;
}

.img_tarascon > img {
    width: 100%;
    height: auto;
    flex-wrap: wrap;
}

.texte_tarascon {
    width: 50%;
    height: auto; 
    margin-top: 20px;
    font-size: 20px;
    text-align: justify;
}

.btn_container {
    text-align: center;
    margin: 40px 0;
}

.btn_verger {
    background-color: #8B0000;
    color: #ffffff;
    border: none;
    padding: 15px ; 
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
    display: block;
    width: 75%;
    margin: 0 auto;
    font-weight: bolder;
    text-align: center;
}

.btn_verger:hover {
    background-color: #bc3232;
}



@media screen and (max-width: 767px) { 
    body{
        padding: 0;
    }
    .foix, .mirepoix, .ax, .tarascon {
        flex-direction: column;
        align-items: center;
    }
    .img_foix, .img_mirepoix, .img_ax, .img_tarascon,
    .texte_foix, .texte_mirepoix, .texte_ax, .texte_tarascon {
        width: 90%;
        padding: 0;
    }
    .img_mirepoix {
        padding-left: 0;
    }
    .texte_mirepoix, .titre_mirepoix, .titre_tarascon {
        padding-left: 0;
        padding-right: 0;
        text-align: center;
    }
    .titre_mirepoix, .titre_tarascon{
        margin-bottom: 20px;
    }
    .btn_verger {
        padding: 15px ;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) { 
    .img_foix, .img_ax, .img_tarascon {
        width: 40%;
    }
    .texte_foix, .texte_ax, .texte_tarascon {
        width: 55%;
    }
    .img_mirepoix {
        width: 100%;
        padding-left: 0;
    }
    .texte_mirepoix, .titre_mirepoix, .titre_tarascon{
        padding-left: 30px;
        padding-right: 30px;
    }
    .btn_verger {
        padding: 20px ;
    }
}

@media screen and (min-width: 1024px) { 
    .btn_verger {
        padding: 20px ;
    }
}

@media screen and (min-width: 1440px) { 
    .btn_verger {
        padding: 20px ;
    }
}

@media screen and (min-width: 2560px) { 
    .btn_verger {
        padding: 20px ;
    }
}