/*MENU*/
/* Algemene stijlen */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    color: white;
    text-align: center;
}

/* Navigatiebalk */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 20px;
    background: rgba(0, 0, 0, 0.8);
    width: 90%;
    margin: 10px auto;
    border-radius: 60px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    position: relative;
    margin-top: 20px;
}

/* Logo stijlen */
.logo img {
    height: 40px;
    border-radius: 0px;
    margin-left: 25px;
    margin-top: 8px
}

/* Navigatielinks */
.nav-links {
    display: flex;
    justify-content: center;
    flex-grow: 1;
    margin-right: 130px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    margin: 0 20px;
    padding: 5px 0;
    position: relative;
}

/* Streepje onder de actieve link */
.nav-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 0;
    height: 3px;
    background: #dec178;
    transform: translateX(-50%);
    transition: all 0.3s ease;
    border-radius: 10px;
}

.nav-links a:focus::after,
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Actieve link markeren */
.nav-links a.active {
    font-weight: bold;
}

/* Hamburger menu (links in de balk) */
.hamburger-wrapper {
    display: none; 
}

.menu-toggle {
    font-size: 30px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background: #dec178;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.3s ease;
    margin-right: 15px;
}

/* Mobiele versie */
@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between;
    }

    .hamburger-wrapper {
        display: flex; 
    }

    .nav-links {
        display: none;
    }
}

/* Fullscreen menu overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; 
    background: #1a1a1a; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9999;
}

/* Actieve staat (wanneer menu open is) */
.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Sluitknop (X) */
.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

/* Menu-items */
.menu-content {
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    text-align: center;
}


.menu-item {
    display: inline-block;
    font-size: 24px;
    color: white;
    text-decoration: none;
    position: relative;
    padding: 10px 0;
    letter-spacing: 2px; 
    text-align: center; 
    width: max-content; 
}

/* Streepje onder de actieve link */
.menu-item::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 0;
    height: 3px;
    background: #dec178; /* Kleur van het streepje */
    transition: width 0.3s ease-in-out;
    transform: translateX(-50%);
    border-radius: 10px;
}

/* Actieve en hover staat */
.menu-item:hover::after,
.menu-item.active::after {
    width: 100%; /* Zorgt ervoor dat de streep de tekst volgt */
}

.menu-item.active {
    font-weight: bold;
}







/*CONTACTPAGE*/
/* Algemene reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    margin-top: -30px;
}

/* Contact sectie */
.contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    background: #f4f4f4; /* Zorgt ervoor dat de pagina-achtergrond wit blijft */
}

/* Contact container */
.contact-container {
    background: #313131; /* Originele kleur behouden */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 90%; /* Zorgt dat de breedte zoals origineel blijft */
    max-width: 800px; /* Houdt het blok niet te breed */
    margin: 0 auto; /* Centreert het blok */
    margin-top: -10px;
}

/* Contactformulier */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Formulier groepen */
.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Labels */
label {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: bold;
    color: white;
}

/* Inputvelden en textarea */
input, textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background: white;
    color: black;
    border: none;
    border-radius: 5px;
}

/* Zorg dat textarea kan groeien */
textarea {
    resize: vertical;
}

/* Verzenden knop */
button.submit-btn {
    padding: 15px;
    background: #dec178; /* Goudkleurig */
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

/* Hover effect knop */
button.submit-btn:hover {
    background: #dec178;
}

/* Active effect knop */
button.submit-btn:active {
    background: #dec178;
}

/* Marges op mobiel zonder grootte te veranderen */
@media (max-width: 768px) {
    .contact-container {
        width: 90%; /* Houdt het blok breed genoeg */
        margin-left: auto;
        margin-right: auto;
    }
}






/*QUALIFICATIONS*/
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: white;
    color: #333;
    line-height: 1.6;
}

/* Qualifications Section */
.qualifications {
    background-color: #f4f4f4;
    padding: 40px 20px;
}

/* Title */
.qualifications .title {
    font-size: 36px;
    color: rgba(0, 0, 0, 0.8);
    text-align: center;
    margin-bottom: 20px;
}

/* Intro Paragraph */
.qualifications .intro {
    font-size: 18px;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
    margin-left: 40px;
    margin-right: 40px;
    line-height: 1.6;
}

/* Qualification Block */
.qualification-block {
    background-color: #d3d3d3;
    padding: 20px;
    margin-bottom: 30px;
    margin-right: 40px;
    margin-left: 40px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.qualification-block h3 {
    font-size: 28px;
    color: black;
    margin-bottom: 15px;
    margin-left: 20px;
    text-align: left;
}

.qualification-text p {
    font-size: 16px;
    color: black;
    margin-bottom: 15px;
    margin-left: 20px;
    margin-right: 20px;
    line-height: 1.6;
    text-align: left;
}

.qualification-text ul {
    list-style-type: disc;
    margin-left: 48px;
    text-align: left;
}

.qualification-text ul li {
    font-size: 16px;
    color: black;
    margin-bottom: 8px;
}





/*INDEX*/
/* Algemene styling voor de pagina */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Hero sectie styling */
.hero-section {
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    text-align: center;
    padding: 20px;
    margin-top: -50px;
}

.hero-section h2 {
    font-size: 48px;
    font-weight: bold;
}

.hero2 {
    margin-top: -130px;
}

/* Main content styling */
.main-content {
    padding: 40px;
    text-align: center;
}

.main-content h2 {
    font-size: 32px;
    color: black;
}

.main-content p {
    font-size: 18px;
    color: black;
    line-height: 1.6;
}

/* Zorg ervoor dat de hero-sectie geen invloed heeft op de positionering van de afbeelding */
.imglogo {
    padding: 20px;
    background-color: #f4f4f4;
}





/*FOOTER*/
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #313131; /* Aangepaste achtergrondkleur */
    color: white;
    text-align: center;
}

html, body {
  height: 100%;
  margin: 0;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

footer {
  background-color: #333;
  color: white;
  padding: 20px;
  text-align: center;
}




/*LINKED IN*/
.linkedin-container {
    text-align: center; 
    padding: 0;
    margin-top: -40px; 
    margin-right: 0px;
}

.linkedin-icon {
    width: 90px; /* Pas de grootte aan naar wens */
    height: auto; /* Zorgt ervoor dat de hoogte zich aanpast aan de breedte */
    border-radius: 12px; /* Maakt de hoeken van het icoon afgerond */
    transition: transform 0.3s ease; /* Maakt een mooie overgang bij hover */
}

.linkedin-icon:hover {
    transform: scale(1.1); /* Vergroot het icoon een beetje bij hover */
}

/*LOGO UNDER CONSTRUCTION*/
.logo_underconstruction {
    height: 100px;
}