* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    font-family: "poppins";
    scroll-behavior: smooth;
}

button {
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6,
button {
    font-family: "Torus Notched";
}

body {
    overflow-x: hidden;
    max-width: 1920px;
}

@media (max-width :1500px) {
    body {
        background-color: beige;
    }
}

/*--HEADER--*/

header  {
    height: 120px;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}

header .container {
    width: 1500px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}

header .container ul {
    display: flex;
}

header .container ul a {
    font-size: 1.2em;
    font-weight: 500;
    margin: 0 30px;
    color: beige;
}

@media (max-width :1500px) {
    header {
        background-color: #9C4613;
        position: relative;
    }

    header .container {
        width: 100%;
    }

    header .container ul a {
        color: beige;
        font-size: 1em;
    }
}

@media (max-width: 750px) {
    header .logo {
        display: none;
    }

    header .container {
        justify-content: center;
    }

    header .container ul a {
        margin: 0 10px;
    }
}

@media (max-width: 400px) {
    header .container ul a {
        font-size: 0.8em;
    }
    
}

@media (max-width: 300px) {

    header .container ul a {
        font-size: 0.7em;
    }
}

/*--SECTION1--*/

@media (min-width: 1500px) {
    
    .sec1{
        height: 100vh;
        width: 100%;
        background-image: url(img/room.jpg); /*https://pixabay.com/photos/room-space-parquet-salon-4779953/*/
        background-repeat: no-repeat;
        background-position: top right;
    }

    .sec1 .bg-responsive {
        display: none;
    }

    .sec1 h1 {
        color: beige;
    }

    .sec1 button {
        background-color: beige;
    }

    .sec1 button:hover {
        color: beige;
    }
}

.sec1 .container {
    width: 1500px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sec1 h1 {
    font-size: 8em;
    margin-bottom: 70px;
}

.sec1 button {
    position: relative;
    height: 70px;
    width: 250px;
    border-radius: 50px;
    border: 3px solid #9C4613;
    font-size: 1.2em;
    color: #9C4613;
    z-index: 2;
    transition: 0.3s;
    overflow: hidden;
}

.sec1 button:hover {
    width: 280px;
}

.sec1 button::before {
    content: "";
    position: absolute;
    height: 70px;
    width: 280px;
    border-radius: 50px;
    background-color: #9C4613;
    top: -2px;
    left: -2px;
    transform: translate(-100%);
    transition: 0.3s;
    z-index: -1;
}

.sec1 button:hover::before, .sec3 button:hover::before, .sec4 button:hover::before {
    transform: translate(0%);
}

.sec1 button i, .sec3 button i, .sec4 button i {
    transform: scale(0);
    margin: -10px;
    transition: 0.3s;
}

.sec1 button:hover i, .sec3 button:hover i, .sec4 button:hover i {
    transform: scale(1);
    margin-left: 10px;
}


.sec1 .bg-responsive {
    margin-top: 50px;
}

.sec1 .bg-responsive img {
    width: 50%;
}

@media (max-width :1500px) {
    
    .sec1 {
        height: 100%;
        margin-top: 100px;
        color: #9C4613;
    }

    .sec1 .container {
        display: block;
        text-align: center;
        justify-content: center;
        width: 100%;
    }
    
    .sec1 button {
        background-color:beige;
    }

    .sec1 button:hover {
        color:beige;
    }

}

@media (max-width :950px) {
    .sec1 h1 {
        font-size: 6em;
        margin-bottom: 60px;
    }
}

@media (max-width :500px) {
    .sec1 h1 {
        font-size: 3em;
    }
    
    .sec1 button {
        width: 200px;
    }

    .sec1 button:hover {
        width: 200px;
    }
}

@media (max-width: 400px) {
    .sec2 .title h1 {
    font-size: 1em;
    }
}

@media (min-height: 1500px) {
    
    .sec1{
        height: 100vh;
        width: 100%;
        background-image: url(img/room.jpg); /*https://pixabay.com/photos/room-space-parquet-salon-4779953/*/
        background-repeat: no-repeat;
        background-position: top right;
    }

    .sec1 .bg-responsive {
        display: none;
    }

    .sec1 h1 {
        color: beige;
    }

    .sec1 button {
        background-color: beige;
    }

    .sec1 button:hover {
        color: beige;
    }
}

/*--SECTION2--*/

.sec2 {
    /*background-color: black;*/
    position: relative;
    z-index: 2;
    color:#9C4613;
}



.sec2 .container {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sec2 .title {
    position: relative;
    width: 100%;
    text-align: center;
    color:#9C4613;
    font-size: 3em;
    margin-bottom: 100px;
}

.sec2 .title::before {
    content: "";
    position: absolute;
    height: 30px;
    width: 200px;
    border-radius: 10px;
    background-color: #9C4613;
    clip-path: polygon(
         0 0,
         100% 0,
         100% 80%,
         80% 35%,
         64% 100%,
         48% 35%,
         31% 100%,
         16% 35%,
         0 80%
    );
    top: 100%;
    left: 50%;
    transform: translate(-50%);

}


.sec2 .container img {
    border-radius: 4%;
    width: 600px;
}

.sec2 h2 {
    font-size: 2.5em;
}

.sec2 .titre_section {
    display: flex;
    align-items: center;
}

.sec2 .point {
    margin-right: 20px;
    width: 20px;
    height: 20px;
    background-color: #9C4613;
    border-radius: 55px;
    border: 3px solid beige;
}

.sec2 .separateur {
    width: 75px;
    height: 7px;
    background-color:#9C4613;
    border-radius: 0 50px 50px 0;
    margin: 25px 0;
}

.sec2 p {
    max-width: 600px;
    line-break: anywhere;
    font-size: 1.2em;
    margin-bottom: 5%;
}

.sec2 .content-top, .content-bottom {
    width: 100%;
    display: flex;
    
    align-items: center;
    justify-content: space-around;
}

@media (min-width:1500px) {
    .content-top .left {
        max-width: 700px;
    }

    .content-bottom .right {
        max-width: 700px;
    }

    .sec2{
        /*height: 100vh;*/
        width: 100%;
        background-color: beige;
    }
}


@media (max-width: 1500px) {

    .sec2 .content-top {
        margin: 10px 0;
    }

    .sec2 .content-bottom {
        margin: 30px 0;
    }

    .sec2 .content-top, .sec2 .content-bottom img {
        width: 90%;
    }

    .content-top {
        flex-direction: column;
    }

    .content-bottom {
        flex-direction: column-reverse;
    }

    .sec2 .container {
        width: 100%;
        text-align: center;
    }

    .sec2 p {
        max-width: 900px;
        margin: 0 50px;
    }

    .sec2 .container img {
        width: 40%;
    }

    .sec2 .title {
        font-size: 3em;
    }

    .sec2 .content-top .left {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 50px;
    }

    .sec2 .content-bottom .right {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 50px;
    }


    .sec2 .separateur {
        border-radius: 50px;
    }

    .sec2 .titre_section {
        justify-content: center;
        flex-direction: column;
    }

    .sec2 .point {
        display: none;
    }
}

@media (max-width: 500px) {
    .sec2 .container title h1 {
        font-size: 1em;
    }
}


/*--SECTION 3--*/

@media (min-width:1500px) {

    .sec3 {
        background-image: url(img/1.svg);
        background-repeat: no-repeat;
        background-size: cover;
        filter: drop-shadow(5px 5px 10px #000);
    }
    
}

.sec3 {
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 1080px;
    display: flex;
    align-items: center;
}

.sec3 .container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

.sec3 .container h1 {
    color:#9C4613;
    font-size: 4em;
}

.sec3 .separateur {
    width: 100px;
    height: 7px;
    background-color:#9C4613;
    border-radius: 0 50px 50px 0;
    margin: 25px 0;
}

.sec3 p {
    color: #9C4613;
    max-width: 580px;
    line-break: auto;
    margin-bottom: 5%;
    font-size: 1.2em;
}

.sec3 button, .sec4 button {
    position: relative;
    height: 60px;
    width: 220px;
    border-radius: 50px;
    border: 3px solid #9C4613;
    background-color: transparent;
    font-size: 1.2em;
    color:#9C4613;
    z-index: 2;
    transition: 0.3s;
    overflow: hidden;
    margin-bottom: 5%;
}

.sec3 button:hover, .sec4 button:hover {
    color: beige;
    width: 280px;
}

.sec3 button::before, .sec4 button::before {
    content: "";
    position: absolute;
    height: 70px;
    width: 280px;
    border-radius: 50px;
    background-color:#9C4613;
    top: -2px;
    left: -2px;
    transform: translate(-100%);
    transition: 0.3s;
    z-index: -1;
}

.sec3 .right img {
    width: 600px;
    height: 600px;
    clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%)
}

@media (max-width: 1500px) {

    .sec3 {
        height: 750px;
    }

    .sec3 .right {
        max-width: 450px;
        align-items: center;
    }

    .sec3 .separateur {
        margin: 2%;
    }

    .sec3 .title {
        font-size: 1em;
    }
}

@media (max-width: 1050px) {

    .sec3 {
        height: 810px;
        display: contents;
    }

    .sec3 .container {
        flex-direction: column;
        align-items: center;
    }

    .sec3 .left {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .sec3 p {
        margin: 0 20px;
    }

    .sec3 button {
        margin: 50px 0;
    }

    .sec3 .right img {
        width: 80%;
        display: none;
    }

}

@media (max-width: 500px) {
    .sec3 .title {
    font-size: 0.5em;
    }
}

/*--SECTION 4 --*/

.sec4 {
    position: relative;
    height: 750px;
    z-index: 2;
    top: -2px;
}

.sec4 .container {
    display: flex;
    flex-direction: row;
    height: 100%;
    align-items: center;
}

.sec4 .left {
    margin: 0 170px 0 110px;
}

.sec4 .left img {
    width: 600px;
    border-radius: 50px;
}

.sec4 .mid {
    width: 100%;
}

.sec4 .mid h1 {
    font-size: 3em;
    color: #9C4613;
}

.sec4 .mid h2 {
    font-size: 1.90em;
    color:#9C4613;
}

.sec4 .mid p {
    max-width: 400px;
    color: #9C4613;
    margin: 50px 0;
    font-size: 1.2em;
}

.sec4 .mid a {
    color: #9C4613;
}

.sec4 .right {
    position: relative;
    left: -100px;
    z-index: -1;
}

.sec4 .right img {
    width: 300px;
    border-radius: 50%;
}

@media (min-width:1500px) {
    .sec4 {
        background-image: url(img/2.svg);
        background-repeat: no-repeat;
        background-position: left;
        background-size: cover;
        filter: drop-shadow(3px 5px 4px beige);
    }
    
}

@media (max-width: 1650px) {
    
    .sec4 .right {
        display: none;
    }
}

@media (max-width: 1250px) {
    .sec4 {
        filter: none;
        margin-top: 50px;
    }

    .sec4 .container {
        flex-direction:column-reverse;
        justify-content: center;
    }

    .sec4 .left {
        margin: 0;
    }

    .sec4 .mid {
        text-align: center;
        margin-bottom: 30px;
    }

    .sec4 .mid p {
        margin: 50px auto;
        max-width: 550px;
        width: 90%;
        line-break: anywhere;
    }

    .sec4 .mid h1,
    .sec4 .mid h2,
    .sec4 .mid p {
        color: #9C4613;
    }
}

@media (max-width: 800px) {

    .sec4 {
        height: 500px;
    }

    .sec4 .container .left img {
        width: 300px;
    }
}

@media (max-width: 500px) {

    .sec4 {
        height: 400px;
    }

    .sec4 .mid {
        margin-top: 100px;
    }
}

@media (max-width: 415px) {
    .sec4 .mid h1,
    .sec4 .mid h2,
    .sec4 .mid p {
        font-size: 1.2em;
    }
}

@media (max-width: 300px) {

    .sec4 .container .left img {
        width: 200px;
        border-radius: 50px;
    }
    
}


/*--Onglet--*/

.onglet-side {
    position: fixed;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 30px;
    z-index: 10;
}

.onglet-side a {
    height: 12px;
    width: 12px;
    margin: 5px 0;
    background-color: beige;
    border: 3px solid #9C4613;
    border-radius: 50px;
}

.onglet-side a.active {
    background-color: #9C4613;
    pointer-events: none;
}

@media (max-width: 1600px) {
    .onglet-side{
        display: none;
    }
}


/*--CONTACT--*/


#body-contact {
    background-image: url(img/log-cabin.jpg); /*https://pixabay.com/photos/room-space-parquet-salon-4779953/*/
    background-repeat: no-repeat;
    background-position: top right;
    height: 100px;
}

header .container-contact {
    width: 1500px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
}

header .container-contact ul {
    display: flex;
}

header .container-contact ul a {
    font-size: 1.2em;
    font-weight: 500;
    margin: 0 30px;
    color: beige;
}

header .container-contact {
    position: relative;
}

header .container-contact {
    width: 100%;
}


@media (max-width :1500px) {

    header .container-contact {
        width: 100%;
    }

}

@media (max-width: 750px) {

    header .container-contact {
        justify-content: center;
    }

    header .container-contact ul a {
        margin: 0 10px;
    }
}

@media (max-width: 400px) {
    header .container-contact ul a {
        font-size: 0.8em;
    }
    
}

@media (max-width: 300px) {

    header .container-contact ul a {
        font-size: 0.5em;
    }
}

.sec1-contact {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sec1-contact form {
    background: rgba(255, 255, 255, .3);
    padding: 3rem;
    border-radius: 20px;
    border-top: 1px solid rgb(125, 125, 125);
    border-left: 1px solid rgb(125, 125, 125);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    -moz-backdrop-filter: blur(5px);
    box-shadow: 20px 20px 40px -6px rgba(0, 0, 0, .2);
    text-align: center;
    width: 30%;
    position:absolute;
    top: 150px;
}

.sec1-contact p {
    color: white;
    font-weight: 500;
    opacity: .7;
    font-size: 1.4rem;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .2);
  }
    
.sec1-contact a {
    text-decoration: none;
    color: #ddd;
    font-size: 12px;
}
  
.sec1-contact a:hover {
    text-shadow: 2px 2px 6px #00000040;
}
  
.sec1-contact a:active {
    text-shadow: none;
}

input {
    background: transparent;
    border: none;
    border-top: 1px solid rgb(125, 125, 125);
    border-left: 1px solid rgb(125, 125, 125);
    padding: 1rem;
    width: 200px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    -moz-backdrop-filter: blur(5px);
    box-shadow: 4px 4px 60px rgba(0, 0, 0, .2);
    color: white;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .2);
    transition: all .3s;
    margin-bottom: 2em;
    width: 50%;
}

textarea {
    background: transparent;
    border: none;
    border-top: 1px solid rgb(125, 125, 125);
    border-left: 1px solid rgb(125, 125, 125);
    padding: 1rem;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    -moz-backdrop-filter: blur(5px);
    box-shadow: 4px 4px 60px rgba(0, 0, 0, .2);
    color: white;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .2);
    transition: all .3s;
    margin-bottom: 1em;
    width: 80%;
}

input[type="file"] {
    background: transparent;
    border: none;
    border-top: 1px solid rgb(125, 125, 125);
    border-left: 1px solid rgb(125, 125, 125);
    padding: 1rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    -moz-backdrop-filter: blur(5px);
    box-shadow: 4px 4px 60px rgba(0, 0, 0, .2);
    color: white;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .2);
    transition: all .3s;
    width: 50%;
}

