/*color*/
:root{
    --main-color: rgb(0,0,0);
    --background: rgba(198,238,248,255);
    --white: rgb(255,255,255);
  }

  /*navbar*/
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
  body {
    color: var(--main-color);
    font-family: "Poppins", sans-serif;
  }

  header a {
    text-decoration: none;
  }

  header {
    padding: 0 20px;
    background-color: var(--background);
    height: 65px;
    display: flex;
    justify-content: space-between;
  }

  #brand {
    font-weight: bold;
    font-size: 18px;
    display: flex;
    align-items: center;
  }

  ul {
    list-style: none;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: var(--background);
}

  ul a {
    color: var(--main-color);
  }

  ul li {
    padding: 5px;
    margin-left: 10px;
  }

  ul li:hover {
    transform: scale(1.2);
    transition: 0.2s;
  }

  #hamburger-icon {
    margin: auto 0;
    display: none;
    cursor: pointer;
  }

  #hamburger-icon div {
    width: 35px;
    height: 3px;
    background-color: var(--main-color);
    margin: 6px 0;
    transition: 0.4s;
  }

  .open .bar1 {
    -webkit-transform: rotate(-45deg) translate(-6px, 6px);
    transform: rotate(-45deg) translate(-6px, 6px);
  }

  .open .bar2 {
    opacity: 0;
  }

  .open .bar3 {
    -webkit-transform: rotate(45deg) translate(-6px, -8px);
    transform: rotate(45deg) translate(-6px, -8px);
  }

  .open .mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .mobile-menu {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    height: calc(100vh - 50px);
    width: 100%;
  }

  .mobile-menu li {
    margin-bottom: 10px;
  }

  .column {
    float: left;
    width: 33.33%;
    padding: 5px;
 }
 
 /* Clearfix (clear floats) */
 .row::after {
   content: "";
   clear: both;
   display: table;
 }

/*responsive navbar*/
  @media only screen and (max-width: 550px) {
    header nav {
      display: none;
    }

    #hamburger-icon {
      display: block;
    }

    .column {
      float: right;
      width: 50%;
      padding: 5px;
    }
  }

/*navbar img*/
  .img-navbar{
    width: 21%;
  }

  /*homepage*/
  h1{
    color: var(--main-color);
    text-align: center;
    margin-top: 20%;
  }

  .info{
    margin-left: 45%;
    font-size: 17px;
    margin-top: -15%;
  }

  .image-container img.assortiment {
    width: 40%; 
    height: auto; 
    margin-top: 20%;
    margin-left: 5%;
  }
  
  .image-container {
    margin-right: 20px; 
  }

  /*product card*/
  .product-card {
    width: 300px;
    height: 400px;
    border: 2px solid #333;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-top: 4%;
    margin-right: 5%; 
    display: inline-block;
    margin-left: 4%;
  
  }

  .product-details {
    padding: 20px; /* voegt een binnenmarge toe van 20px aan alle zijden van het element*/
    text-align: center;
    font-size: 14px;
  }

  .product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40vh; 
    background-color: var(--background);
  }

  .img {
    width: 70%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  h2{
    font-size: 20px;
  }

 .button1{
  margin-left: 10px;
 }

 .cart{
  margin-left: 15px;
 }

/*login*/
.container {
  margin-top: 200px;
  text-align: center;
}

input {
  padding: 10px;
  margin: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

#login-btn {
  background-color: var(--background);
  color: var(--main-color);
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer; 
}

/*button naar bestelformulier*/
.bestelformulier{
  background-color: var(--background);
  color: var(--main-color);
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer; 
}

/*shopping cartpage style*/
body, table {
  margin: 0;
  padding: 0;
  border-collapse: collapse;
}

/* Apply styles to the table and its elements */
.tbl-cart {
  width: 100%;
  border: 1px solid #ccc;
}

.tbl-cart th, .tbl-cart td {
  padding: 10px;
  border: 1px solid #ccc;
}

/* Align text in header cells to the left, and set width for specific columns */
.tbl-cart th {
  text-align: left;
}

.tbl-cart th[width="5%"], .tbl-cart td[width="5%"],
.tbl-cart th[width="10%"], .tbl-cart td[width="10%"] {
  text-align: right;
}

.tbl-cart th[width="5%"] {
  text-align: center;
}

.hidden-col {
  display: none;
}

.table-text{
  text-align: center;
}

.table-totaal{
  text-align: right;
}

.txt-heading{
  text-align: center;
}

.product-title{
  font-weight: bold;
  font-size: 17px;
}

