@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth; 
}


header {
    background-color: #f0f0f0;
    width: 100%;
    position: fixed;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1px 200px ;
}
/* Algemene styling voor de link (logo als tekst) */
.logo-text {
    text-decoration: none;  /* Verwijdert de onderstreping van de link */
    color: #3a6cf4;         /* Blauwe kleur voor de tekst */
    text-transform: uppercase; /* Zet de tekst in hoofdletters */
    font-weight: bold;      /* Maakt de tekst vetgedrukt */
    font-size: 1.8em;       /* Vergroot de tekstgrootte */
}



/* Als je een specifieke stijl voor de link wilt, kun je een andere kleur of fontinstelling gebruiken */


.logo {
    width: 100px; /* Pas de breedte aan */
    height: auto; /* Zorg voor de juiste verhoudingen */
    margin: 10px;
    border: 2px solid #3366ff; /* Voorbeeld van een blauwe rand */
    border-radius: 100%; /* Cirkelvormig logo */
    
}



.navigation a{
    color: #3a6cf4;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 500;
    padding-left: 30px;
}

.navigation a:hover{
    color: #07b812;
}

section {
    padding: 50px 100px;
}

.main {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, rgba(0, 0, 255, 0.6), rgba(0, 0, 0, 0.6)), url(wwww.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}



.main h2 {
    color: #fff;
    font-size: 1.4em;
    font-weight: 500;
}

.main h2 span {
    display: inline-block;
    margin-top: 270px;
    color: #4e9eff;
    font-size: 3em;
    font-weight: 600;
}

.main h3 {
    color: #fff;
    font-size: 2em;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 10px;
    margin-bottom: 30px;
}

.main-btn {
    color: #fff;
    background-color: #3a6cf4;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    display: inline-block;
    padding: 0.9375em 2.1875em;
    letter-spacing: 1px;
    border-radius: 150px;
    margin-bottom: 90px;
    transition: 1.9s ease;
}

.main-btn:hover {
    background-color: #0a49f6;
    transform: scale(1.1);
}

.social-icons a {
    color: #fff;
    font-size: 1.7em;
    padding-right: 30px;
}

.title {
    display: flex;
    justify-content: center;
    color: #3a6cf4;
    font-size: 2.2em;
    font-weight: 800;
    margin-bottom: 30px;
}

.content {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.card {
    background-color: #fff;
    width: 21.25em;
    box-shadow: 0 5px 25px rgba(1 1 1 / 15%);
    border-radius: 10px;
    padding: 25px;
    margin: 10px;
    transition: 1.1s ease;
}


.card:hover {
    transform: scale(1.1);
}

.card .icon {
    color: #3a6cf4;
    font-size: 8em;
    text-align: center;
}

.info {
    text-align: center;
}

.info h3{
    color: #3a6cf4;
    font-size: 1.2em;
    font-weight: 700;
    margin: 10px;
}

.projects {
    background-color: #000016;
}
/* Algemene styling voor de About-sectie */
.about {
  padding: 50px 0;
  background-color: #3498db; /* Blauw achtergrondkleur */
  color: #fff; /* Witte tekstkleur voor beter contrast */
  text-align: center;
}

.about-container {
  max-width: 4000px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 200px;
}

.about-text {
  flex: 1;
  max-width: 600px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6); /* Zachte zwarte achtergrond voor leesbaarheid */
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #fff; /* Witte kleur voor de titel */
}

.about-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #f0f0f0; /* Lichtere kleur voor de tekst */
}

.about-text b {
  color: #f39c12; /* Gele kleur voor de belangrijke tekst */
}

.about-image {
  flex: 1;
  max-width: 400px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Voeg wat styling toe voor kleine schermen */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: left;
  }

  .about-text {
    max-width: 100%;
  }
}


.projects .content{
    margin-top: 30px;
}

.project-card {
    background-color: #fff;
    border: 1px solid #fff;
    min-height: 14em;
    width: 23em;
    overflow: hidden;
    border-radius: 10px;
    margin: 20px;
    transition: 1.1s ease;
}

.project-card:hover {
   transform: scale(1.1);
}

.project-card:hover .project-image {
    opacity: 0.9;
 }

.project-image img{
    width: 100%
}

.project-info {
    padding: 1em;
}

.project-category {
    font-size: 0.8em;
    color: #000;
}

.content {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Vier kolommen naast elkaar */
    gap: 20px; /* Ruimte tussen de kaarten */
    justify-content: center;
}


.project-card {
    background-color: #fff;
    border: 1px solid #fff;
    min-height: 14em;
    width: 100%; /* Zorg ervoor dat de kaarten zich aanpassen aan de grid */
    overflow: hidden;
    border-radius: 10px;
    transition: 1.1s ease;
}
@media (max-width: 1024px) {
    .content {
        grid-template-columns: repeat(2, 1fr); /* Twee kolommen op tablets */
    }
}

@media (max-width: 640px) {
    .content {
        grid-template-columns: 1fr; /* Eén kolom op mobiele apparaten */
    }
}
/*//////////////////////////////////////////////*/


.animated-line {
    width: 0;
    height: 5px;
    background-color: #110f0f;
    animation: lineAnimation 1s forwards;
}

@keyframes lineAnimation {
    to {
        width: 100%; /* De lijn breidt uit naar 100% van de breedte */
    }
}
.animated-line {
    width: 0;
    height: 5px;
    background-color: #110f0f;
    animation: lineAnimation 1s forwards;
}

