/* Algemene Stijlen */
body {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
  overflow-y: auto;
}

/* Header */
.new_top_home_web .bigContainer {
  background-image: url("https://workik-widget-assets.s3.amazonaws.com/widget-assets/images/aw64.png");
  background-size: cover;
  background-position: center;
  padding: 30px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
}

.new_top_home_web .Container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

/* Tekstsectie */
.new_top_home_web .subHeading {
  font-size: 36px;
  font-weight: bold;
  color: #0d1b2a;
  margin-bottom: 10px;
}

.new_top_home_web .heading {
  font-size: 18px;
  color: #acacac;
  margin-bottom: 20px;
}

.new_top_home_web .getStarted {
  /* padding: 10px 30px; */
  background-color: #0d1b2a;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  transition: 0.3s ease;
}

.new_top_home_web .getStarted:hover {
  background-color: white;
  color: #0d1b2a;
  border: 2px solid #0d1b2a;
}

/* Afbeelding */
.mainImage {
  width: 450px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Over mij Sectie */
#about {
  padding: 50px 20px; /* Zelfde padding als ervaring */
  background-color: #e2ebf1; /* Achtergrondkleur gelijk aan ervaring */
  text-align: center;
  max-width: 1200px; /* Zelfde breedte als ervaring */
  margin: 20px auto; /* Centreren en ruimte erboven/eronder */
  border-radius: 8px; /* Zelfde afronding als ervaring */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Zelfde schaduw als ervaring */
}

#about h2 {
  font-size: 24px; /* Consistente titelgrootte */
  color: #0d1b2a;
  margin-bottom: 20px;
}

#about p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 15px;
}



/* Ervaring Sectie */
#experience {
  padding: 50px 10%;
  background-color: #f8f9fa; /* Zacht grijs */
  text-align: center;
}

#experience h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #0d1b2a;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
}

.grid div {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid div:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.grid h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0d1b2a;
}

.grid p {
  font-size: 14px;
  color: #555;
}

/* Coming Soon */
.coming-soon {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  background: #ffefd5;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.coming-soon h3 {
  font-size: 20px;
  color: #0d1b2a;
  margin-bottom: 10px;
}

.coming-soon p {
  font-size: 14px;
  color: #333;
}

/* Contact Sectie */
#contact {
  padding: 50px 20px;
  background-color: #e2ebf1;
  text-align: center;
  border-radius: 8px;
  max-width: 1200px;
  margin: 20px auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#contact h2 {
  font-size: 28px;
  color: #0d1b2a;
  margin-bottom: 15px;
}

#contact p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #333;
}

.contact-icons {
  margin: 20px 0;
}

.contact-icons a {
  margin: 0 15px;
  color: #0d1b2a;
  font-size: 36px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.contact-icons a:hover {
  color: #cce4f0;
  transform: scale(1.2);
}

form {
  margin-top: 20px;
  display: flex;
  flex-direction: column; /* Zorgt ervoor dat de inputvelden en de knop onder elkaar staan */
  align-items: center; /* Centreert de inhoud */
}

form input, form textarea {
  width: 100%;
  max-width: 600px;
  margin: 10px 0; /* Ruimte tussen velden */
  padding: 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

form textarea {
  resize: none;
}

form button {
  margin-top: 10px; /* Zorgt voor ruimte boven de knop */
  padding: 15px 30px;
  background-color: #c6def6;
  color: #000000;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #ffffff;
  color: #000000;
}


/* Footer */
footer {
  background-color: #e2ebf1;
  color: rgb(0, 0, 0);
  text-align: center;
  padding: 10px 0;
}

/* Media Queries voor mobiele apparaten */
@media (max-width: 768px) {
  .new_top_home_web .Container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .new_top_home_web .subHeading {
    font-size: 28px;
  }

  .new_top_home_web .heading {
    font-size: 16px;
  }

  .new_top_home_web .getStarted {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 16px;
  }

  .mainImage {
    width: 100%;
    max-width: 300px;
    margin-top: 20px;
  }

  #experience {
    padding: 50px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .grid div {
    width: 100%;
    max-width: 300px;
    padding: 20px;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .new_top_home_web .bigContainer {
    padding: 30px 10px;
  }

  .new_top_home_web .subHeading {
    font-size: 24px;
  }

  .new_top_home_web .heading {
    font-size: 14px;
  }

  .new_top_home_web .getStarted {
    font-size: 14px;
    padding: 8px 15px;
  }

  .mainImage {
    max-width: 250px;
    margin-top: 20px;
  }
}

a:hover, .getStarted:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.contact-icons a:hover {
  transform: rotate(10deg) scale(1.2);
  transition: transform 0.3s ease, color 0.3s ease;
}

section {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease-in-out;
  margin-top: 50px;
  margin-bottom: 50px;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

.subHeading {
  animation: slideIn 1s ease-in-out forwards;
}

@keyframes slideIn {
  from {
      transform: translateX(-100%);
      opacity: 0;
  }
  to {
      transform: translateX(0);
      opacity: 1;
  }
}

.grid div:hover {
  transform: translateY(-10px) scale(1.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

form input:focus, form textarea:focus {
  background-color: #f0f8ff;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.6);
  outline: none;
}

.blinking-cursor {
  font-weight: bold;
  font-size: 18px;
  color: #0d1b2a;
  animation: blink 0.7s step-end infinite;
}

@keyframes blink {
  from, to {
      opacity: 1;
  }
  50% {
      opacity: 0;
  }
}

/* Scroll Effect */
.hidden-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-in-out;
}

.visible-scroll {
  opacity: 1;
  transform: translateY(0);
}


.hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-in-out;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}

.hidden {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease-in-out;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}

.mainImage {
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
}

.mainImage.visible {
  opacity: 1;
}

body {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

.hidden {
  visibility: hidden;
}

.visible {
  visibility: visible;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.new_top_home_web {
  background-image: url("https://workik-widget-assets.s3.amazonaws.com/widget-assets/images/aw64.png");
  background-size: cover;
  background-position: center;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
}

.Container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

.subHeading {
  font-size: 36px;
  font-weight: bold;
  color: #0d1b2a;
  margin-bottom: 10px;
}

.heading {
  font-size: 18px;
  color: #acacac;
  margin-bottom: 20px;
}

.getStarted {
  padding: 10px 30px;
  background-color: #0d1b2a;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  transition: 0.3s ease;
  margin-top: 10px;
}

.getStarted:hover {
  background-color: white;
  color: #0d1b2a;
  border: 2px solid #0d1b2a;
}

.mainImage {
  width: 450px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  animation: fadeInImage 0.8s ease-in-out forwards;
}

@keyframes fadeInImage {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
