/* contact page */
/* Contact section */
body {
    overflow-x: hidden;
}
.contact h1 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.contact p {
  font-size: 15px;
}
.contact-methods {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.contact-line {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  gap: 16px;
  color: #111;
  text-decoration: none; /* zorgt dat het geen linkstijl heeft */
}

.contact-line:hover {
  text-decoration: none;
  color: #f86e6e;
}

.contact-line span {
  display: inline-block;
}
.contact-icon {
  color: #f86e6e;
  font-size: 22px;
  width: 22px;
  text-align: center;
}
 
.intake-aanmelding {
  background-color: #78b1bc;
  color: white;
  padding: 50px 20px;
  /* Make it extend to the right side only */
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);\
  padding-right: calc(50vw - 50% + 20px); /* compensate for pulled-out space */
}
.intake-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.intake-aanmelding h2 {
  color: white;
  font-size: 1.7rem;
  margin-bottom: 20px;
}

.intake-aanmelding .intro {
  font-size: 14px;
  margin-bottom: 30px;
  color: #e6f0f2;
}

.intake-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group.small {
  flex: 0 0 100px;
}

.form-group.full {
  width: 100%;
}

.form-group label {
  font-size: 14px;
  margin-bottom: 5px;
  color: white;
}

.form-group input,
.form-group textarea {
  padding: 10px;
  border-radius: 5px;
  border: none;
  font-size: 15px;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease;
  position: relative;
  color: white;
}

.radio-option input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border: none;
  background-color: transparent;
  background-image: url('../images/radio-unchecked.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.radio-option input[type="radio"]:checked {
  background-image: url('../images/radio-checked.png');
}

/* Red background when selected */
.radio-option span {
  padding: 10px 14px;
  border-radius: 10px;
  transition: background 0.2s ease;
}

.radio-option input[type="radio"]:checked + span {
  background-color: #f86e6e;
  font-weight: 500;
}

.checkbox-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: white;
}

.checkbox-option input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border: none;
  background-color: transparent;
  background-image: url('../images/radio-unchecked.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
  flex-shrink: 0;
  margin: 0;
}

.checkbox-option input[type="checkbox"]:checked {
  background-image: url('../images/radio-checked.png');
}

.required {
  color: #ffc06c;
  font-weight: 600;
}


.form-group.checkbox label {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group.checkbox small {
  font-size: 12px;
  color: #dceff3;
  margin-top: 5px;
  display: block;
}

.submit-button {
  background-color: white;
  color: #78b1bc;
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.submit-button i {
  margin-right: 8px;
  color: #f86e6e;
  font-size: 18px;
}

.submit-button:hover {
  background-color: #f1f1f1;
}
.crisis {
  margin-top: 60px;
}

.crisis h2 {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: #111;
}

.crisis h2 i {
  color: #f86e6e;
  font-size: 26px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.crisis p {
  font-size: 16px;
  line-height: 1.8;
  color: #222;
  max-width: 700px;
}
.form-message.success {
    color: #285518;
    font-weight: bold;
}
.form-message.error {
    color: #e2001c;
    font-weight: bold;
}