/* ------Font------ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Kameron:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Antic+Didone&display=swap');
:root{
    /* Principal Color */
    --BB: #35271B;
    --WB: #E3CAAB;

    /* BG */
    --BGW: #F8F6EE;

    /* Txt */
    --B: #000;
    --W: #fff;
}

body{
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    background-color: var(--BGW);
}
.TopSection{
    background-image: url(src/BG/BG_Image.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 800px;
    position: relative;
}
.l{
    display: flex;
    align-items: end;
    margin-left: 40px;
    padding-top: 8px;
}
#logoTxt{
    margin: 0;
    color: var(--W);
    font-size: 30px;
    font-family: "Kameron";
    font-weight: lighter;
}
#logoTxtSmall{
    font-size: 12px;
    color: var(--W);
    margin-left: 5px;
    font-family: "Kameron";
    font-weight: lighter;
}
.TopTxtSec{
    margin-top: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* position: relative; */
}
#LL{
    position: absolute;
    bottom:0;
    transform: translateY(50%);
    width: 150px;
}
h1{
    color: var(--W);
    font-family: "Antic Didone";
    font-weight: 300;
    font-size: 50px;
    line-height: 0;
}
h3{
    text-align: center;
    color: var(--W);
    font-family: "inter";
    font-weight: 200;
    width: 700px;
    margin: 10px 0 50px 0;
}
#explore{
    color: var(--W);
    border: solid var(--W) 2px;
    background-color: transparent;
    font-family: "inter";
    font-weight: 300;
    padding: 12px 35px;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s;
}
#explore:hover{
    background-color: var(--W);
    color: var(--B);
}

#Article{
    margin-top: 200px;
}
.Creations,.HistoireTitle{
    margin-left: 50px;
    font-size: 28px;
    font-family: "Antic Didone";
    font-weight: 500;
    position: relative;
}
.Creations::after ,.HistoireTitle::after{
    content: "";
    position: absolute;
    width: 250px;
    height: 2px;
    background-color: var(--BB);
    left: -4px;
    bottom: -6px;
}
.card,.card1,.card2{
    width: 350px;
    height: 470px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    display: flex;
    align-items: end;
    justify-content: center;
    position: relative;
    margin: 20px 80px;
    box-shadow:  4px 2px 14px #b1b1b1b2;
    
    
}
.card{
    background-image: url(src/Robes/IMG_20240202_202322.jpg);
}
.card1{
    background-image: url(src/Robes/IMG_20240202_202457.jpg);
}
.card2{
    background-image: url(src/Robes/IMG_20240202_202404.jpg);
}

.nomActicle{
    z-index: 8;
    color: var(--B);
    font-size: 16px;
    /* background-color: var(--BB); */
    padding: 5px 20px;
    border-radius: 20px;
    font-family: "inter";
    font-weight: 500;
    
}
.card::after, .card1::after, .card2::after{
    z-index: 5;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg,#110e0bd5,#35271b00);
    border-radius: 10px;
    opacity: 0;
    transition: all 0.4s;
}
.card:hover:after,.card1:hover:after,.card2:hover:after{
    opacity: 1;
}
.grid{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}
.AllCard{
    padding-bottom: 5px;
    background-color: var(--BGW);
    margin: 20px 80px;
    border-radius: 10px;
    box-shadow:  4px 2px 14px #b1b1b1b2;
    transition: all 0.4s;
}
.AllCard:hover{
    box-shadow:  4px 2px 14px #b1b1b1;
}
/** Histoire **/
.histoire1,.histoire2{
    display: flex;
    align-items: center;
    background-color: var(--BB);
    justify-content: center;
    width: 80%;
    padding: 20px 0 20px 20px;
    border-bottom-left-radius: 200px;
    border-top-left-radius: 200px;
    margin-top: 100px;
    box-shadow:  7px 7px 14px #a1a1a1,
             -7px -7px 14px #ffffff;
}
.histoire2{
    flex-direction: row-reverse;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    border-bottom-right-radius: 200px;
    border-top-right-radius: 200px;
    padding: 20px 20px 20px 0;
}
.numberBox{
    display: flex;
    
    padding: 10px;
    border-radius: 200px;
    background-color: var(--WB);
}
.ParagrapheHist{
    margin-left: 50px;
}
#a1{
    text-align: center;
    color: #35271B;
    border: var(--BB) dashed 5px;
    width: 80px;
    font-size: 90px;
    font-family: "Kameron";
    padding: 38px 46px;
    border-radius: 250px;
    margin: 0;
}
.para,.title_Para{
    color: var(--W);
    width: 80%;
    font-family: "inter";
    line-height: 20px;
}
.title_Para{
    font-weight: 500;
    font-size: 20px;
}
.para{
    font-weight: 200;
    font-size: 14px;
}
.center{
    display: flex;
    justify-content: end;
}
.center2{
    display: flex;
    justify-content: start;
}

