@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

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

body{
    font-family: "Lato";
    font-weight: 400;
    background-color: #FFD2D0;
    overflow-x: hidden;
    min-height: 100dvh;
}

html {
    height: 100%;
}

h1{
    font-size: 136px;
    font-family: "Playfair Display", serif;
    font-weight: 400;
}

h2{
    font-size: 52px;
    font-family: "Playfair Display";
    font-weight: 400;
}

h3{
    font-size: 32px;
    font-family: "Lato";
    font-weight: 400;
}

p, a, button{
    font-size: 20px;
    font-family: "Lato";
}

a, button{
    cursor: pointer;
}

/* Header */

header{
    width: 100%;
    padding: 3dvh 3vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.home{
    background-color: #EE9591;
}

.logo{
    font-size: 50px;
    font-family: "Dancing Script";
    color: #3F3E3E;
    text-decoration: none;
}

.home .logo{
    color: #FEF8F8;
}

.home .menu a{
    color: #FEF8F8;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.5s ease;
}

.home .menu a:hover{
    color: #FEF8F8;
    border-bottom: 2px solid #FEF8F8;
}

.menu{
    width: 300px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.menu a{
    color:#3F3E3E ;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.5s ease;
}

.menu a:hover{
    border-bottom: 2px solid #3F3E3E;
}

.menu-mobile{
    display: none;
}

.btn-rendezvous{
    background-color: #FEF8F8;
    color: #EE9591;
    min-width: 12vw;
    min-height: 5dvh;
    border-radius: 25px;
    text-align: center;
    text-decoration: none;
    padding: 10px;
    border: 2px solid #FEF8F8;
    transition: background-color 0.5s ease, color 0.5s ease, border 0.5s ease;
}

.btn-rendezvous:hover{
    background-color: transparent;
    color: #FEF8F8;
    border: 2px solid #FEF8F8;
    
}

.menu-burger{
    display: none;
}

.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

html.no-scroll {
  overflow: hidden;
}

/* Page Accueil */

.hero{
    text-align: center;
    width: 100%;
    min-height: 90dvh;
    padding: 3vw;
    background: #FFD2D0;
    background: linear-gradient(0deg, rgba(255, 210, 208, 1) 0%, rgba(238, 149, 145, 1) 50%);
    color: #FEF8F8;
}

.hero h1{
    margin-top: 5dvh;
    line-height: 130px;
}

.hero h3{
    margin-bottom: 5dvh;
}

.hero p{
    width: 40vw;
    margin: 5dvh auto;
}

.presentation{
    width: 100%;
    min-height: 100dvh;
    padding: 5dvh 3vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.presentation img{
    width: 35vw;
}

.presentation-texte, .cta-texte{
    width: 50vw;
}

.presentation-texte h2{
    margin-bottom: 5dvh;
}

.paragraphe1{
    margin-bottom: 2dvh;
}

.services-accueil{
    background-color: #FEF8F8;
    color:#EE9591 ;
    width: 100%;
    padding:3dvh 3vw; 
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-accueil h2, .social-proof h2{
    text-align: center;
    margin-bottom: 5dvh;
}

.services-container{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}

.service{
    width: 31%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 5dvh;
}

.service img{
    object-fit: cover;
    width: 100%;
    height: 50dvh;
}

.service h3{
    margin: 2dvh 0 0.5dvh 0;
}

.prix{
    margin-bottom: 2dvh;
}

.btn-rendezvous2{
    background-color:  #EE9591;
    color: #FEF8F8;
    border: 2px solid #EE9591;
}

.btn-rendezvous2:hover{
    background-color:  transparent;
    color: #EE9591;
    border: 2px solid #EE9591;
}

.social-proof{
    min-height: 70dvh;
    width: 100%;
    overflow: hidden;
}

.social-proof h2{
    margin-top: 3dvh;
}

.comentaires-container{
    width: 100%;
    gap: 20px;
    padding: 0 1vw;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    transition: transform 0.6s ease;
}

.comentaire{
    background-color: #FEF8F8;
    color: #EE9591;
    flex: 0 0 calc((100% - 20px) / 2);
    height: 60dvh;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    border-radius: 20px;
}

.comentaire img{
    height: 12dvh;
}

.comentaire h3{
    margin-top: auto;
}

.cta{
    height: 100dvh;
    width: 100%;
    padding: 3vw; 
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.cta-texte h2{
    width: 40vw;
    margin-bottom: 1dvh;
}

.cta-texte p{
    width: 40vw;
    margin-bottom: 5dvh;
}

.cta img{
    width: 40vw;
    height: 70dvh;
    object-fit: cover;
}

/* Page Services */

.titre-services{
    text-align: center;
    margin: 3dvh auto 0dvh auto;
}

.services{
    width: 100%;
    padding: 3vw;
}

/* Page Galerie */
.main-galery{
    width: 100%;
    padding:0dvh 3vw;
}

.titre-galery{
    text-align: center;
    margin: 3dvh auto 5dvh auto;
}

.filtre-galery{
    margin:0dvh auto 3dvh auto;
    width: 50%;
    background-color: #FEF8F8;
    color: #EE9591;
    padding: 10px 15px;
    border-radius: 25px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.filtre-galery button{
    border: none;
    background-color: transparent;
    color: #EE9591;
    transition: color 0.5s ease;
}

.filtre-galery button:hover{
    color: #3F3E3E;
}

.filtre-galery button.active{
    color: #3F3E3E;
    font-weight: bold;
}

.grid{
    column-count: 4;
    column-gap: 20px;
    margin-bottom: 2dvh;
}

.grid-item{
    width: 100%;
    margin-bottom: 20px;
    display: block;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.grid-item.hidden{
    display: none;
}

.grid-item.show{
    opacity: 0;
    transform: translateY(0);
}

.grid-item.animate-in{
    opacity: 0;
    transform: translateY(20px);
}

.grid-item img{
    width: 100%;
    object-fit: cover;
}

/* Contact */

.main-contact{
    width: 100%;
    padding: 0dvh 3vw;
}

.titre-contact{
    text-align: center;
    margin: 3dvh auto 5dvh auto;
}

.main-infos{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 5dvh;
}

.container-infos{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-right: 2vw;
    border-right: 2px solid #FEF8F8;
}

.infosdecontact{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 2dvh;
}

.infos-contact{
    margin-right: 20%;
}

.infos-contact h3, .horaire h3{
    margin-bottom: 2dvh;
}
.infos-contact p, .horaire p{
    margin-bottom: 1dvh;
}

.form{
    width: 50%;
    margin-left: 2vw;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.step {
    display: none;
    background: #FEF8F8;
    padding: 20px;
    border-radius: 0px 0px 8px 8px;
    min-height: 40dvh;
}

.step h2{
    text-align: center;
}
.step.active {
    display: block;
}

label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}
input, select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #EE9591;
    border-radius: 4px;
    box-sizing: border-box;
}
.services-list {
    list-style: none;
    padding: 0;
    height: 40dvh;
    overflow-y: auto;
}
.services-list li {
    margin: 10px 0;
}
.services-list input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}
.service-item {
    cursor: pointer;
    padding: 15px;
    border-bottom: 1px solid #EE9591;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}
.service-item:hover {
    background-color: #f0f0f0;
}
.service-item.selected {
    background-color: #fceded;
}
.service-item .symbol {
    font-size: 18px;
    font-weight: bold;
    color: #EE9591;
}
.input-item {
    padding: 15px 0;
    border-bottom: 1px solid #EE9591;
}
.last-item {
    border-bottom: none; /* Remove border from the last item */
}
#next1, #next2, #next3, #changeInfo, #bookNow {
    width: 100%;
    padding: 12px;
    background-color: #EE9591;
    border: 2px solid #EE9591;
    color: #FEF8F8;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin: 5px 0;
    transition: color 0.5s ease, background-color 0.5s ease, border 0.5s ease;
}
#next1:hover, #next2:hover, #next3:hover, #changeInfo:hover, #bookNow:hover {
    background-color: #FEF8F8;
    color: #EE9591;
    border: 2px solid #EE9591;
}
#next1:disabled, #next2:disabled, #next3:disabled, #changeInfo:disabled, #bookNow:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}
.summary {
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
}
.error {
    color: red;
    font-size: 14px;
    margin-top: -10px;
    margin-bottom: 10px;
}
.progress {
    text-align: center;
    background-color: #FEF8F8;
    border-radius: 8px 8px 0px 0px ;
    padding: 2dvh 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.progress span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #EE9591;
    color: #EE9591;
    margin: 0 5px;
    line-height: 20px;
}
.progress span.active {
    background: #EE9591;
    color: #FEF8F8;
}
.summary-services {
    margin-bottom: 20px;
}
.summary-services h3 {
    margin-top: 0;
}
.summary-services ul {
    list-style: none;
    padding: 0;
}
.summary-services li {
    padding: 10px;
    background: white;
    border: 1px solid #EE9591;
    border-radius: 4px;
    margin-bottom: 5px;
}
.summary-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.summary-details .left, .summary-details .right {
    flex: 1;
    padding: 10px;
    background: white;
    border: 1px solid #EE9591;
    border-radius: 4px;
}
.summary-details .left {
    margin-right: 10px;
}
.summary-details .right {
    margin-left: 10px;
}
.summary-buttons {
    display: flex;
    justify-content: space-between;
}
#bookNow, #changeInfo {
    width: 48%;
}

.confirmation-message{
    display: none; 
    height: 100%;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Footer */

footer{
    background-color: #FEF8F8;
    color: #EE9591;
}

footer hr{
    width: 94%;
    margin: auto;
    border: none;
    height: 2px;
    background-color: #EE9591;
}

.main-footer{
    width: 100%;
    padding: 3dvh 3vw;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}

.main-footer h3{
    margin-bottom: 1.5dvh;
}

.footer-links .logo{
    color: #EE9591;
}

.social-medias{
    width: 11vw;
    margin-top: 1.5dvh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.social-medias a img{
   width: 40px; 
}

.registered{
    text-align: center;
    padding: 2dvh;
}

@media (min-height: 800px) {

.comentaire{
    min-height:50dvh;
}

.comentaire img{
    height: 10dvh;
}

.social-proof{
    min-height: 70dvh;
}

.filtre-galery{
    width: 42%;
}
}

@media (max-width: 768px) {

html, body {
    overflow-x: hidden;
}

h1{
    font-size: 86px;
    font-family: "Playfair Display", serif;
    font-weight: 400;
}

h2{
    font-size: 42px;
    font-family: "Playfair Display";
    font-weight: 400;
}

h3{
    font-size: 24px;
    font-family: "Lato";
    font-weight: 400;
}

p, a, button{
    font-size: 16px;
    font-family: "Lato";
}
/* Header */

header{
    padding: 3dvh 5vw;
}

.logo{
    font-size: 30px;
}

.menu{
    display: none;
}

.menu-mobile{
    width: 100vw;
    height: 100dvh;
    position: fixed ;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 5;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #EE9591;
    transform: translateX(+100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.menu-mobile.open{
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.menu-mobile a{
    color:#FEF8F8 ;
    text-decoration: none;
    font-size: 86px;
    font-family: "Playfair Display", serif;
    font-weight: 400;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.5s ease;
}

.menu a:hover{
    border-bottom: 2px solid #3F3E3E;
}

.home .btn-rendezvous, .home-mobile .btn-rendezvous{
   display: none;
}

.btn-rendezvous{
    background-color: #FEF8F8;
    color: #EE9591 ;
    border: 2px solid #EE9591;
}

.btn-rendezvous:hover{
    background-color: #FEF8F8;
    color: #EE9591;
    border: 2px solid #EE9591;
}

.menu-burger{
    width: 10vw;
    gap: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background-color: transparent;
    border: 0px solid transparent;  
}

.menu-burger span{
    width: 100%;
    height: 5px;
    background-color: #FEF8F8;
    border-radius: 15px;
    border: 1px solid #FEF8F8;
    z-index: 10;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.menu-burger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-burger.active span:nth-child(2) {
    opacity: 0;
}

.menu-burger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Page Accueil */
.hero{
    padding: 5vw;
    min-height: 90dvh;
}

.hero h1{
    margin-top: 15dvh;
    line-height: 90px;
}

.hero p{
    width: 90%;
}

.presentation{
    min-height: 85dvh;
    padding: 0dvh 5vw;
    flex-direction: column-reverse;
    align-items: center;
}

.presentation img{
    width: 100%;
    margin-bottom: 2dvh;
}

.presentation-texte{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2dvh;
}

.presentation-texte, .cta-texte{
    width: 100%;
    text-align: center;
}

.presentation-texte h2{
    margin-bottom: 2dvh;
}

.paragraphe1{
    margin-bottom: 2dvh;
}

.services-accueil{
    padding:3dvh 5vw;
}

.services-container{
    flex-direction: column;
}

.service{
    width: 100%;
    flex-direction: column;
    margin-bottom: 5dvh;
}

.service img{
    height: 30dvh;
}

.prix{
    margin-bottom: 1dvh;
}

.btn-rendezvous2:hover{
    background-color:  #EE9591;
    color: #FEF8F8;
    border: 2px solid #EE9591;
}

/* ici faire un défilement automatique en js */
.social-proof h2{
    margin-top: 3dvh;
}

.social-proof{
    min-height: 60dvh;
    margin-block: 5dvh;
}

.comentaires-container{
    padding: 0 3vw;
}

.comentaire{
    flex: 0 0 100%; /* Mobile = 1 visible */
    height: 50dvh;
}

.comentaire img{
    height: 8dvh;
}

.comentaire h3{
    margin-top: auto;
}

.cta{
    height: auto;
    width: 100%;
    padding:3dvh 5vw; 
    margin-top: 5dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.cta-texte h2{
    width: 100%;
    margin-bottom: 1dvh;
}

.cta-texte p{
    width: 100%;
    margin-bottom: 5dvh;
}

.cta img{
    width: 100%;
    height: 30dvh;
    object-fit: cover;
    margin-top: 3dvh;
}

/* services */

.titre-services{
    text-align: center;
    margin: 0dvh 4vw;
}

.services{
    width: 100%;
    padding: 3dvh 5vw;
}

/* Page Galerie */
.main-galery{
    width: 100%;
    padding:0dvh 3vw;
}

.titre-galery{
    text-align: center;
    margin: 0dvh auto 3dvh auto;
}

.filtre-galery{
    width: 100%;
    background-color: transparent;
    padding: 0px;
    border-radius: 0px;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
}

.filtre-galery button{
    border: 2px solid #FEF8F8;
    background-color: #FEF8F8;
    color: #EE9591;
    border-radius: 15px;
    padding: 10px;
    transition: none;
}

.grid{
    column-count: 2;
    column-gap: 10px;
    min-height: 35dvh;
}

.grid-item{
    margin-bottom: 10px;
}

/* Contact */

.main-contact{
    width: 100%;
    padding: 0dvh 5vw;
}

.titre-contact{
    text-align: center;
    margin: 0dvh auto 3dvh auto;
}

.main-infos{
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 5dvh;
}

.container-infos{
    width: 100%;
    padding-right: 0vw;
    border-right: 0px solid #FEF8F8;
}

.form{
    width: 100%;
    margin-left: 0vw;
    margin-bottom: 2dvh;
}

/* footer */

.main-footer .horaire, .main-footer .infos-contact{
    display: none;
}

.social-medias{
    width: 50%;
}

.footer-links{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
}