.background-image {
  background-image: url('/assets/ab.jpg');
}

.banner-content h1 {
  font-size: 52px;
  line-height: 78px;
  letter-spacing: 1px;
  font-weight: 700;
}

.layout-wrapper {
  margin: 60px auto;
  padding: 0 20px;
}

.layout-wrapper p {
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 1px;
  font-weight: 300;
  margin-top: 0;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  grid-template-rows: 1fr 166px 300px 300px 300px;
}

#address {
  grid-area: 2 / 1;
}

#contact-details {
  grid-area: 2 / 2;
}

#dylan-portrait {
  grid-area: 3 / 1;
}

#dylan-bio {
  grid-area: 3 / 2;
}

#joren-portrait {
  grid-area: 4 / 1;
}

#joren-bio {
  grid-area: 4 / 2;
}

#marlies-portrait {
  grid-area: 5 / 1;
}

#marlies-bio {
  grid-area: 5 /2;
}

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

.contact-details {
  margin-bottom: 50px;
  flex-direction: column;
  align-items: center;
}

.contact-details h1 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.contact-details a {
  color: #000;
}

.person-bio a {
  color: #000;
}

.layout-wrapper .title {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 600;
}

.portrait,
.person-bio {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.card {
  flex-direction: column;
  max-width: 250px;
  width: 100%;
}

.card p {
  width: 300px;
}

.devider {
  position: absolute;
  right: 0;
  height: 70%;
  border-right: 1px solid #dee2e6;
}

.circle-img {
  max-width: 250px;
  max-height: 250px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background-color: #eee;
}

.person-bio h4 {
  font-size: 32px;
  line-height: 48px;
  font-weight: 300;
  margin: 0;
  margin-bottom: 8px;
}

.person-bio .role {
  margin-top: 0;
  margin-bottom: 1rem;
}

.contact-form {
  grid-column: 3;
  grid-row: 2 / span 3;
}

.contact-form h2 {
  font-size: 44px;
  line-height: 66px;
  font-weight: 300;
  margin: 0;
  margin-bottom: 50px;
  padding-left: 12px;
  padding-right: 12px;
}

.field {
  margin-bottom: 30px;
  padding-left: 12px;
  padding-right: 12px;
}

.field label {
  display: block;
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.thank-you {
  display: none;
  color: #bb9047;
  margin-top: 30px;
}

.confirm {
  display: block;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #000;
  font-family: inherit;
}

.contact-submit {
  width: 100%;
  padding: 17px 48px;
  background-color: #bb9047;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: opacity 0.2s;
}

.contact-submit:hover {
  opacity: 0.9;
}

@media (max-width: 1024px) {
  .grid-container {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form {
    grid-column: 1 / span 2;
    grid-row: auto;
    margin-top: 40px;
  }
}

@media (max-width: 600px) {
  .grid-container {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }

  .title-wrapper {
    text-align: center;
  }

  .contact-details {
    margin-bottom: 30px;
    text-align: center;
  }

  .devider {
    display: none;
  }

  .person-bio {
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
  }

  .card p {
    width: 100%;
  }

  .contact-form {
    grid-column: 1;
  }

  #address {
    grid-area: 2 / 1;
  }

  #contact-details {
    grid-area: 3 / 1;
  }

  #dylan-portrait {
    grid-area: 4 / 1;
    height: 250px;
  }

  #dylan-bio {
    grid-area: 5 / 1;
  }

  #joren-portrait {
    grid-area: 6 / 1;
    height: 250px;
  }

  #joren-bio {
    grid-area: 7 / 1;
  }

  #marlies-portrait {
    grid-area: 8 / 1;
    height: 250px;
  }

  #marlies-bio {
    grid-area: 9 /1;
  }
}

/* Voeg toe aan je contact-styles.css */

.thank-you {
    display: none;
    margin-top: 20px;
    padding: 20px;
    background-color: #4CAF50;
    color: white;
    border-radius: 8px;
    text-align: center;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.field input,
.field textarea {
    transition: border-color 0.3s ease;
}

.field input:focus,
.field textarea:focus {
    border-color: #bb9047;
    outline: none;
}

.contact-submit {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.contact-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}