#Avantage{
    background-color: var(--BB);
    border-top-right-radius: 40px;
    border-top-left-radius: 40px;
    box-shadow:  0px -2px 14px #0000006b;
    padding-bottom: 50px;
}
#Histoire{
    background-color: var(--BGW);
    border-top-right-radius: 40px;
    border-top-left-radius: 40px;
    transform: translateY(-70px);
    padding-top: 50px;
}

.topContact{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.center3{
    display: flex;
    justify-content: center;
}
.z{
    width: 1;
    height: 25px;
    border: none;
    background-color: transparent;
    color: var(--B);
    font-family: "inter";
    font-weight: 500;
    position: relative;
    line-height: 0;
    margin-left: 15px;
}
.z::after{
    content: "";
    position: absolute;
    width: 250px;
    height: 2px;
    background-color: var(--BB);
    left: -4px;
    bottom: -60px;
}
.nameInfo,.mailInput,.writeInfo{
    line-height: 0;
    margin: 8px;
    font-size: 12px;
    font-family: "inter";
    font-weight: 500;
}

.leftPart{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--BB);
    position: relative;
    padding: 20px 50px;
    box-shadow:  0px 4px 14px #0000006b;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

.SVG_Contact{
    height: 20px;
    width: 20px;
}
.contactPart{
    display: flex;
    margin-bottom: 200px;
    
}

.Creations::after{
    background-color: var(--BB);
}
.PhoneInfo,.MailInfo,.LocationInfo{
    display: flex;
    align-items: center;
    color: var(--W);
}
.Info{
    margin-left: 10px;
    font-family: "inter";
    font-weight: 200;
    font-size: 14px;
}
#HeaderContactInfo{
    font-family: "inter";
    font-size: 20px;
    color: var(--W);
    font-weight: 300;
    line-height: 0;
}
#txtContact{
    font-family: "inter";
    color: var(--W);
    font-weight: 200;
    font-size: 14px;
    padding-right: 50px;
    width: 80%;
}
.InfoContact{
    margin-left: 6vw;
}
form{
    /* border: var(--BB) dashed 2px; */
    background-color: transparent;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    padding: 10px 5vw 10px 10px;
    position: relative;
    box-shadow:  0px 4px 14px #0000006b;
}
#messageInput{
    width: 80%;
    height: 150px;
    font-family: "inter";
    font-weight: 500;
    color: var(--B);
    padding: 5px;
    background-color: var(--BGW);
    border: none;
    position: relative;
    margin-left: 15px;
}
#messageInput:focus{
    outline: none;
}
.contentContact{
    margin-top: 20px;
}
.REQUIRED{
    position: relative;
}
.REQUIRED:focus{
    outline: none;
}
.REQUIRED::after{
    position: absolute;
    content: "";
    bottom: -10px;
    right: 0;
    width: 95%;
    height: 2px;
    background-color: var(--BB);
}
.SendMail{
    background-color: var(--BB);
    font-family: "inter";
    font-weight: 300;
    font-size: 16px;
    padding: 12px 35px;
    border-radius: 50px;
    color: var(--W);
    border: none;
    cursor: pointer;
    margin: 25px 0 0 15px;
}

footer{
    background-color: #35271B;
    margin: 0;
    display: flex;
    justify-content: space-around;
}
.centerFooter ul li{
    margin-left: 20px;
    list-style: none;
    margin: 15px 0 15px 20px;
}
.centerFooter ul{
    font-family: 'inter';
    font-weight: 300;
    color: var(--W);
    font-size: 16px;
    
}
.centerFooter ul li a{
    text-decoration: none;
    color: var(--W);
    font-family: "inter";
    font-weight: 200;
    font-size: 14px;
}
.leftFooter, .rightFooter{
    display: flex;
    align-items: center;
}
.leftFooter img{
    width: 100px;
}
.LogTxt{
    display: flex;
    align-items: center ;
    color: var(--W);
    margin-left: 10px;
}
.F{
    font-size: 20px;
}
.S{
    font-size: 10px;
}
.rightFooter ul li{
    color: var(--W);
    font-size: 14px;
    font-family: 'inter';
    font-weight: 200;
    list-style: none;
    margin-left: 10px;
    margin: 15px 0 15px 20px;
}
.rightFooter ul{
    font-family: 'inter';
    font-weight: 300;
    color: var(--W);
    font-size: 16px;
    
}
.rightFooter ul div{
    display: flex;
    align-items: center;
}
.rightFooter ul div .SVG_Contact{
    margin-right: 8px;
    width: 16px;
    height: 16px;
}
.rightFooter ul{
    font-family: 'inter';
    font-weight: 300;
    color: var(--W);
    font-size: 16px;
}
#Contact{
    margin-top: 150px;
    
}

