body {
  background-color: white;
  font-family: Helvetica, Verdana, sans-serif;
  margin: 0 auto;
  max-width: 1800px;
  padding: 0 5%;
  font-size: 1em;
}

.imggroot {
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}


h1, h2, h3 {
  color: rgb(175, 154, 153);
}

h2, h3 {
  font-size: 1.2em;
  margin: 1em 0;
  font-weight: bold;
}

p, ul, li {
  color: rgb(135, 135, 135);
  font-size: 1.2em;
}

a {
  color: rgb(200, 170, 170);
  text-decoration: none;
  font-size: 1em;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

a:hover {
  color: rgb(95, 75, 74);
  text-decoration: underline;
}

p a:hover {
  color: rgb(200, 170, 170);
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

li a {
  display: inline-block;
  color: rgb(95, 75, 74);
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover {
  color: rgb(200, 170, 170);
}

.hamburger-menu {
  position: relative;
}

.menu-items {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 1000;
  padding: 10px 0;
  width: max-content;
  min-width: 150px;
  max-width: 300px;
  white-space: nowrap;
}

.menu-items.open {
  display: flex;
}

.menu-items a {
  display: block;
  padding: 10px 20px;
  transition: color 0.3s ease;
  text-align: left;
}

.menu-items a:hover {
  color: rgb(200, 170, 170);
  background-color: rgba(200, 170, 170, 0.1);
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: rgb(135, 135, 135);
  transition: background-color 0.3s, transform 0.3s;
}



/* Media sectie */

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .menu-items {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    margin: auto;
    width: 90%;
    max-width: 300px;
    text-align: center;
    z-index: 1001;
  }
  
  .footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
  }
  
   .footer-section h2 {
    color: rgb(255, 255, 255) !important;
  }
  
  .footer-bottom {
  margin-top: 20px;
  font-size: 1rem;
  padding-top: 10px;
  text-align: center;
  color: rgb(230, 225, 220);
  background-color: rgb(255, 255, 255) !important;
  }
}



.back-button {
  display: inline-block;
  margin: 20px;
  padding: 10px 15px;
  color: rgb(175, 154, 153);
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  transition: background-color 0.3s;
}

.back-button:hover {
  background-color: rgb(200, 170, 170);
}



/* Footer sectie */

.footer {
  background-color: rgb(147, 141, 139);
  color: white;
  padding: 20px 10px;
  text-align: center;
  margin-top: 80px;
  font-size: 1em;
}

.footer-section .info-grid {
  display: grid;
  grid-template-columns: max-content auto; /* Eerste kolom breedte van tekst, tweede kolom flexibel */
  gap: 10px;
  align-items: center;
  
}

.footer-section .info-grid .icon {
  width: 28px;
  height: 28px;
  vertical-align: middle;
}

.footer-section .info-grid .separator {
  margin: 0 5px;
}

.footer-section .info-grid .value {
  text-align: right;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  display: flex;
  flex-direction: column; /* Dit zorgt ervoor dat de items onder elkaar staan */
  align-items: flex-start; /* Dit zorgt ervoor dat ze aan de linkerkant worden uitgelijnd */
 flex: 1;
  margin: 10px;
  min-width: 250px;
  text-align: center;
}

.footer .icon {
  width: 28px;
  height: 28px;
  margin-right: 8px;
}


.footer-section h2 {
  color: rgb(255, 255, 255);
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-section p {
  color: rgb(230, 225, 220);
  display: flex;
  align-items: center;
  gap: 8px; /* Ruimte tussen afbeelding en tekst */
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  margin-top: 20px;
  font-size: 0.9em;
  padding-top: 10px;
  text-align: center;
  color: rgb(230, 225, 220);
  background-color: rgb(255, 255, 255);
}

.contact-item {
  display: grid;
  grid-template-columns: 30px auto auto 1fr;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px
  
}

.contact-item .icon {
  width: 24px; height: 24px;
  
}

.contact-item .label {
  text-align: left;
  min-width: 80px;
}

.contact-item .separator {
  text-align: center;
  min-width: 10px;
}

.contact-item .value {
  text-align: left;
}

.social-media {
  display: flex;
  vertical-align: middle;
  justify-content: center;
  gap: 8px;
}


