html, body{
    box-sizing: border-box;
    width: 100wh;
    height: 100vh;
}

html{
    font-family: Arial, Helvetica, sans-serif;
}

#home, #contact{
    grid-template-areas: 
    'header header header'
    'main main main'
    'footer footer footer';
    display: grid;
}

#shop{
    grid-template-areas: 
    'header header header'
    'main main aside'
    'footer footer footer';
    display: grid;
}

main, #shop{
    background-color: rgb(198, 216, 211);
}

.btn--buy{
    border-radius: 10px;
    background-color: var(--orange);
    padding: 10px;
}

/*--root--*/
:root{
    --lightMint: rgb(198, 216, 211);
    --orange: rgb(252, 61, 48);
    --white: #ffffff;
    --black: #000000;
    --purple: rgb(51, 24, 50);
    --grey: #8f8d8d;
    --red: #ff0000;
}

/*text*/

.home--products--container h1, .container-about-store h1, .mainShop h1, #contact-main > h1, .container-about-myself h1, .customers-title{ 
    text-transform: uppercase;
    text-align: center;
    padding-top : 5%;
    font-size: 2em;
    letter-spacing: 5px;
    color:var(--orange);
}

/*product*/

.product-main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-item {
    display: flex;
    text-align: center;
    margin-bottom: 2%;
    margin-left: auto;
    margin-right: auto;
}

.product-item img{
    border-radius: 10px;
    margin-top: 100px;
}

.product-details {
    display: flex;
    flex-direction: column;
    padding-top: 50px;
    padding-left: 150px;
    max-width: 1000px}

.product-details h2 {
    margin: 0;
    text-align: left;
    color: var(--orange);
}

.product-details h3{
    font-size: 2em;
    text-align: left;
}

.product-desc {
    margin-top: 20px;
    font-size: 1.1em;
    margin-bottom: 50px;
    text-align: left;
    max-width: 800px;
}

.product-actions {
    align-items: center;
    margin-top: 1em;
}

.product-price {
    font-size: 1.2em;
    padding-right: 400px;
    color: var(--orange);
}

.add-to-wishlist:hover,
.add-to-cart:hover {
    text-decoration: underline;}

.add-to-wishlist,
.add-to-cart {
    background-color: var(--orange);
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
    border-radius: 5px;
}

.product-review {
    margin-top: 20px;
}

.product-review h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.review-form {
    display: flex;
    flex-direction: column;
    padding-bottom: 50px;
}

.review-form label, .product-review label {
    margin-bottom: 5px;
}

.review-form input, .review-form textarea {
    margin-bottom: 10px;
    padding: 8px;
}

.submit-review {
    background-color:var(--orange);
    color: #efefef;
    border: none;
    padding: 10px 20px;
    width: 150px;
}

.submit-review:hover {
    text-decoration: underline;
}

.review-form input, .review-form textarea{
    border: 1px solid black ;
    width: 80%;
    margin-top: 2%;
    margin-bottom: 2%;
    padding: 12px;}

.review-form h1{
        text-transform: uppercase;
        margin-top: 5%;
        font-size: 1.5em;
        letter-spacing: 2.5px;
        color:var(--orange);
        margin-bottom: 5px;
}

/*shop*/


.mainShop{
    grid-area: main;
}

.product--info{
    display: block;
    background-color: rgb(51, 24, 50);
    margin-top: 20px;
    padding: 18px 4px;
    color: #efefef;
    border-radius: 10px;
    text-align: center;
    width: 200px;
}

.product--info h4{
    color: var(--orange);
}

.article{
    margin: 0 auto;
}

.shop--products--container h2:hover{
    text-decoration: underline;
    color: var(--orange);
}

.shop--products--container{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    column-gap: 50px;
    row-gap: 50px;
    margin: 0 auto;
    padding-top: 2%;
    align-items: center;
    width: 800px;
}

.shop--products--container img{
    border-radius: 10px;
}

.mainShop{
    padding-bottom: 50px;
    background-color: rgb(198, 216, 211);
}

.aside--shop{
    justify-content: center;
    flex-direction: column;
    margin: 0 auto; 
    width: 500px;

}

.aside--shop > h1{
    margin-top: 20px;
    text-transform: uppercase;
    text-align: center;
    margin-top: 5%;
    font-size: 1.5em;
    letter-spacing: 2px;
    color: var(--orange);
}

.product--list{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    column-gap: 50px;
    row-gap: 20px;
    margin-top: 2%;
    justify-content: center;
}

.cart--header > h1{
    border-bottom: 1px #000000 solid;
    flex-grow: 1;
    text-align: start;
}

.cart--header{
    margin-top: 18px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    column-gap: 40px;
}

.cart--header--product{
    width: 30%;
}

.cart--total{
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    justify-content: end;
    column-gap: 10px;
    align-items: center;
}

.article--cart{
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    padding-bottom: 8px;
    border-bottom: 1px#000000 solid;
}

.remove--article{
    cursor: pointer;
}


.article--cart--amount{
    width: 35px;
    border: 1px #000000 solid;
}

.btn--checkout{
    background-color: var(--purple);
    color:var(--white);
    padding: 5px;
    border-radius: 2px;
    flex-direction: column;
    cursor: pointer;
}


/*contact*/
#contact-main h3{
    text-transform: uppercase;
    margin-top: 5%;
    font-size: 1.5em;
    letter-spacing: 2.5px;
    color:var(--orange);
}

#contact-main{
    grid-area: main;
    display: flex;
    flex-direction: column;
    align-content: center;
    width: 100%;

}

.contactForm{
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 50px;
}

