/* General Styling */
body {
    font-family: 'Poppins', sans-serif;
    color: #2F2F2F; /* Donkergrijze tekstkleur */
    background-color: #f9f9f9; /* Lichte achtergrondkleur */
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
    
  }
  
/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  

  h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
  }
  
  p {
    color: #4F4F4F; /* Iets lichtere tekstkleur voor body tekst */
  }
  
  /* Navbar */
  .navbar {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    position: fixed;
    top: 0px;
    z-index: 9999;
  }
  .navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #008080 !important; /* Teal accentkleur */
  }
  .nav-link {
    margin-left: 15px;
    color: #4F4F4F; /* Donkere tekstkleur */
    transition: color 0.3s ease;
  }
  .nav-link:hover {
    color: #008080; /* Teal accentkleur */
  }
  
  .navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  }
  /* Vlag-icoontjes */
.lang-icon {
  width: 30px;
  height: auto;
  cursor: pointer;
  transition: transform 0.2s;
}
.lang-icon:hover {
  transform: scale(1.1);
}
  
  /* Hero Section */
  .hero-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.7);
    height: 100vh;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/banner.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    z-index: -1;
    }
  .hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
  }
  .hero-section p {
    font-size: 1.3rem;
    font-weight: 400;
  }
  .hero-section .btn-primary {
    background-color: #008080; /* Teal accentkleur */
    color: white;
    padding: 10px 30px;
    font-size: 1.2rem;
    border-radius: 30px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  }
  .hero-section .btn-primary:hover {
    background-color: #006666; /* Donkerder teal voor hover */
  }
  /* Hero Section Parallax */
  .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
  }
  .hover-float {
    transition: transform 0.3s ease-in-out;
  }
  .hover-float:hover {
    transform: translateY(-5px);
  }
  
  
  /* Section Styling */
  section {
    padding: 60px 0;
  }
  section h2 {
    font-size: 2.5rem;
    color: #008080; /* Teal accentkleur */
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
  }
  
  /* About Section */
  #about img {
    border-radius: 12px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
  }
  
  /* Experience Section */
  .card {
    border: none;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 25px rgba(0, 0, 0, 0.15);
  }
  .card-title {
    font-size: 1.5rem;
    color: #008080; /* Teal accentkleur */
  }
  .card-body p {
    color: #4F4F4F; /* Donkere tekstkleur */
  }
  
  /* Contact Form */
  form .form-control {
    border-radius: 5px;
    padding: 10px 15px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
  }
  form .form-control:focus {
    border-color: #008080;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
  }
  form button {
    background-color: #008080;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  form button:hover {
    background-color: #006666;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
  }
  
  /* Footer */
  footer {
    background: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
  }
  footer p {
    margin: 0;
    font-size: 14px;
  }
  
  /* Scroll Animation */
  [data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
  }
  [data-aos].aos-animate {
    opacity: 1;
    transform: translate(0px, 0px);
  }
  
/* Back-to-top Button */
#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 99;
    width: 50px;
    height: 50px;
    background: #008080; /* Teal accentkleur */
    color: white;
    font-size: 1.5rem;
    border-radius: 50%;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    display: flex; /* Flexbox toevoegen */
    align-items: center; /* Verticaal centreren */
    justify-content: center; /* Horizontaal centreren */
    transition: all 0.3s ease;
  }
  
  #back-to-top:hover {
    background: #006666; /* Donkerder teal kleur bij hover */
  }
  
  

  /* Responsive Design */
  @media screen and (max-width: 768px) {
    .hero-section h1 {
      font-size: 2rem;
    }
    .hero-section p {
      font-size: 1rem;
    }
  }
  