/* custom properties */
:root{
  --bg-color: hsl(0, 0%, 98%);
  --main-text-color: rgb(26, 26, 26);

  --primary-color: #9c3737;
  --secondary-color: #9c7237; 

  /* font-family */
  --main-ff: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

/* Reset / Basic styles */
*{
  margin: 0;
  box-sizing: border-box;
}
html{
  font-weight: 400;
  font-size: 62.5%;
  line-height: 1.5;
  scroll-behavior: smooth;
  height: 100vh;
}
body{
  font-family: var(--main-ff);
  background-color: var(--bg-color);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  font-size: 1.6rem;
  height: 100%;
  padding-top: 100px;
  color: var(--main-text-color);
}
h1{
  text-align: start;
}
a{
  color: rgb(20, 20, 20);
  text-decoration: none;
}
ul{
  list-style: none;
}
img{
  display: block;
  max-width: 100%;
}
section{
  padding: 5.6rem 0;
}
.btn{
  padding: 1.25rem 2rem;
  background-color: transparent;
  border: 1px solid rgb(24, 24, 24);
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 350ms ease, color 350ms ease;
}
.btn-hover:hover{
  background-color: rgb(24, 24, 24);
  color:hsl(0, 0%, 98%);
}

/* Reausable classes */
.container{
  width: 90%;
  max-width: 144rem;
  margin: 0 auto;
}


/* PROJECT STYLES */

/* ---------- | HEADER | ---------- */
header{
  position: fixed;
  left: 0; 
  top: 0;
  width: 100% ;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 1px 4px 1px rgba(0, 0, 0, .025);
  height: 96px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 100;
}
header .container{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img{
  width: 100px;
  margin-left: -16px;
}
nav{
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-weight: 200;
  /* display: block; */
}
.menu{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 12.8rem 4rem;
  gap: 3.2rem;
  position: fixed;
  inset: 0;
  background-color: rgb(243, 241, 235);
  transform: translateX(100%);
  text-transform: uppercase;
  transition: transform 300ms ease-in;
}
.menu.active{
  transform: translateX(0%);
}
.socials{
  /* background-color: rgba(178, 53, 90, 0.637); */
  width: 35px;
  margin-left: auto;
  padding: 0 4rem;
  text-align: center;
  line-height: 35px;
}
.mobile-menu{
  position: relative;
  z-index: 100;
  height: 30px;
  width: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.mobile-menu span{
  background-color: black;
  height: 3px;
  padding: 1px;
  
  /* width: 100%; */
  /* display: block; */
}


/* ---------- | MAIN | ---------- */
/* 

/* HERO */
.hero .container{
  display: flex;
  color: #fff;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 3.2rem;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  background: url("../images/bg.jpg");
  background-attachment: fixed;
  background-color: rgba(24, 24, 24, .5);
  background-blend-mode: darken;
  background-size: cover;
  /* height: 750px; */
}
.hero h1{
  font-size: 3.2rem;
  font-weight: 200;
  letter-spacing: 2px;
  text-transform: capitalize;
}
.hero p{
  margin-top: 1.4rem;
  font-size: 1.4rem;
}
.hero button{
  margin-top: 6.4rem;
  /*  ligt aan de afbeelding */
  color: #fff;
  border: 1px solid #fff;
  transition: background-color 450ms ease, color 450ms ease;
}
.hero button:hover{
  background-color: rgb(24, 24, 24);
  color:hsl(0, 0%, 98%);
}
.movie{
  background-color: hsl(40, 3%, 20%);
  padding: 0;
}
.movie .container{
  display: flex;
  justify-content: center;
  align-items: center;
}
.intro-movie{
  transform: rotate(-90deg);
  width: 50%;
}


/* ABOUT ME */
.about-me{
  background-color: rgb(243,241, 235);
  scroll-margin-block-start: 100px;
}
.about-me .container{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.about-me-container{
  position: relative;
  /* display: flex; */
  /* border: 4px solid rgb(255, 255, 255); */
  /* background-color: aqua; */
  width: 50%; 
  height: 500px;
}
.about-me-info{
  background-color: rgb(255, 255, 255);
  padding: 6.4rem;
  width: 400px;
  border-radius: 4px;
  box-shadow: 0 0 10px 10px rgba(0, 0, 0, .025);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2.4rem;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  z-index: 50;
  position: absolute;
  top: 0%;
  right: 0%
  
}
.about-me h2{
  font-weight: 200;
  font-size: 3.2rem;
}
.about-me p{
  font-weight: 100;
  font-size: 1.4rem;
  line-height: 2 ;
}
.about-me button{
  margin-top: 1.6rem;
}
/* .about-me-info{
  display: flex;
  position: absolute;
  top: -50%;
} */
 .about-me-img img{
  /* background: url("../assets/images/bg.jpg"); */
  /* flex: 1; */
  position: absolute;
  width: 600px;
  left: -150px;
  top: 25%;
  object-fit: cover;
} 
.one-liner{
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  letter-spacing: 1px;
  text-wrap: balance;
  width: 100%;
  text-align: center;
  margin-top: 7.2rem;
}
.one-liner h2{
  font-size: 2rem;
}
.one-liner p{
  margin: 1rem 0;
  font-size: 1rem;
}

/* TREATMENTS */
.treatments{
  background-color: rgb(243, 241, 235);
  scroll-margin-block-start: 100px;
}
.treatments .container{
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
}
.treatments .container h2{
  text-align: center;
  font-size: 3.2rem;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  text-transform: capitalize;
  font-weight: 200;
}
/* .treatments-grid{
  display: flex;
  justify-content: space-between;
  gap: 3.2em;
} */
.treatments-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem
 }
.treatment{
  transition: all 350ms ease;
}
.treatment:hover{
  scale: 1.02;
  box-shadow: 0 0 10px 10px rgba(0, 0, 0, .025);
}
.treatment-img{
  width: 100%;
  min-width: 20px;
  /* height: 400px; */
  object-fit: cover;
  aspect-ratio: 1 / 1;
  /* object-position: 50% 50%; */
}
.treatment-info{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.2rem;
  padding: 4.8rem 3.2rem;
  background-color: rgb(255, 255, 255);
}
.treatment-info h3{
  text-transform: capitalize;
}
.treatment-info p{
  text-align: center;
}
.treatment-info button{
  /* width: 30%; */
  background-color: transparent;
}
.treatment-info button:hover{
  background-color: rgb(24, 24, 24);
  color:hsl(0, 0%, 98%)
}


/* GET-INTOCH */
.get-intouch .container{
  display: flex;
  justify-content: center;
  gap: 4rem;
}
.get-intouch .container > div{
  flex: 1;
}
.get-intouch-info{
  width: 50%;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.get-intouch-info h3{
  font-size: 2.4rem;;
}
.get-intouch-form{
  margin-top: 6.4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.get-intouch-form label{
  display: block;
  font-weight: normal;
  margin-bottom: .6rem;
}
.get-intouch-form input,
.get-intouch-form textarea{
  width: 100%;
  padding: .8rem;
  border: none;
  border-bottom: 1px solid rgb(24, 24, 24);
  background-color: transparent;
  outline: none;
  letter-spacing: 1px;
  resize: none;
}
.btn-get-intouch{
  background-color: rgb(24, 24, 24);
  color: rgb(250, 250, 250);
}
.full-width{
  grid-column: span 1;
}
.get-intouch-img{
  display: none;
}

/* BACK TO TOP */
.back-to-top{
  background-color: rgb(243, 241, 235);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.arrow-up{
  width: 25px;
  height: 25px;
  border-left-width: 2px;
  border-left-style: solid;
  border-top-width: 2px;
  border-top-style: solid;
  border-top-color: black;
  rotate: 45deg;
  transform: translate(2px, 2px);
  text-align: center;
}

/* ---------- | FOOTER | ---------- */
footer{
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  height: 40px;
}
.footer-legal{
  background-color: rgb(228, 228, 228);
  font-size: x-small;
  text-align: center;
  line-height: 40px;
}



/* min-width voor mobile-first aproach */
@media (min-width: 480px){
  /* TREATMENT */
  .treatment-grid{
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px){
  /* NAVIGATION */
  .menu{
    display: flex;
    flex-direction: row;
    padding: 0;
    gap: 3.2rem;
    position: static;
    background-color: transparent;
    transform: translateX(0%);
    text-transform: capitalize;
    transition: transform 300ms ease-in;
  }
  .socials{
    background-color: rgb(174, 71, 102);
    width: 35px;
    aspect-ratio: 1;
    position: absolute;
    right: 0;
    top: 350px;
    text-align: center;
    line-height: 35px;
    padding: 0;
    color: #fff;
  }
  .mobile-menu{
    display: none;
  }
  /* ABOUT ME */
  .one-liner{
    /* font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; */
    letter-spacing: 1px;
    text-wrap: balance;
    width: 500px;
    text-align: center;
    margin-top: 7.2rem;
  }
  .one-liner h2{
    font-size: 2.8rem;
  }
  .one-liner p{
    font-size: 1.4rem;
  }
    
  /* HERO */
  .hero h1{
    font-size: 5.6rem;
    font-weight: 200;
    letter-spacing: 2px;
    text-transform: capitalize;
  }
  .hero p{
    font-size: 1.6rem;
  }
  /* TREATMENT */
  .treatments-grid{
    grid-template-columns: 1fr 1fr;
  }
  .treatments-grid{
    gap: 3.2rem;
  }
  /* GET INTOUCH */
  .get-intouch-form{
    grid-template-columns: 1fr;
  }
  .full-width{
    grid-column: span 1;
  }
  .get-intouch-img{
    display: none;
  }
  .get-intouch-form{
    margin-top: 6.4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .full-width{
    grid-column: span 2;
  }
}

@media (min-width: 1024px){
  section{
    padding: 9.6rem 0;
  }
  /* HERO */
  .hero h1{
    font-size: 7.2rem;
  }
  .hero p{
    margin-top: 1rem;
    font-size: 2rem;
  }

  /* TREAMENTS */
  .treatments-grid{
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3.2rem;
  }

  /* GALLERY */
  .gallery{
    /* background-color: blanchedalmond ; */
    display: flex;
    width: 100%;
  }
  .gallery img{
    height: 450px;
    aspect-ratio: 1;
    object-fit: cover;
    flex: 1;
  }
  /* GET INTOUCH */
  .get-intouch-img{
    display: block;
  }
  .get-intouch-form{
    margin-top: 6.4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .full-width{
    grid-column: span 2;
  }
}

@media (min-width: 1280px){

}

@media (min-width: 1920px){

}