.gegevens > input, .vragenlijst{
    border: 1px solid black ;
    margin-top: 2%;
    margin-bottom: 2%;
    padding: 12px;
    width: 800px;
    background-color: white;
  }

  .vragenlijst{
    color: rgb(143, 141, 141);
  }

  .gegevens > h3, .vraag >h3{
    margin-bottom: 2%;
  }


  .vraag > h3{
    margin-top: 5%;
  }


  .bericht{
    border: 1px solid black;
    width: 800px;
    vertical-align: middle;
    padding-top: 1%;
    padding-left: 1%;
    margin-top: 2%;
    background-color: white;
  }
  
  .required{
    color: red;
  }


  .button{
    background-color:var(--orange);
    padding: 10px;
    margin-top: 40px;
    display: block;
    color: #efefef;
}


/*header*/
header .logo{
    margin-top: 3px;
}

header{
    background-color: var(--purple);
    grid-area: header;
    display: flex;
    padding: 10px;
    position: relative;
    align-items: center;
    width: 100%;
}

/*nav*/

nav{
    display: flex;
}

.nav-links{
    justify-content: center;
    margin-left: 60px;
    column-gap: 7px;
    border: black;
    padding: 5px;
    border-radius: 10px;
    display: flex;
    color: white;
}

.active{
    color: var(--orange);
}

.nav-links > li:active{
    color: rgb(213, 211, 211);
}

.zoekbalk{
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    
}

.zoekbalk-input{
    background-color: var(--white);
    border-radius: 50vh;
    padding: 0.5rem;
    border: 4px solid var(--white);
    flex-direction: row;
    width: 20rem;
}

.account--btns{
    margin-right: 20px;
    margin-left: 250px;
}

/*main*/

#home main{
    grid-area: main;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--lightMint);
    padding-bottom: 50px;
}

.banner-text > h1{
    font-size: 50px;
    display: block;
    text-align: left;
    margin-left: 20px;
    color: var(--orange);
}

.banner-text > h2{
    margin-left: 20px;
}

.offer{
    margin-left: auto;
    border-radius: 35% 10px 10px 35%;
    background-color: white 
}

.home-top-banner{
    margin-top: 2rem;
    display: flex;
    align-items: center;
    background-color:var(--purple);   
    color:white;
    width: 50%;
    font-size: 2rem;
    border-radius: 10px;
}

.btn--intro--buy{
    background-color:var(--orange);
    padding: 10px;
    margin-left: 20px;
    margin-top: 80px;
    display: block;
    color: white;
    border-radius: 10px;
}

.home--products {
    margin-top: 5%;
    display: flex;
    flex-direction: row;
    column-gap: 200px;
}

.home--products img{
    border-radius: 10px;
}

.home--products h2{
    display: block;
    background-color: var(--purple);
    padding: 25px 6px;
    color: #efefef;
    border-radius: 10px;
    text-align: center;
}

.home-about p{
    display: block;
    padding-top: 2%;
    padding-left: 1%;
}

.home-about{
    display: flex;
    color: white;
    background-color:var(--purple);
    margin-top: 3rem; 
    width: 50rem;
    height: 15rem;
    border-radius: 10px;
}

.home-about .logo{
    max-height: 20%    ;
    margin-top: auto;
    margin-bottom: auto;
    
}

/*footer*/

footer{
    background-color:var(--purple);
    grid-area: footer;
    text-align: center;
    padding-top: 2%;
    padding: 2rem;
    color:rgb(213, 211, 211);
}

a:hover{
    text-decoration: underline;

}


/*customers*/
#customerContainer{
    display: flex;
    flex-wrap: wrap;
    column-gap: 50px;
    row-gap: 20px;
    margin-top: 2%;
    justify-content: center;
}

.customerList{
    display: flex;
    flex-direction: column;
    border: var(--black) 1px solid;
    background-color: var(--white);
    padding: 12px;  
    border-radius: 5px;
    width: 200px;
    justify-content: center;
    align-items: center;    
    text-align: left;
}



/*media queuries*/

/*---------------beign-media-quries*---------------------*/
@media screen and (max-width: 768px){
    /*header*/
header{
flex-direction: column;
padding: 5px;}

.aside--shop{
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    max-width: 500px;
}
.zoekbalk{
    margin-top: 5px;
}
    /*nav*/
.nav-links {
  flex-direction: row;
  align-items: center;
  margin: 10px 0;
}

.account--btns{
    margin: 0 auto;
}

    /*main-home*/
.home--products{
    margin-top: 5px;
    flex-direction: column;
}

.home-about p{
    padding-top: 2%;
    padding: 2%;
}

.container-about{
    height: 25rem;
}

.home-about img{
    width: 50%;
}

.container-about-myself {
    margin-top: 10rem;
}

.home-about{
    align-items: left;
    max-width: 350px;
}

.home-top-banner{
    height: 13rem;
    width: 90%;
    margin-bottom: 5%;
}

.home--products img{
    margin-top: 4%;
}

.offer{
    width: 50%;
}

.banner-text > h1{
    font-size: 30px;
}

.banner-text > h2{
    font-size: 25px;
}

.btn--intro--buy{
    font-size: 1.5rem;
    margin-top: 20px;
}

/*shop*/
.shop--products--container{
    max-width: 500px;
  }

  
#shop{
    grid-template-areas: 
    'header header header'
    'aside aside aside'
    'main main main'
    'footer footer footer';
}

/*prodcut*/

.product-item{
    flex-direction: column;
    margin-left: -100px;
}

.review-form {
    align-items: center;
}

.submit-review{
    width: 36%;
    font-size: 18px;
}
/*customers*/
#customerContainer{
    column-gap: 50px;
    row-gap: 20px;
    margin-top: 2%;
    justify-content: center;
    max-width: 600px;
}

/*contact*/
.gegevens > input, .vragenlijst, .bericht{
    max-width: 80vw;
}
}



/*---------------end-media-quries*---------------------*/