
     /* BASIS*/
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body{

  height: 100vh;
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.125rem;
  position: relative;
  padding-bottom: 6.25rem; /* ruimte voor de footer */

}
/* HEADER LAYOUT */
header {

  top: 0;
  z-index: 1000; /* blijft boven andere elementen */
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000000;
  color: white;
  padding: 1.25rem;
  
}

.site-footer {
   
  background-color: #0B1A33;
  color: #fff;
  padding: 1.25rem 0.625rem 0.625rem;
  margin-top: 2rem;
}


.footer-content {

  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto 1.25rem;
  gap: 40px;
  
}


.footer-bodem {
  
  text-align: center;
  font-size: 1rem;
  color: #ffffff;
  border-top: 3px solid #fff;
  padding-top: 0.938rem;

}
.over-ons-knop {

  display: inline-block;
  padding: 0.625rem 1.25rem;
  background-color: #333;
  color: white;
  border-radius: 5px;
  font-weight: bold;

}

.over-ons-knop:hover {

  background-color: #555;

}
.naarboven{
  display: flex;
  position: absolute;
  left: 50%;
  align-items: center;
  transform: translateX(-50%);
}
main{
  flex:1;
}
h3{

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #000;
  font-size: 2rem;
  padding: 1.25rem 0.438rem;
  margin: 0.438rem auto;
  width: 80%;
  max-width: 800px;
  
}

/* LINKS */
.header-links ul {
  list-style: none;
  display: flex;
  align-items: center;
}
.header-links li {
  text-align: center;
}

/* LOGO */
.logo-container {

  display: flex;
  position: absolute;
  left: 50%;
  align-items: center;
  transform: translateX(-50%);
}
.logo-container img {
  max-height: 78px;
  height: auto;
  width: auto;
 
}

/* RECHTS */
.header-rechts {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
.header-rechts ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
.header-rechts li {
  text-align: center;
}

/* ICONEN */
.img-icon-home {
  width: 30px;
  min-height: 30px;
  display: block;
  margin: 0 auto;
  gap: 10px;
}

/* LINKS EN HOVER EFFECT */
a {
  text-align: center;
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 1.231rem;

}
.icon-text {
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease;
}
a:hover .icon-text {
  border-style: solid;
  border: #fff;
  opacity: 1;
}

.background-img-container {
  background-image: url('https://i.pinimg.com/736x/46/ae/4c/46ae4ce62b4bdb1305462b0e391b56a2.jpg'); 
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 2rem;
}

/* Donkere overlay voor leesbaarheid */
.background-img-container::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Zet tekst boven overlay */
.background-img-container section {
  position: relative;
  z-index: 2;
}

/* Tekststijl */
.tekst-container h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.tekst-container p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* Knopstijl */
.stel-pc-samen {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: #ffffff;
  color: #0B1A33;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.stel-pc-samen:hover {
  background-color: #0B1A33;
  color: white;
  box-shadow: 0 0 10px rgba(255,255,255,0.6);
}
/*Populaire producten voorpagina*/
.pop-product{
   padding: 3rem;
   text-align:center;
}
.producten-container {
  height: 300px;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* hier maak ik 3 producten naast elkaar met evenveel ruimte tussen de vakken*/
  gap: 20px;
  max-width: 90%;
  margin: 0 auto;
  margin-bottom: 3.125rem;

} 
.titel-container-alle-samengestelde-pc a.stel-pc-samen {
  display: inline-block;
  margin: 1rem auto;
}
.product-box {
  
  background-color: #d1d1d1;
  color: white;
  text-align: center;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

}
.product-box:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}
.product-box img {

  width: 100%;
  height: auto;
  border-radius: 8px;
  
}
/**/
.bekijk-alles-knop-container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 2rem 0;
  background-color: transparent; 
}

