

:root {
    --primary: #f08080;
    --secondary: #050404;
    --third: #f4dadb;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

 body {
    font-size: 15px;
    background: rgb(246, 241, 241);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 100%;
    overflow-x: hidden;
}

/*HEADER*/
.header {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
    background: var(--third);
    padding: 10px;
    z-index: 99999;
}

.logo {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 50%;
    height: auto;
    animation: discovery 1.5s linear;
}

.logo img {
    width: 150px;
    height: 100px;
    transform: scale(1);
}

.title-logo {
    display: flex;
    justify-content: start;
    align-items: center;
    font-family: "Allura";
    font-weight: 100;
    height: 100px;
    padding-top: 20px;
}

@keyframes discovery {
    0% {opacity: 0; transform: scale(0);}
    100% {opacity: 1; transform: scale(1);}
}

.ul-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 20px auto 0;
}

.li-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    font-weight: 600;
    width: 25%;
    padding: 10px 0;
    list-style-type: none;
    transition: .5s;
}

.li-header:hover {
    text-decoration: 2px underline var(--secondary);
    transition: .5s;
}

.li-header:hover a {
    color: var(--primary);
    transform: scale(1.1);
}

.li-header:last-child {
    background: var(--secondary);
}

.li-header:last-child a {
    color: var(--primary);
}

.li-header:last-child {
    text-decoration: var(--primary);
}

.li-header a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    text-decoration: none;
    color: #2c2e2e;
}

/*SECTION-1*/
.section-1 {
    padding-top: 70px;
    width: 100%;
    height: 700px;
    padding-bottom: 40px;
}

.container-section-1 {
    position: relative;
    display: block;
    margin: auto;
    width: 100%;
    height: 300px;
    background: var(--third);
}

.h1-presentation {
    font-family: allura;
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    color: var(--secondary);
}

.image-section-1 {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
    height: auto;
    margin: auto;
}

.image-section-1 img {
    height: 600px;
    width: 100%;
    transform: scaleX(1);
    object-fit: cover;
}

.block-section-1 {
    position: absolute;
    top: 30%;
    left: 5%;
    display: block;
    margin: auto 50px;
    padding: 10px;
    width: 30%;
    height: auto;
    background: rgba(246, 241, 241);
}

.block-section-1 a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px auto;
    border: 2px solid var(--secondary);
    text-decoration: none;
    color: var(--secondary);
    padding: 5px 10px;
    background: var(--primary);
    font-weight: 600;
    width: 200px;
}

.block-section-1 a:hover {
    background: var(--secondary);
    color: var(--primary);
}

.title {
    font-family: "Allura", cursive;
    font-weight: bold;
    font-size: 36px;
    margin: 10px 0;
    text-decoration: 2px underline var(--primary);
    text-align: center;
}

.paragraphe-section-1 {
    margin: 70px 0;
    text-align: center;
    line-height: 1.5;
}

/*SECTION-COUNTER*/
#counter-section {
    background: var(--third);
    padding: 20px 20px 20px;
    width: 100%;
}

.block-counter {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 auto;
    margin: auto;
    width: 100%;
}

.symbol {
    display: flex;
    color: #ca3636;
    font-size: 40px;
    font-weight: 400;
}

.counter-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: auto;
    margin: 20px;
    width: 100%;
    font-size: 24px;
    font-weight: 200;
    color: #ca3636;
}

/*SECTION-2*/
.section-2 {
    width: 100%;
    padding: 20px;
    height: auto;
}

.container-section-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: auto 100px;
}

.container-section-2 img {
    margin: 25px auto 0;
    height: 400px;
}

.image-section-2 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.image-section-2 img {
    height: 400px;
    width: 80%;
    box-shadow: 10px 10px 0px var(--third), 
    -10px -10px 0px var(--primary);
}

.block-section-2 {
    width: 50%;
}

.title {
    width: 100%;
    text-align: center;
    margin: 20px auto 0;
}

.ul-offres {
    position: relative;
    width: 100%;
    z-index: 99;
}

.ul-offres::after {
    content: "";
    position: absolute;
    top: 0px;
    right: -10px;
    width: 20%;
    height: 100%;
    background: var(--third);
    z-index: -1;
}

.li-offres {
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5px auto;
    width: 100%;
    font-size: 20px;
}