.avantageFrame .left{
    background-color: #b1b1b1;
    border-bottom-left-radius: 500px;
    border-top-left-radius: 500px;
}
.avantageFrame .left .img{
    margin-right: 150px;
    width: 180px;
    height: 180px;
    background-image: url(Terre\ à\ 1\ feuille\ Fond\ brun\ clair.png);
    background-size: 120%;
    background-position: center;
    border-radius: 500px;
}
.avantageFrame,.avantageFrameA{
    display: flex;
    align-items: center;
}
.avantageFrame .right{
    line-height: 18px;
    max-width: 300px;
}
.right .pp{
    color: var(--W);
    font-weight: 500;
    font-size: 20px;
    margin-left: 20px;
    margin-right: 20px;
}
.ppp{
    color: var(--W);
    font-family: "inter";
    font-weight: 200;
    font-size: 14px;
    margin-left: 20px;
    margin-right: 20px;
}

.avantageFrameA .left{
    background-color: var(--WB);
    border-bottom-left-radius: 500px;
    border-top-left-radius: 500px;
    box-shadow:  0px 4px 14px #0000006b;
}
.avantageFrame .leftt .img{
    margin-left: 150px;
    width: 150px;
    height: 150px;
    background-image: url(src/Avantages/Ebena\ C\ Chef\ fond\ brun.png);
    background-size: 100%;
    background-position: center;
    border-radius: 500px;
    border: 5px dashed var(--BB);
    margin: 20px;
}
.c{
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}
.avantageFrame{
    margin-top: 0;
    
}

.avantageFrame .leftt{
    background-color: var(--WB);
    border-bottom-right-radius: 500px;
    border-top-right-radius: 500px;
    box-shadow:  0px 4px 14px #0000006b;
}
.avantageFrameA .left .img{
    margin-right: 150px;
    width: 150px;
    height: 150px;
    background-image: url(src/Avantages/Terre\ à\ 1\ feuille\ Fond\ brun\ clairF.png);
    background-size: 120%;
    background-position: center;
    border-radius: 500px;
    border: 5px dashed var(--BB);
    margin: 20px;
}
.avantageFrameA .right{
    line-height: 18px;
    max-width: 300px;
}
.AV{
    padding-top: 50px;
    margin-left: 50px;
    font-size: 28px;
    font-family: "Antic Didone";
    font-weight: 500;
    position: relative;
    color: var(--W);
}
.AVA{
    margin-left: 50px;
    font-size: 28px;
    font-family: "Antic Didone";
    font-weight: 500;
    position: relative;
    color: var(--W);
}
.AV::after{
    content: "";
    position: absolute;
    width: 250px;
    height: 2px;
    background-color: var(--WB);
    left: -4px;
    bottom: -6px;
}
.AVA::after{
    content: "";
    position: absolute;
    width: 250px;
    height: 2px;
    background-color: var(--WB);
    left: -4px;
    bottom: -6px;
}
.avantageFrameA{
    margin-bottom: 200px;
}
@media screen and (max-width: 900px) {
    .c{
        flex-direction: column;
    }
    .avantageFrameA{
        justify-content: end;
    }
    .contactPart{
        display: block;
    }
    form{
        border-top-right-radius: 0;
        border-bottom-left-radius: 50px;
        padding-bottom: 25px;
    }

    .leftPart{
        padding: 10px 10px;
        border-bottom-left-radius: 0;
        border-top-right-radius: 50px;
    }
    .contactPart{
        position: relative;
    }
    .histoire1,.histoire2{
        /* display: block; */
        flex-direction: column;
        
    }
    .histoire1{
        border-bottom-left-radius: 50px;
        border-top-left-radius: 50px;
    }
    .histoire2{
        border-bottom-right-radius: 50px;
        border-top-right-radius: 50px;
    }
    .avantageFrameA .right{
        margin-top: 50px;
    }


}
@media screen and (max-width: 750px){
    footer{
        display: flex;
        flex-direction: column;
    }
    h3{
        width: 90vw;
    }
    h1{
        text-align: center;
        width: 95vw;
        line-height: 60px;
    }
    .leftFooter{
        padding-top: 30px;
    }
    .topContact{
        flex-wrap: wrap;
    }
    .leftPart{
        border-top-right-radius: 50px;
        
    }
}
@media screen and (max-width: 350px){
    h1{
        font-size: 28px;
    }
    .card1,.card2,.card{
        width: 100vw;
        height: 128vw;
    }
    .AVA,.AV,.Creations{
        font-size: 20px;
        margin: 0;
    }
    .AVA::after,.AV::after,.Creations::after{
        width: 80vw;
    }
    #LL{
        width: 50px;
    }
    .leftFooter img{
        width: 50px;
    }
    .avantageFrame .leftt .img{

        width: 30vw;
        height: 30vw;

    }
    .avantageFrameA .left .img{

        width: 30vw;
        height: 30vw;

    }
    .Avantage{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .rightFooter ul li{
        color: var(--W);
        font-size: 14px;
        font-family: 'inter';
        font-weight: 200;
        list-style: none;
        margin-left: 10px;
        margin: 15px 0 15px 20px;
    }
    .Creations::after ,.HistoireTitle::after{

        width: 80vw;

    }
    
}