.bekijk-alles-knop-container .stel-pc-samen {
  font-size: 1.1rem;
  padding: 0.8rem 2rem;
  background-color: #0B1A33;
  color: white;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.bekijk-alles-knop-container .stel-pc-samen:hover {
  background-color: #ffffff;
  color: #0B1A33;
  box-shadow: 0 0 8px 4px #ccc;
}
/*OVER ONS*/

.over-ons-container {
  background-color: #f5f5f5;
  padding: 2rem;
  max-width: 800px;
  margin: 2rem auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.over-ons-container p {
  color: #333;
  font-size: 1.125rem;
  line-height: 1.8; /*verticale hoogte van tekst*/
  margin-bottom: 1.5rem;
  text-align: left;
}
.over-ons-container-img{
  width: 250px;
  height: auto;
}
h1 {
  font-size: 2.2rem;
  text-align: center;
  margin-top: 2rem;
  color: #0B1A33;
}
/*---------- PC BUILDER PAGINA ----------*/

  
    /* Container voor de categorieën */
    .categories {
      max-width: 70%;
      margin: 0 auto;
    }

    /* Elke categorie-regel */
    .category {
      display: flex;
      align-items: center;
      background: #f7f7f7;
      border: 1px solid #ddd;
      border-radius: 4px;
      padding: 0.625rem;
      margin-bottom: 0.625rem;
    }

    .category img.icon {
      width: 65px;
      min-height: 65px;
      margin-right: 45px;
    }

    .category .title {
      flex: 1;
      font-size: 22px;
      font-weight: bold;
      text-transform: uppercase;
    }

    .category img.arrow {
      width: 40px;
      min-height: 40px;
    }
/*------------------------------------------- Contact Pagina -----------------------------------------------------*/
.contact-container{
  display: flex;
  width: 50%;
  min-height: 350px;
  margin: 0 auto;
  background-color: #ffffff;
  margin-bottom: 2rem;
  border-style: solid;
  border-radius: 2rem;
  
}
.contact-img{
  
  margin: 0 auto;
  width: 400px;
  
}
.contact-container-text{
  text-align: center;
  margin: auto;
  padding-top: 3rem;
  color: #000000;
  font-size: 1.23rem;
}

.contact-container-helpdesk{

   display: inline-block;
   padding: 0.938rem 0.938rem;
   background-color: #0B1A33;
   color: #ffffff;
   border-radius: 0.938rem;
   border: 5px;
   letter-spacing: 2px;
   width: 270px;
   margin:0 auto;
   bottom: 19px;
   cursor: pointer;
   transition: all 0.3s ease;
       
    }

    .contact-container-helpdesk:hover {
  background-color: rgb(229, 229, 229);
  color: #0B1A33;
  box-shadow: 0 0 10px 8px rgb(255, 255, 255); /* witte gloed geven */
}

 
/*------------------------------------------- Winkelmandje -------------------------------------------------------*/
.winkelmand {

  margin-left: auto;
  margin-right: auto;
  margin-top: 3.125rem;
  margin-bottom: 3.125rem;
  padding: 3.125rem;
  padding-top: 0.5rem;
  width: 400px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  
}

h2 {

  text-align: center;
  margin: 0.625rem;
  font-size: 1.5rem;

}

.item {

  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;

}

button {

  width: 100%;
  padding: 10px;
  margin-top: 20px;
  background: #003772;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;

}

button:hover {
  background: #92afce;
  transition: 219ms;
}
/*-------------------------------------------INDIVIDUEEL PRODUCT---------------------------------------------------*/
.product-pagina {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
  flex: 1;
}

.product-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.product-info h2 {
  font-size: 2rem;
  color: #000000;
}

.product-info .prijs {
  font-size: 1.8rem;
  font-weight: bold;
  color: red;
}

.product-info .omschrijving {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.5;
}

.product-info button {
  background-color: #00b300;
  color: rgb(255, 255, 255);
  font-size: 1.1rem;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  max-width: 250px;
}

.product-info button:hover {
  background-color: #00ff00;
}
.meer-lezen-kleur{
  color: #000;
  font-size: 1rem;
}

/*-------------------------------------  ALLE PRODUCTEN , PAGINA  ------------------------------------*/
/*----- PRIJS FILTEREN -----*/
.sort-container {
  text-align: center;
  margin: 20px 0;
}

.sort-container select {
  padding: 8px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.filter-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 20px 0;
  flex-wrap: wrap;
}

#zoekInput {
  padding: 8px;
  font-size: 1rem;
  width: 200px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

#sort {
  padding: 8px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}
/*-----  GRID  -----*/

.alle-producten-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Altijd 3 naast elkaar */
  gap: 30px;
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.product-kaart {
  background-color: #c3c3c3;
  color: white;
  border-radius: 10px;
  text-align: center;
  padding: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-kaart:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 20px rgba(224, 224, 224, 0.2);
}

.product-kaart img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 5px;
}

.product-kaart h4 {
  margin-top: 10px;
  font-size: 1.2rem;
}

.product-kaart .prijs {
  color: red;
  font-weight: bold;
}
.product-kaart-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