.li-offres:hover {
    text-decoration: 2px underline var(--primary);
}

.prix {
    margin: 0 20px;
    font-family: "Allura", cursive;
    color: var(--secondary);
    font-size: 26px;
    font-weight: bold;
}

/*SECTION-3*/
.section-3 {
    width: 100%;
    padding: 40px 20px;
    height: auto;
}

.container-section-3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    width: 100%;
}

.container-section-3 img {
    margin: 25px auto 0;
    height: 400px;
}

.content-section-3 {
    width: 50%;
    margin: 0;
}

.content-section-3 .ul-offres .prix {
    margin: 0;
}

.image-section-3 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.image-section-3 img {
    height: 400px;
    width: 80%;
    box-shadow: 10px 10px 0px var(--third),
    -10px -10px 0px var(--primary);
}

/*SECTION-4*/
.section-4 {
    width: 100%;
    padding: 40px 20px;
    height: auto;
}

.container-section-4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    width: 100%;
    padding: auto 20px;
}

.content-section-4 {
    display: block;
    width: 50%;
}

.image-section-4 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.container-section-4 img {
    width: 80%;
    height: 400px;
    box-shadow: 10px 10px 0px var(--primary),
    -10px -10px 0px var(--third);
}

/*SECTION-5*/
.section-5 {
    width: 100%;
    padding: 0px 20px;
    height: auto;
}

.paragraphe-section-5 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--primary);
    width: 50%;
    height: 650px;
    margin: auto;
    padding: 30px;
    font-size: 20px;
}

.prestation {
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    margin: 20px auto;
    height: 650px;
}

.prestation img {
    width: 50%;
    height: 650px;
}

.slider{
    position: relative;
    max-width: 50%;
    margin: 50px auto 20px;
    border-radius: 0px;
    overflow: hidden;
    background: #000;
}

.slides {
    position: relative;
    height: 520px;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img, .slide video {
    width: 100%;
    height: 100%;
    display: block;
}
    
.slide.is-active {
    display: block;
    opacity: 1;
    z-index: 0;
    object-fit: cover;
}

.caption {
    position: absolute;
    bottom: 30px;
    left: 30px;
    padding: 10px;
    font-weight: bold;
    color: black;
    background: rgba(0, 0, 0, 0.162);
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
}

.nav-arrow:hover {
    background: var(--third);
}

.nav-prev {
        left: 12px;
}

.nav-next {
        right: 12px;
}

    
.nav-arrow svg {
        width: 20px;
        height: 20px;
        fill: #333;
}

.dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    border-radius: 0;
    padding: 12px;
    background: rgb(246, 241, 241);
    z-index: 9999;
}

.dot {
    width: 64px;
    height: 44px;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
    opacity: .6;
    border: 2px solid transparent;
}

.dot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dot.is-active {
    opacity: 1;
    border-color: var(--primary);
}

/*SECTION-AVIS*/
.section-avis {
    width: 100%;
    height: auto;
    padding: 20px;
}

.container-avis {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    padding: 20px;
    z-index: 999;
}

.container-avis::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    border-radius: 4px;
    height: 100%;
    z-index: 1;
}

.content-avis {
    position: relative;
    display: block;
    width: 40%;
    height: auto;
    border: 2px solid var(--secondary);
    margin: 50px auto;
    border-radius: 4px;
    z-index: 999;
}

.firstname {
    text-align: center;
    margin: 0;
    background: var(--secondary);
    color: whitesmoke;
    font-weight: 600;
    padding: 10px 0;
}

.name {
    padding: 10px;
}

.name-avis img {
    position: absolute;
    top: 0%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--secondary);
}

.stars {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px auto 20px;
    width: 20%;
}

.stars img {
    width: 30px;
    height: 30px;
}

/*SECTION-LOCALISATION*/
.section-localisation {
    width: 100%;
    padding: 20px;
    height: auto;
}

.container-localisation {
    display: block;
    width: 100%;
    margin: 0 auto;
}

.h3-localisation {
    text-align: center;
    margin: 20px;
    font-size: 20px;
    text-decoration: 1px underline var(--primary);
}

.ul-localisation {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: auto;
}

.li-localisation {
    width: 50%;
    margin: 5px auto;
}

.p-localisation, .p-localisation-final {
    text-align: center;
    margin: 20px;
}

