:root{
  --bg-color: #403f2b;
  --off-white: #FEFAF0;
  --header-color: #fffdc3;
}

:root{
  scroll-behavior: smooth;
}
body{
  width: 100vw;
  height:100%;
  min-height: 100svh;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: var(--bg-color);
  overflow-x: hidden;

  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: 
  "SOFT" 0,
  "WONK" 0;
  ;
}
::-webkit-scrollbar{
  width: 0;
  background: none;
}


*{
  box-sizing: border-box;
}


header{
  background-color: var(--off-white);
}


main{
  height: 100%;
}

li{
  list-style: none;

}

a{
  cursor: pointer;
}

p{
  font-family: 'Helvetica', 'Arial', 'sans-serif';
}

.text-font-subtext{
  font-family: 'Helvetica', 'Arial', 'sans-serif';  
}

.nav-item{
  display: flex;
  font-size: 1.25rem /* 20px */;
  line-height: 1.75rem /* 28px */;
  padding-left: 1rem /* 16px */;
  padding-right: 1rem /* 16px */;
  align-items: center;
  font-weight: 400;
  margin: 0px 2px;
  outline: 0;
  border: 0;
}

.nav-item:before{
  background-color: #000;
  content: "";
  display: inline-block;
  height: 1px;
  margin-right: 8px;
  transition: all .42s cubic-bezier(.25,.8,.25,1);
  width: 0;
  
}

.nav-item:hover:before {
  background-color: #000;
  width: 2rem;
}

#hero-title{
  color: var(--header-color);
}

#hero-title button{
  animation-delay: 1s;
}

#Hero{
  background-size: cover;
  background-position: center;
  max-width: 100%;
  min-width: 100%;
  max-height: 80vh;
  min-height: 80vh;   
  background-image: url("../images/vaccume-phone.jpg");
  background-blend-mode: overlay;
  background-color: #0208005e;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.service-tile{
  border-radius: 32px;
  display: grid;
  width: 225px;
  place-content: center;
  aspect-ratio: 1 / 1;
  margin: 20px;
  padding: 20px;
  background-position: center;
  background-size: cover;
  background-blend-mode: overlay;
  background-color: #0000004f;
  transition: all 200ms;
}

.service-tile:hover{
  transform: scale(1.03);
}

.service-tile h1{
  width: 100%;
  text-align: center;
  font-size: 45px;
  content: "";
  font-weight: 500;
  color: var(--header-color);
  animation-duration: 200ms;
}

#service-tile1{
  background-image: url(../images/pille-r-priske-Y1JjwhHaPRM-unsplash.jpg);
}
#service-tile2{
  background-image: url(../images/daiga-ellaby-uooMllXe6gE-unsplash.jpg);
}
#service-tile3{
  background-image: url(../images/kelly-sikkema-_e5z-AK_qDk-unsplash.jpg);
}

/* .service-tile:hover h1{
  opacity: 0;
  display: none;
} */


.slide{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#slideShow-Img1{
  background-image: url(../images/portfolio/clean-house-1.jpg);
}
#slideShow-Img2{
  background-image: url(../images/portfolio/clean-house-2.jpg);
}
#slideShow-Img3{
  background-image: url(../images/portfolio/clean-house-3.jpg);
}


.form {

  --main-color: black;
  padding: 20px;
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  border-radius: 5px;
  border: 2px solid var(--main-color);
  box-shadow: 4px 4px var(--main-color);
}

.title {
  color: black;
  font-weight: 900;
  font-size: 25px;
  margin-bottom: 25px;
}

.title span {
  color: rgb(48, 48, 48);
  font-weight: 600;
  font-size: 19px;
}

.input {
  width: 250px;
  height: 40px;
  border-radius: 5px;
  border: 2px solid var(--main-color);
  background-color: #ddddcc;
  box-shadow: 4px 4px var(--main-color);
  font-size: 18px;
  font-weight: 600;
  color: var(--bg-color);
  padding: 5px 10px;
  outline: none;
}

.input::placeholder {
  color: var(--font-color-sub);
  opacity: 0.8;
}

.input:focus {
  border: 2px solid var(--input-focus);
  background-color: var(--header-color);
}

.login-with {
  display: flex;
  gap: 20px;
}

.icon {
  width: 24px;
  height: 24px;
  fill: var(--main-color);
}

.button-confirm:active {
  box-shadow: 0px 0px var(--main-color);
  transform: translate(3px, 3px);
}

.button-confirm {
  margin: 50px auto 0 auto;
  width: 120px;
  height: 40px;
  border-radius: 5px;
  border: 2px solid var(--main-color);
  background-color: #ddddcc;
  box-shadow: 4px 4px var(--main-color);
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
}

.mx-5per{
  margin: 0px 5%;
}



/* inputs */

@media screen and (min-width: 550px){
  #Hero{
    background-image: url("../images/vaccume-large.jpg");
  }
  .service-tile{
    width: 325px;
  }
}