input:hover,
input[type="Nom"]:focus,
input[type="Prenom"]:focus,
input[type="Phone"]:focus,
input[type="Email"]:focus,
textarea[type="Message"]:focus{
  background: rgba(255,255,255,0.1);
  box-shadow: 4px 4px 60px 8px rgba(0,0,0,0.2);
}
    
input[type="button"] {
  margin-top: 10px;
  width: 150px;
  font-size: 1rem;
  cursor: pointer;
}

::placeholder {
  color: #fff;
}

@media (max-width: 1000px) {

    .sec1-contact {
        height: 100%;
    }
    
    .sec1-contact form {
        padding: 1rem;
        border-radius: 20px;
        width: 80%;
    }

    .sec1-contact form p {
        color: white;
        margin-bottom: 10px;
      }
    
    .sec1-contact form input {
        margin-bottom: 10px;
    }

    input {
        padding: 1rem;
        margin-bottom: 10px;
    }
}

#header-contact {
    background-color: transparent;
    margin-bottom: 5%;
}

/** GALERIE**/

header .container-galerie {
    width: 1500px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
}

header .container-galerie ul {
    display: flex;
}

header .container-galerie ul a {
    font-size: 1.2em;
    font-weight: 500;
    margin: 0 30px;
    color: #9C4613;
}

header .container-galerie {
    background-color: beige;
    position: relative;
}

header .container-galerie {
    width: 100%;
}

header .container-galerie ul a {
    color: #9C4613;
}

.sec1-galerie .separateur-galerie {
    margin-bottom: 8%;
}

@media (max-width :1500px) {

    header .container-galerie {
        width: 100%;
    }

    .sec1-galerie .separateur-galerie {
        margin-bottom: 0;
    }

}

@media (max-width: 750px) {

    header .container-galerie {
        justify-content: center;
    }

    header .container-galerie ul a {
        margin: 0 10px;
    }
}

@media (max-width: 400px) {
    header .container-galerie ul a {
        font-size: 0.8em;
    }
    
}

@media (max-width: 300px) {

    header .container-galerie ul a {
        font-size: 0.7em;
    }
}


.sec1-galerie {
    background: linear-gradient(45deg, beige, beige);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.sec1-galerie .b-dics {
    width: 50%;
    margin-bottom: 20px;
}