/*IFRAME*/
iframe {
    width: 100%;
    height: 400px;
    margin: 30px auto;
    border: none;
}

/*SECTION-6*/
.section-6 {
    width: 100%;
    padding: 20px 20px;
    height: auto;
}

.container-section-6 {
    display: block;
    margin: auto;
    text-align: center;
    width: 100%;
    height: auto;
}

.container-section-6 a {
    text-decoration: none;
    color: var(--secondary);
}

.numero {
    color: #ca3636;
    text-decoration: 2px underline var(--secondary);
}

.block-horaire {
    width: 200px;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px auto;
}

.heure, .span-horaires  {
    display: flex;
    width: 100px;
    margin: 5px auto;
}

.span-horaires {
    justify-content: start;
}

.container-section-6 .title {
    margin: 0 0 20px 0;
}

.content-section-6 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    height: auto;
}

.emplacement {
    color: var(--secondary);
    text-decoration: none;
    border: 2px var(--secondary) solid;
    background: var(--primary);
    width: 250px;
    padding: 5px 10px;
    height: auto;
    font-weight: 600;
}

.emplacement:hover {
    background: var(--secondary);
    color: var(--primary);
}

/*FOOTER*/
.footer {
    display: block;
    width: 100%;
    background: var(--third);
}

.footer-title img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    width: 200px;
    height: 200px;
}

.footer a {
    text-decoration: none;
}

.footer-h4 {
    color: var(--secondary);
}

.info-footer {
    text-align: center;
}

.reseaux {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: auto;
    padding: 20px;
    width: 50%;
}

.reseaux img {
    border-radius: 10px;
}

/*COPYRIGHT*/
.h6-copyright {
    text-align: center;
}

.h6-copyright a {
  	font-size: 20px;
    color: var(--primary);
    text-decoration: 2px underline var(--secondary);
}

/*RESPONSIVE*/
@media only screen and (max-width: 700px) {
    /*HEADER*/
.header {
    display: block;
    width: 100%;
    height: auto;
    background: var(--third);
    margin: auto;
    z-index: 99999;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: auto;
    height: 100px;
    width: 100%;
    transition: 2s;
}

.logo img {
    width: 50%;
    height: 100px;
}

.title-logo {
    height: auto;
    padding: 0 0 20px 0;
}

.ul-header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: auto;
    padding: auto;
    border: none;
    background: var(--third);
}

.none {
    height: 0;
    animation: root 3s linear;
    transform: translateY(-240px);
    transition: height 1s;
}

@keyframes root {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-240px);
        display: none;
    }
}

.li-header {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    width: 100%;
    list-style-type: none;
    border: 0;
}

.li-header:hover a {
    background: none;
    color: var(--primary);
}

.li-header a {
    text-decoration: none;
    color: #2e2c2c;
    width: 80px;
}

/*SECTION-1*/
.section-1 {
    width: 100%;
    height: 670px;
    padding: 170px 0 0;
    background-color: var(--third);
}

.h1-presentation {
    font-family: allura;
    color: var(--secondary);
    font-size: 20px;
    font-weight: bold;
}

.container-section-1 {
    position: relative;
    display: block;
    padding: 0;
    width: 100%;
    height: 300px;
    background: var(--third);
}

.block-section-1 {
    position: absolute;
    top: 0;
    left: 0%;
    display: block;
    margin: auto;
    padding: 20px;
    width: 60%;
    background-color: rgba(245, 245, 245, 0.79);
}

.block-section-1 a {
    background: var(--primary);
    color: var(--secondary);
    border: 2px solid var(--primary);
    width: 80%;
    font-size: 60%;
}

.block-section-1 a:hover {
    border: 2px solid var(--secondary);
    background: var(--secondary);
}

.image-section-1 img {
    height: 500px;
    width: 100%;
    object-position: right ;
    display: block;
}

.image-section-1 {
    position: absolute;
    top: 75%;
    width: 100%;
    height: 500px;
    margin: 0;
    padding: 0px; /* déplacé ici */
    box-sizing: border-box;
}


.paragraphe-section-1 {
    margin: 20px auto;
    font-size: 14px;
    line-height: 1.2;
}

/*SECTION-COUNTER*/
#counter-section {
    background: var(--third);
    padding: 20px;
    width: 100%;
}

.block-counter {
    display: block;
    padding: 0 auto 20px;
    margin: auto;
    width: 100%;
}

