/* Reset en basis */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* volledige hoogte van viewport */
}

main {
  flex: 1; /* neemt alle resterende ruimte tussen header en footer */
    padding-top: 80px; /* Zorgt voor ruimte onder de vaste header */
}

/* Footer blijft onderaan, maar wordt niet over de content geduwd */
footer {
  color: #333;
  text-align: center;
  padding: 1rem;
}

body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  color: #333;
}

/* Header en navigatie */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #333;
  color: white;
  padding: 1rem;
  z-index: 1000; /* Zorg dat het boven andere elementen ligt */
}
.headertop {
  position: fixed;
  top: 75px;
  left: 0;
  width: 100%;
  background: #9b9191;
  color: white;
  padding: 1rem;
  justify-content: center;

}


.nav-container {
  display: flex;

  justify-content: space-between;
  align-items: center;
}

nav ul {
  display: flex;
  gap: 5px;
  list-style: none;
}

nav a {
  color: white;
  text-decoration: none;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
   
  
}

/* Grid layout */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  padding: 1rem;
}

.card {
  background: white;
  width: 100%;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
.logotop{
    width:10%; 
    margin-top:2%;
}

  .kaartitem {
    width: 40%;
    text-align: center;
    background-color: #eee;
    color: black;
    padding: 2%;
    border-radius: 8px;
    border-width: 1px;
    border-style: solid;
    justify-content: center;
    margin-bottom: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  }
  .kaartitem:hover{
    background-color: #8a8584f8;
    
  }
  .mutatieitem {
    width: 40%;
    text-align: left;
     background-color: #dadddc;
    color: black;
    padding: 2%;
    border-radius: 8px;
    border-width: 1px;
    border-style: solid;
    justify-content:flex-start;
        margin-bottom: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  }

    .mutatieitemvalid {
    width: 40%;
    text-align: left;
    background-color: #8bf8bc;
    color: black;
    padding: 2%;
    border-radius: 8px;
    border-width: 1px;
    border-style: solid;
    justify-content:flex-start;
        margin-bottom: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  }
       .mutatieitemnotvalid {
    width: 40%;
    text-align: left;
    background-color: #f8928b;
    color: black;
    padding: 2%;
    border-radius: 8px;
    border-width: 1px;
    border-style: solid;
    justify-content:flex-start;
        margin-bottom: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  }
  .mutatieitemnocheck {
    width: 40%;
    text-align: left;
    background-color: #7eceee;
    color: black;
    padding: 2%;
    border-radius: 8px;
    border-width: 1px;
    border-style: solid;
    justify-content:flex-start;
        margin-bottom: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  }
      .mutatieitemnorights {
    width: 40%;
    text-align: left;
   background-color: #d6d2d2;
    color: black;
    padding: 2%;
    border-radius: 8px;
    border-width: 1px;
    border-style: solid;
    justify-content:flex-start;
        margin-bottom: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  }



  .topicon{
    width:100px;
    height: 100px;
    margin: 15px;
       object-fit:contain ;

  }
  .adresicon{
    width:75px;
    height:75px;
     object-fit:contain ;

  }
  .welkomicon{
    width:50px;
    height:50px;
    object-fit:contain ;

  }
/* Responsive: mobiel */
@media (max-width: 768px) or (orientation:portrait) {
    .topicon{
    width:60px;
    height: 60px;
    object-fit:contain ;

    margin: 5px;
  }
    .adresicon{
    width:50px;
    height: 50px;
    object-fit:contain ;

   
  }
  .welkomicon{
    width:35px;
    height: 35px;
    object-fit:contain ;
   
  }
  

  nav ul {
    flex-direction: column;
    background: #444;
    position: absolute;
    top: 60px;
    left: 0;
    width: 200px;
    display: none;
  }

  nav ul li {
    text-align: left;
    padding: 1rem;
  }


  nav ul.active,
  #nav-menu.active ul{
    display: flex;
  }
    #nav-menu ul {
    display: none;
    flex-direction: column;
    background: #444;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 5px;
  }

  .hamburger {
    display: block;
  }
  footer {
  color: #333;
  text-align: center;
  align-content: first baseline;
  padding: 4rem;
}
.logotop{
    width:25%; 
    margin-top:5%;
}

  .kaartitem {
    width: 80%;
    text-align: center;
    background-color: #eee;
    color: black;
    padding: 5%;
    border-radius: 8px;
    border-width: 1px;
    border-style: solid;
    justify-content: center;
        margin-bottom: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  }
    .kaartitem:hover{
    background-color: #8a8584f8;
    
  }

    .mutatieitem {
    width: 80%;
    text-align: left;
    background-color: #dadddc;
    color: black;
    padding: 5%;
    border-radius: 8px;
    border-width: 1px;
    border-style: solid;
    justify-content: flex-start;
        margin-bottom: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  }
        .mutatieitemvalid {
    width: 80%;
    text-align: left;
    background-color: #8bf8bc;
    color: black;
    padding: 5%;
    border-radius: 8px;
    border-width: 1px;
    border-style: solid;
    justify-content: flex-start;
        margin-bottom: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  }
      .mutatieitemnotvalid {
    width: 80%;
    text-align: left;
    background-color: #f8928b;
    color: black;
    padding: 5%;
    border-radius: 8px;
    border-width: 1px;
    border-style: solid;
    justify-content: flex-start;
        margin-bottom: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  }
     
      .mutatieitemnocheck {
    width: 80%;
    text-align: left;
    background-color: #7eceee;
    color: black;
    padding: 5%;
    border-radius: 8px;
    border-width: 1px;
    border-style: solid;
    justify-content: flex-start;
        margin-bottom: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  }
      .mutatieitemnorights {
    width: 80%;
    text-align: left;
    background-color: #eee;
    color: black;
    padding: 5%;
    border-radius: 8px;
    border-width: 1px;
    border-style: solid;
    justify-content: center;
        margin-bottom: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  }
}
