*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
img{
    display: block;
}


/* VARIABLES */

:root{
    --H2-sizePhone: ;
    --H2-sizeDesktop: ;
    --BG-color: #FDF8F6;
    --Text-color: #2C2C2C;
}


/* GENERAL */

html{
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body{
    background-color: var(--BG-color);
    color: var(--Text-color);
    font-size: 17px;
    font-family: "Lora", serif;
    overflow-x: hidden;
}



p{
    max-width: 40ch;
}

h1, h2, h3{
      font-family: "Playfair Display", serif;
}

h1,h2{
    font-weight: 700;
}

h1{
    font-size: 30px
}
h2{
    font-size: 25px;
}



.meerInfoBTN, .ContactBTN{
    text-decoration: none;
    color: var(--Text-color);
}

.hero__links a{
    text-decoration: none;
}

.hero__links .AfspraakBTN{
    background-color: #D94A4F;
    color: white;
    padding: 0.3rem 1rem;
}


/* NAV */



.nav{
    background-color: #FDF0EA;
    z-index: 100;
    height: 70px;
    display: flex;
    align-items: center;
    box-shadow: 0px 5px 30px #0000002b;
    position: relative;

}


.nav__logo{
    width: 140px;
    z-index: 110;
    height: auto;
    top: 0;
    left: 20px;
    position: absolute;
}
.nav__logo img{
    max-width: 100%;
}

.nav__logo img:hover{
    cursor: pointer;
}

.linksDivNav{
    display: none
}

.hero__links .AfspraakBTN:hover{
    background-color: #ff585e;
}
.hero__links .AfspraakBTN:active{
    background-color: #a5383c;
}

.open{
    display: flex;
    flex-direction: column;
    position: absolute;
    padding-top: 70px;
    animation: slideNav 0.3s ease-in-out forwards;
    z-index: 200;
    width: 100%;
    background-color: #FDF0EA;
    text-align: center;
}

.open a{
    padding-top: 1rem;
    padding-bottom: 1rem;
    color: black;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.nav__afspraak{
    display: flex;
}

.nav__afspraak a{
    width: 100%;
    color: black;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.nav__afspraak a:hover, .open a:hover{
    background-color: #fee5da;
}



.nav__links{
    display: flex;
    flex-direction: column;
}


.nav__toggle {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    display: none;
    right: 20px;
    position: absolute;
    z-index: 300;
} 

/* animation */
@keyframes slideNav {
    0%{
        top: -300px;
    }
    100%{
        top: 0px;
    }
}

/* HERO */

.hero{
    position: relative;
}

.hero__text{
    margin-top: 90px;
    margin-left: 20px;
    margin-right: 20px;
}

.hero__p{
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.hero__links{
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero__links .AfspraakBTN, .hero__links .meerInfoBTN{
    text-align: center;
    z-index: 10;
}

.heroIMG img{
    max-width: 100%;
}

.heroIMG{
    position: relative;
}

.whiteoverlay{
    position: absolute;
    top: -40px;
    width: 100%;
    height: 90px;
    background-image: linear-gradient(var(--BG-color) 70%, rgba(255, 255, 255, 0));
}

.pinkoverlay{
    background: linear-gradient(#feb6b600, hsla(0, 97%, 85%, 0.530));
    height: 100px;
    width: 100%;
    position: absolute;
    bottom: 0px
}


/* BEHANDELINGEN */

.behandelingen{
    padding-top: 50px;
    padding-bottom: 3rem;
    z-index: 100;
    position: relative;
    background-color: var(--BG-color);
}

.behandelingen__text{
    margin: auto;
    max-width: 80%;
    padding-bottom: 2rem;
    padding-top: 2rem;
}

.behandelingen__text p{
    margin-top: 1rem;
    margin-bottom: 3rem;
}

.behandelingen__section{
    display: flex;
    justify-content: center;
     z-index: 3;
}
.behandelingen__container{
    max-width: 80%;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.cart img{
    max-width: 100%;
}
.cart{
    box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.105);
    background-color: #FDF8F6;
}

.cart__text{
    text-align: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

.cart__text h3{
    font-family: "Playfair Display", serif;
    font-size: 23px;
    margin-bottom: 0.01rem;
}

.cart__text p{
    font-size: 13px;
}

.cart{
    transition: all 0.2s;
}

.cart:hover{
    cursor: pointer;
    transform: scale(1.1);
}

.behandelingen__links{
    margin-top: 3rem;
   display: flex;
   justify-content: center;
    z-index: 2;
}

.behandelingen__links a{
    background-color: #D94A4F;
    color: white;
    padding: 0.3rem 1rem;
    text-decoration: none;
}

.behandelingen__links .AfspraakBTN:hover{
    background-color: #ff585e;
}
.behandelingen__links .AfspraakBTN:active{
    background-color: #a5383c;
}






/* SALON */

.salon{
    min-height: 400px;
    position: relative;
    padding-top: 3rem;
    background: linear-gradient(170deg, #FFEEF1, #FFD9DF);
}

.salon__tekstDiv{
    margin-left: 20px;
    margin-right: 20px;
}

.salon__tekstDiv h2{
    margin-bottom: 1rem;
}
.salon__tekstDiv p{
    margin-bottom: 3rem;
}

.salon__links{
    margin-top: 3rem;
   display: flex;
   justify-content: center;
    z-index: 2;
}

.salon__links a{
    background-color: #D94A4F;
    color: white;
    padding: 0.3rem 1rem;
    text-decoration: none;
}

.salon__links .AfspraakBTN:hover{
    background-color: #ff585e;
}
.salon__links .AfspraakBTN:active{
    background-color: #a5383c;
}






/* img slider */

.ImageSlider{
    max-width: 240px;
    position: relative;
    margin: auto;
    min-height: 320px;
    z-index: 5;
    overflow: visible;
}

.img1, .img2, .img3{
    display: none;
    max-width: 100%;
    box-shadow: -5px 5px 3px 3px #b7808a57;
    z-index: 100;
}

.img1, .img2, .img3{
    transform: translateY(42%);
}

.left, .right{
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    border: none;
    background-color: rgba(0, 0, 0, 0.385);
    z-index: 200;
}


.right{
    right: 0;
    border-radius: 3px 0 0 3px;
}

.left:hover, .right:hover{
    background-color: rgba(255, 255, 255, 0.3);
}

.fade {
    animation: fade 1s;
}

.active{
    display: block;
}

@keyframes fade{
    from{opacity: .4;}
    to{opacity: 1;}
}

.mySlides{
    z-index: 5;
}

.tape{
    width: 300px;
    height: auto;
    position: absolute;
    bottom: 185px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}





/* OVER */

.over{
    position: relative;
    padding-bottom: 2rem;
}

.roze_bluroverlay{
    background: radial-gradient(hsla(358, 51%, 37%, 0.333),  hsla(358, 51%, 37%, 0.0) 70%);
    width: 500px;
    height: 500px;
    position: absolute;
    right: -250px;
    top: -200px;
    z-index: 1;
}

.starsIMG{
    max-width: 100%;
    position: absolute;
    top:-10px;
    left: -20px;
    
}

.starsIMG img{
    max-width: 50%;
}


.over__text h2{
    margin-bottom: 1rem;
    z-index: 1000;
    position: relative;
}

.over__text{
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 3rem;
    padding-top: 125px;
    z-index: 1000;
    position: relative;
}

.bericht__link{
    color: black;
    transition: all 0.2s;
}

.bericht__link:hover{
    color: #ff7a92;
}

.bericht__link:visited{
    color: #000000;
}

.over__img{
    max-width: 100%;
}

.over__img img{
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 33px;
}




/* CTA */


.CTA{
    background-color: #FFE3E8;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.CTA__img{
    background-image: url(img/20241130_124936.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    text-align: center;
    color: rgba(231, 231, 231, 0.821);
}



.blackoverlay{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.733);
}


.CTA__img h2,
.CTA__img p,
.CTA__img .hero__links {
    position: relative;
    z-index: 2; 
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.CTA__img .hero__links .ContactBTN{
    color: white
}

.CTA__img h2{
    padding-top: 2rem;
    font-size: 30px;
    padding-bottom: 0.5rem;
}

.CTA__img p{
    color: rgba(255, 255, 255, 0.867);
}

.CTA__img .hero__links{
    padding-bottom: 2rem;
    padding-top: 1rem;
    margin: 0;
}





/* FOOTER */

footer{
    background-color: #ffffff;
}

.footer__img{
    max-width: 100%;
    padding-top: 50px;
    margin-bottom: 50px;
}
.footer__img img{
    max-width: 50%;
    margin: auto;
}

.footer__img img:hover{
    cursor: pointer;
}

.footer__navigation, .footer__socialmedia{
    margin-left: 30px;
    padding-bottom: 2rem;
}

footer ul{
    list-style-type: none;
}


footer ul li{
    margin-top: 0.5rem;
}

footer ul li a {
    text-decoration: none;
    color: black;
    transition: color 0.2s;
}

footer ul li a:hover{
    color: #ff7a92;
    transition: color 0.2s;
}



.footer__form{
    margin-top: 3rem;
}
form{
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.11);
    max-width: 80%;
    margin: auto;
    padding-top: 1.5rem;
}

form input, form textarea{
    font-family: "Lora", serif;
    border: none;
    text-decoration: none;
    width: 200px;
    padding-bottom: 1rem;
    padding-top: 1.5rem;
    border-bottom: 1px solid black;
    outline: none;
    font-size: 18px;
    color: var(--Text-color);
}

form input::placeholder, form textarea::placeholder{
    color: var(--Text-color);
}

form textarea{
    resize: none;
}

form button{
    margin-top: 2rem;
    margin-bottom: 2rem;
    background-color: #D94A4F;
    color: white;
    padding: 0.3rem 1rem;
    text-decoration: none;
    outline: none;
    border: none;
}

form button:hover{
    background-color: #ff585e;
}
form button:active{
    background-color: #a5383c;
}



.PraktischeLinks{
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-top: 1px solid black;
}

.PraktischeLinks a{
    text-decoration: none;
    color: black;
}

.footerContainer{
    padding-bottom: 3rem;
}


.PraktischeLinks a:hover{
    color:#ff7a92;
    transition: all 0.2s;
}


.developerCredits{
    font-size: 14px;
    text-align: center;
    border-top: 1px solid black;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.developerCredits a{
    color: black
}

.developerCredits a:hover{
    color: rgb(124, 124, 124);
}


/* MEDIA QUERYS */

/* nav */


@media (min-width: 390px){
    .hero__text{
        margin-left: 40px;
        margin-right: 40px;
    }

    .salon__tekstDiv{
        margin-left: 40px;
        margin-right: 40px;
    }
    .salon{
        padding-bottom: 3rem;
    }
    .ImageSlider{
        max-width: 280px;
    }
    .tape{
        bottom: auto;
        top: 60px;
        width: 340px
    }

    .left, .right{
        top: 60%
    }
    .over__text{
        margin-left: 40px;
        margin-right: 40px;
    }
    .starsIMG{
        max-width: 350px;
    }

    .CTA__img{
        width: 100%;
    }

    .CTA__img p {
        margin: auto;
    }
}

@media (min-width: 500px){
    body{
        font-size: 19px;
    }

    .cart__text h3{
        font-size: 25px;
    }
    .cart__text p{
        font-size: 15px;
        margin: auto;
    }

    h1{
        font-size: 32px
    }
    h2{
        font-size: 27px;
    }


    .ImageSlider{
        max-width: 360px;
    }
    .tape{
        top: 80px;
        width: 440px
    }
    .left, .right{
        top: 75%
    }

    .salon{
        padding-bottom: 9rem;
    }

    .hero__links{
        gap: 0;
    }

    .footer__img img{
        max-width: 35%;
    }


}

@media (min-width: 600px){
    .nav__logo{
        width: 160px;
    }

    .hero__text{
        margin-top: 110px
    }

    .behandelingen__links a, .salon__links a, .hero__links .AfspraakBTN, .hero__links .meerInfoBTN, form button{
        padding: 0.5rem 1rem;
    }

    .CTA__img .hero__links{
        padding-left: 5rem;
        padding-right: 5rem;
    }
    .hero__links{
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 700px){

    h1{
        max-width: 80%;
        font-size: 40px;
    }
    h2{
        font-size: 32px;
    }

    .hero__links{
        padding: 0;
        justify-content: left;
        gap: 2rem
    }

    .salon__tekstDiv{
        margin: 0;
        padding: 0;
        max-width: 300px;
        padding-top: 2rem;
    }
    .ImageSlider{
        margin: 0;
        max-width: 280px;
        position: relative;
    }
    .salon__links{
        justify-content: left;
    }


    .tape{
        width: 330px;
        right: -20px;
        left: auto;
        transform: translateX(0);
        top: 60px;
        bottom: auto
    }

    .left, .right{
        top: 58%
    }

    .salon{
        display: flex;
        justify-content: center;
        gap: 3.5rem;
        padding-bottom: 5rem;
    }

    .over__text{
        padding: 0;
        margin: 0;
        max-width: 50%;
        margin-left: 40px;
    }
    .over__img{
        max-width: 50%;
        padding-top: 5rem;
    }
    .over{
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 150px;
    }


    .CTA__img{
        width: 80%;
    }

    .CTA__img .hero__links{
        justify-content: center;
    }

    .FooterLinkDiv{
        display: flex;
        gap: 4rem;
        justify-content: center;
    }

    .footer__navigation, .footer__socialmedia{
        margin: 0;
        margin-right: 30px;
    }

}

@media (max-width: 767px) {
    .nav__toggle {
        display: block;
    }

    .nav.open .nav__links,
    .nav.open .nav__afspraak{
        display: flex;
    }
}

@media (min-width: 768px){
    .linksDivNav{
        display: flex;
        align-items: center;
        position: absolute;
        right: 0px;
        width: 100%;
    }

    .nav__afspraak{
        position: absolute;
        right: 30px;
    }
    .nav__links{
        flex-direction: row;
        gap: 30px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    .nav__afspraak .AfspraakBTN{
        padding: 0.5rem 1rem;
        background-color: #D94A4F;
        color: white;
    }

    .nav__afspraak .AfspraakBTN:hover{
        background-color: #ff585e;
    }
    .nav__afspraak .AfspraakBTN:active{
        background-color: #a5383c;
    }


    .nav__links a{
        text-decoration: none;
        color: var(--Text-color);
    }

    .nav__links a:hover{
        opacity: 0.7;
        scale: 1.1;
        transition: all 0.2s;
    }

    

    .cart{
        width: 100%;
    }


    
    .behandelingen__container{
        flex-direction: row;
        gap: 2rem;
    }

    .cart__text{
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .cart__text h3{
        margin-bottom: 6px;
    }

    .salon{
        gap: 5rem
    }

    .footer__img img{
        max-width: 250px;
    }

    .PraktischeLinks{
        flex-direction: row;
        justify-content: center;
        gap: 5rem
    }
    
}

@media (min-width: 850px){
    .over{
        padding-top: 3rem;
    }

    footer form{
        max-width: 500px;
    }
}


@media (min-width: 950px){
    .hero{
        display: flex;
        justify-content: right;
        height: 600px;
    }

    .hero__text{
        margin: 0;
        max-width: 45%;
        position: absolute;
        z-index: 10;
        left: 40px;
        top: 120px;
    }

    .hero__p{
        max-width: 30ch;
    }
    
    .heroIMG{
        width: 800px;
        height: auto;
        margin-right: -80px;
        position: static;
    }
    
    .whiteoverlay{
        width: 800px;
        height: 100%;
        background-image: linear-gradient(90deg ,var(--BG-color) 65%, rgba(255, 255, 255, 0), rgba(255,255,255,0) 80%);
        left: -50px;
        top: 0;
        z-index: 3;
    }
    .pinkoverlay{
        z-index: 5;
        height: 300px;
    }
}

@media (min-width: 1024px){

    h1{
        font-size: 45px;
    }
    h2{
        font-size: 38px;
    }
    


    .salon__tekstDiv{
        max-width: 40%;
    }
    .ImageSlider{
        max-width: 400px;
        padding-top: 4rem;
    }
    .img1, .img2, .img3{
        transform: translateY(0);
    }
    .left, .right{
        top: 58%
    }
    .salon{
        align-items: center;
        gap:7rem;
    }
    .tape{
        width: 480px;
        top: 35px;
        left: -40px
    }

    .starsIMG img{
        max-width: 70%;
    }

    .CTA__img{
        width: 700px;
    }
    .CTA__img h2{
        font-size: 36px;
    }


    .footerContainer{
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding-top: 80px;
        border-bottom: 1px solid black;
    }
    .footer__navigation, .footer__socialmedia, .footer__form, .footer__img{
        padding: 0;
        margin: 0;
    }
    .FooterLinkDiv{
        gap: 2rem
    }

    .footer__img img{
        max-width: 200px;
    }

    .footer__form form{
        padding: 2rem;
    }

}

@media (min-width: 1182px){
    .whiteoverlay{
        width: 80%;
    }
}

@media (min-width: 1250px){
    .nav__logo{
        left: 40px
    }
    .hero__text{
        left: 60px
    }
}

@media (min-width: 1396px){
    .whiteoverlay{
        width: 90%;
    }
}


