body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    height: 100%;
    flex-direction: column;
    min-height: 100vh;
  }
  
  .container {
    flex: 1;
  }
  
  /* Navigatiebalk */
  .navbar {
    background-color: #ffffff;
  }
  .navbar-brand {
    font-weight: bold;
    color: white;
    height: 80px;
  }
  .navbar-nav .nav-link {
    color: #92CF4D;
    font-weight: bold;
  }
  .navbar-nav .nav-link:hover {
    color:rgb(96, 148, 36);
  }
  
  /* Hero section */
  .hero-section {
    background-image: url('../images/hero2.jpg'); /* Placeholder afbeelding */
    background-size: cover;
    background-position: center;
    height: 100vh;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
  }
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
  }
  .hero-content {
    position: relative;
    z-index: 1;
  }
  
  .btn-custom {
    background-color: #92CF4D; /* Blauwe knop */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    margin-top: 20px; /* Extra ruimte boven de knop */
    display: block; /* Zorgt dat de knop altijd op een nieuwe regel staat */
    width: fit-content; /* Voorkomt dat de knop te breed wordt */
}

  .btn-custom:hover {
    background-color: #7ab341;
  }
  
  /* Text Section Styling */
  .text-section {
  background-color: #e8f7ea; /* Lichtere kleur voor achtergrond */
  padding: 40px 20px; /* Gelijke ruimte boven en onder (40px) */
  border-radius: 15px; /* Hoekradius voor papier effect */
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1); /* Zwevend effect */
  margin-bottom: 40px; /* Ruimte tussen section en footer */
  margin-top: 40px; /* Zelfde ruimte boven de sectie */
  transition: box-shadow 0.3s ease; /* Subtiele animatie voor schaduw */
  }
  
  
  .text-section h2 {
    color: #92CF4D;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: left;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); /* Lichte schaduw voor diepte */
  }
  
  .text-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    max-width: 800px; /* Zorgt ervoor dat de tekst niet te breed wordt */
    margin: 0 auto 20px auto; /* Centrerend en ruimte tussen paragrafen */
    padding: 0 20px; /* Ruimte aan de zijkanten van de tekst */
    text-align: left; /* Verander justify naar left voor betere weergave */
    word-break: normal; /* Voorkomt ongewenste afbrekingen */
    overflow-wrap: break-word; /* Voorkomt uitrekken van woorden */
  }
  
  /* Style voor de contactgegevenskolom */
.contact-info {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-top: 20px;
}

.contact-info:hover {
    transform: translateY(-5px); /* Beweging omhoog bij hover */
}

.contact-info i {
    font-size: 24px;
    color: #92CF4D;
    margin-right: 10px;
    transition: color 0.3s ease;
}

.contact-info i:hover {
    color: #7ab341; /* Kleurverandering bij hover */
}

.contact-info p {
    font-size: 1.1rem;
    color: #2C2C2C;
}

.contact-link {
    color: #2C2C2C; /* Aangepaste kleur voor de links */
    text-decoration: none; /* Verwijdert de standaard onderstreping */
    font-weight: bold; /* Maakt de tekst vetgedrukt */
    transition: color 0.3s ease; /* Maakt een soepele overgang voor hover effect */
}

.contact-link:hover {
    color: #7ab341; /* Lichtere kleur bij hover */
    text-decoration: underline; /* Onderstreept de link bij hover */
}

.contact-details i {
    margin-right: 10px; /* Ruimte tussen het pictogram en de tekst */
}

.contact-details p {
    margin-bottom: 15px; /* Meer ruimte tussen de contactregels */
    font-family: 'Arial', sans-serif; /* Zorgt ervoor dat alle tekst hetzelfde lettertype heeft */
}

.contact-details p span {
    font-weight: normal; /* Maakt de tekst van het adres normaal (niet vetgedrukt) */
    font-family: 'Arial', sans-serif; /* Hetzelfde lettertype voor het adres */
}

  
  /* Hover Effect voor Zweven */
  .text-section:hover {
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.15); /* Diepere schaduw bij hover */
  }
  
  /* Project section */
  .placeholder-img {
    background-color: #ddd;
    height: 250px;
    margin-bottom: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }
  .placeholder-img:hover {
    transform: scale(1.05);
  }
  
  /* footer */
  
  .footer {
    background: #333;
    color: white;
    padding: 40px 0 10px;
    font-size: 14px;
    text-align: center;
    width: 100%;
    margin-top: auto;
  }
  
  .footer .footer-section {
    text-align: left;
    margin-bottom: 20px;
  }
  
  .footer h5 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  .footer p {
    margin: 0;
    font-size: 14px;
  }
  
  .footer a {
    color: white !important;
    text-decoration: none;
    font-weight: normal;
  }
  
  .footer a:hover {
    text-decoration: underline;
  }
  
  /* Copyright + Social Media */
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
  }
  
  .copyright {
    font-size: 12px;
    opacity: 0.7;
    text-align: left;
  }
  
  /* Social Media Icons */
  
  /* Zorgt ervoor dat de social icons altijd naast elkaar blijven */
  .social-icons {
    display: flex;
    justify-content: center; /* Zorgt ervoor dat ze mooi gecentreerd blijven */
    flex-wrap: nowrap; /* Voorkomt dat ze op een nieuwe regel komen */
    gap: 10px; /* Voegt ruimte toe tussen de iconen */
  }
  
  .social-icons a {
    flex: 0 0 auto; /* Zorgt ervoor dat de iconen niet krimpen */
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: white;
    background: #444;
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  
  
  
  .social-icons a i {
  font-size: 20px; /* Grootte van de iconen */
  }
  
  .social-icons a:hover {
  transform: scale(1.1); /* Klein zoom-effect bij hover */
  }
  
  /* Specifieke hover-kleuren per platform */
  .social-icons a:nth-child(1):hover { background: #3b5998; } /* Facebook */
  .social-icons a:nth-child(2):hover { background: #0077b5; } /* LinkedIn */
  .social-icons a:nth-child(3):hover { background: #E4405F; } /* Instagram */
  
  
  
  /* Scroll animations */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @media (max-width: 768px) {
    .hero-section {
      height: 80vh;
      .footer-bottom {
        justify-content: space-between;
        flex-direction: column; /* Stapelt de inhoud op kleine schermen */
        align-items: flex-start; /* Zorgt dat alles links blijft */
      }
      .copyright {
        width: 100%;
        text-align: left;
        margin-bottom: 10px;
      }
    }
  
    .text-section p {
      padding: 0 10px; /* Minder padding op kleine schermen */
      text-align: left; /* Voorkomt rare spaties */
      word-break: break-word; /* Zorgt ervoor dat lange woorden goed afbreken */
      hyphens: auto; /* Laat woorden beter afbreken waar mogelijk */
  }
  }
  
  
  