@keyframes lineAnimation {
    to {
        width: 100%; /* De lijn breidt uit naar 100% van de breedte */
    }
}

/*//////////////////////////////////////////////*/
.project-title {
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
    font-weight: 800;
    margin-top: 10px;
}

.more-details {
    text-decoration: none;
    color: #3a6cf4;
}

.more-details:hover {
    color: #601cfc;
}

.contact .icon{
    font-size: 4.5em;
}

.contact .info h3 {
    color: #000;
}

.contact .info p {
    font-size: 1.5em;
}

.footer {
    background-color: #000016;
    color: #fff;
    padding: 2em;
    display: flex;
    justify-content: space-between;
}

.footer-title {
    font-size: 1.3em;
    font-weight: 600;
}

.footer-title span {
    color: #3a6cf4;
}

.footer .social-icons a{
    font-size: 1.3em;
    padding: 0 12px 0 0;
}

@media (max-width:1023px){
    header{
        padding: 12px 20px;
    }

    .navigation a{
        padding-left: 10px;
    }

    .title{
        font-size: 1.8em;
    }

    section{
        padding: 80px 20px;
    }

    .main-content h2{
        font-size: 1em;
    }

    .main-content h3{
        font-size: 1.6em;
    }

    .content{
        flex-direction: column;
        align-items: center;
    }

}


@media (max-width:641px){
    body{
        font-size: 12px;
    }

    .main-content h2{
        font-size: 0.8em;
    }

    .main-content h3{
        font-size: 1.4em;
    }
}

@media (max-width:300px){
    body{
        font-size: 10px;
     
    }

  }
  .u-palette-1-base,
  .u-body.u-palette-1-base,
  section.u-palette-1-base:before,
  .u-palette-1-base > .u-container-layout:before,
  .u-palette-1-base > .u-inner-container-layout:before,
  .u-palette-1-base.u-sidenav:before,
  .u-container-layout.u-container-layout.u-palette-1-base:before,
  .u-table-alt-palette-1-base tr:nth-child(even) {
    color: #ffffff;
    background-color: #3a6cf4;  
  
  }
  .u-section-1 {
    background-image: linear-gradient(#3a6cf4, ffffff);
  }
  
  
  .u-section-1 .u-sheet-1 {
    min-height: 850px;
  }
  
  .u-section-1 .u-text-1 {
    font-weight: 700;
    font-size: 3rem;
    margin: 33px auto 0;
  }
  
  .u-section-1 .u-list-1 {
    margin-top: 17px;
    margin-bottom: 0;
  }
  
  .u-section-1 .u-layout-wrap-1 {
    width: 1500px;
    margin: -150x auto 0 0;
  }
  
  .u-section-1 .u-layout-cell-1 {
    min-height: 20px;
  }
  
  .u-section-1 .u-container-layout-1 {
    padding: 10px;
  }

  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f1f1f5;
}


.toggle-btn:hover {
    background-color: #2858a9;
}


.project-container {
    margin: 20px;
}

.project {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.project h2 {
    margin-top: 0;
}

.more-details-btn {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
}

.more-details-btn:hover {
    background-color: #0056b3;
}

.project-details {
    display: none;
    margin-top: 15px;
    font-size: 16px;
    color: #333;
}
.project-details {
    padding: 10px;
    background-color: #f0f0f0;
    margin-top: 10px;
    border-radius: 5px;
}

main {
    padding: 40px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-container {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 500;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    font-size: 16px;
    margin-bottom: 10px;
    display: block;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    margin-top: 8px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #4430da; /* Roodkleur bij focus */
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color:#4430da;
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color:#4430da; /* Donkerder rood bij hover */
}

.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px;
    position: fixed;
    width: 100%;
    bottom: 0;
}

/* Responsieve aanpassing voor mobiel */
@media (max-width: 768px) {
    main {
        padding: 20px;
    }

    .contact-container {
        padding: 20px;
    }

    .submit-btn {
        font-size: 16px;
    }
}

/* Sectietitel */
.title {
    text-align: center;
    color: #3a6cf4;
    font-size: 40px;
    margin-bottom: 20px;
}

/* Grid voor de jobs */
.jobs {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 5 items naast elkaar */
    gap: 2px;
    margin: 2px;
    padding: 0 1px;
}

/*/////////////////////////////////////////////////////////////////////////////////////////////////////*/
/* Logo Stijlen */


/* Job styling */
.job {
    background-color: #eaf3ff;
    border: 4px solid #4f82e7;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.2);
}

/* Omschrijving (verborgen standaard) */
.job-description {
    margin-top: 10px;
    color: #040416;
    font-size: 20px;
    line-height: 1.6;
}

/* Knopstijl */
.toggle-btn {
    background-color: #122969;
    color: white;
    border: none;
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

   


html, body {
    height: 100%;
    margin: 0; /* Zorgt ervoor dat er geen ongewenste marges zijn */
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100%; /* Zorgt ervoor dat de container minstens de hoogte van het scherm heeft */
}

.main-content {
    flex-grow: 1; /* Dit zorgt ervoor dat de hoofdinhoud groeit en de footer naar de onderkant duwt */
}

.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    width: 100%; /* Zorgt ervoor dat de footer de breedte van de pagina heeft */
    position: relative;
    bottom: 0;
}

.footer p {
    margin: 0;
    font-size: 14px;
}

