@import url(/css/header.css);


body {
    font-family: Arial, sans-serif;
    text-align: center;
    
  }
  

  /* geen paarse dingen bij links */
  a {
    text-decoration: none;
    color: inherit;
  }

 /* Ensure the iframe container has enough space at the top */
.map-landing-page {
  width: 100%;    /* Full width */
  height: 100vh;  /* Full viewport height */
  padding-top: 75px; 
  overflow: hidden; 
  margin: 0;
}

/* Ensure the iframe fills its container */
.map-landing-page iframe {
  width: 100%;
  height: calc(100vh - 70px); /* Full height minus the navbar height */
  border: 0;
  box-sizing: border-box;
}


/* General Footer Styles */
footer {
  background-color: #333;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

/* Footer Content Layout */
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px; /* Adds spacing */
  border-top: 6px solid #ff0000;
  padding: 20px;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  margin-bottom: 20px;
  text-align: left;
}

/* Headings */
.footer-section h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

/* Lists */
.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-section ul li a:hover {
  text-decoration: underline;
}

/* Social Icons */
.footer-section ul li i {
  margin-right: 5px;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 6px solid #ff0000;
}

/* 📱 Responsive Footer for Mobile */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-section {
    width: 100%;
    text-align: center;
  }

  .footer-section h2,
  .footer-section ul {
    margin-left: 0; /* Remove unnecessary left margin */
  }
}