.icon {
    margin-bottom: 20px;
}

.symbol {
    display: flex;
    color: #ca3636;
    font-size: 30px;
    font-weight: 400;
}

.counter-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: auto;
    margin: 50px auto;
    width: 100%;
    font-size: 24px;
    font-weight: 200;
    color: rgb(202, 54, 54);
}

/* SECTION-2*/
.section-2 {
    width: 100%;
    padding: 0;
}

.container-section-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.title {
    margin: 20px auto;
}

.block-section-2 {
    display: block;
    padding: 10px;
    width: 100%;
    z-index: 1;
}

.ul-offres::after {
    content: "";
    position: absolute;
    top: 0px;
    right: -10px;
    width: 20%;
    height: 100%;
    background: var(--third);
    z-index: -1;
}

.prix {
    margin: 0;
}

.container-section-2 img {
    width: 80%;
    height: 300px;
    box-shadow: 10px 10px 0px var(--primary),
    -10px -10px 0px var(--third);
}

.image-section-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    width: 90%;
}

.ul-offres {
    position: relative;
    z-index: 99;
}

/*SECTION-3*/
.section-3 {
    width: 100%;
    padding: 0;
}

.container-section-3 {
    display: block;
    width: 100%;
}

.container-section-3 img {
    width: 80%;
    height: 300px;
    box-shadow: 10px 10px 0px var(--primary),
    -10px -10px 0px var(--third);
}

.content-section-3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 10px;
}

.image-section-3 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    width: 90%;
}

/*SECTION-4*/
.section-4 {
    width: 100%;
    padding: 0;
}

.container-section-4 {
    display: block;
    width: 100%;
}

.content-section-4 {
    width: 100%;
    margin: 0;
    padding: 10px;
}

.image-section-4 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    width: 90%;
}

.container-section-4 img {
    width: 80%;
    height: 300px;
    box-shadow: 10px 10px 0px var(--primary),
    -10px -10px 0px var(--third);
}

/*SECTION-5*/
.section-5 {
    width: 100%;
    height: auto;
    padding: 0;
}

.container-section-5 {
    padding: 0px;
}

.paragraphe-section-5 {
    font-weight: 400;
    background: var(--third);
    margin: 0 auto 20px;
    width: 100%;
    height: auto;
}

.prestation img {
    width: 90%;
    height: 400px;
    margin-bottom: 20px;
    object-fit: cover;
    box-shadow: 10px 10px 0 var(--primary),
    -10px -10px 0 var(--third);
}

.prestation {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
    margin: auto;
    padding: 10px;
    width: 100%;
    height: auto;
}

.slider {
    max-width: 100%;
    margin: 20px;
}

.slides {
    height: 320px;
}

.dot {
    width: 48px;
    height: 34px;
}

.caption{
    position: absolute;
    left: 16px;
    bottom: 10px;
    color: #fff;
    background: rgba(0,0,0,0.35);
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
    z-index: 4;
}

/*SECTION-AVIS*/
.section-avis {
    width: 100%;
    height: auto;
    padding: 20px;
}

.container-avis {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding: 0 auto;
    z-index: 999;
}

.content-avis {
    position: relative;
    display: block;
    width: 100%;
    height: 200px;
    border: 2px solid var(--secondary);
    margin: 50px auto;
    border-radius: 4px;
    z-index: 999;
}

.firstname {
    display: flex;
    justify-content: start;
    align-items: end;
    height: auto;
    background: var(--secondary);
    font-weight: 600;
    padding: 10px;
    color: whitesmoke;

}

.name {
    padding: 10px;
}

.name-avis img {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid var(--secondary);
}

.stars {
    position: absolute;
    top: 10px;
    right: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px auto 20px;
    width: 20%;
}

.stars img {
    width: 20px;
    height: 20px;
}

.p-avis {
    display: flex;
    justify-content: end;
    margin: 20px auto;
}
  
  /*SECTION-LOCALISATION*/
.li-localisation {
  width: 80%
  }

/*SECTION-6*/
.section-6 {
    padding: 20px;
}

.content-section-6 h4 {
    width: 80%;
    margin: 20px auto;
}

.emplacement {
    border: 2px solid var(--primary);
}

.emplacement:hover {
    border: 2px solid var(--secondary);
}

}