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;
  color: white;
  padding: 15px 30px;
  font-size: 18px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.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 */
}



/* 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 standaard links uitlijnen */
.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 */
}
}


