/* ============================================================
   SECTION WRAPPER
   ============================================================ */
.section-titles-form-image {
    width: 100%;
}

.titles-form-image__wrapper {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 0px;
}

/* ============================================================
   TITLES GROUP — gecentreerd bovenaan
   ============================================================ */
.titles-group {
    text-align: center;
    margin-bottom: 48px;
}

/* Eerste titel — eigen font (pas aan naar jouw keuze) */
.titles-group__title-1 {
    font-family: 'Playfair Display', serif; /* ← jouw font hier */
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 12px;
}

/* Tweede titel — ander font */
.titles-group__title-2 {
    font-family: 'Inter', sans-serif; /* ← jouw font hier */
    font-size: clamp(1.1rem, 2.5vw, 1.75rem);
    font-weight: 400;
}

/* ============================================================
   COLUMNS WRAPPER — flex, geen flex: 1 op kolommen
   ============================================================ */
.columns-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
    padding: 160px 30px 100px;
}

/* ============================================================
   LINKER KOLOM — form
   ============================================================ */
.column--form {
    width: 45%;
    min-width: 0;
}

.column--form__title {
    font-family: Microsoft Himalaya;
    font-weight: 400;
    font-style: Regular;
    font-size: 50px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 15px;
}

.column--form__form {
    /* CF7 stijlen optioneel hier */
}

/* ============================================================
   RECHTER KOLOM — info + image
   ============================================================ */
.column--info-image {
    width: 55%;
    min-width: 0;
}

.column--info-image__title {
    font-family: Microsoft Himalaya;
    font-weight: 400;
    font-style: Regular;
    font-size: 50px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 15px;
}

.column--info-image__information {
    font-family: Molengo;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    margin-bottom: 35px;
    line-height: 25px;
    letter-spacing: 0%;
    text-align: right;

}

.column--info-image__information a {
    color: black;
    text-decoration: underline;
}

.column--info-image__image-wrap {
    width: 100%;
}

.column--info-image__image {
    width: 100%;
    height: auto;
    display: block;
}
/* ============================================================
   MEDIA QUERIES
   ============================================================ */

/* Tablet landscape */
@media (max-width: 1200px) and (min-width: 900px) {
    .columns-wrapper {
        gap: 32px;
    }

    .column--form {
        width: 45%;
    }

    .column--info-image {
        width: 55%;
    }
	
}

/* Tablet portrait */
@media (max-width: 899px) and (min-width: 600px) {
    .columns-wrapper {
        flex-direction: column;
        gap: 40px;
		padding-top: 80px;
    }

    .column--form,
    .column--info-image {
        width: 100%;
        text-align: left !important;
    }
	
	.column--info-image__information { 
		text-align: left;	
	}
}

/* Mobiel */
@media (max-width: 600px) {
    .titles-form-image__wrapper {
        padding: 0 16px;
    }

    .columns-wrapper {
        flex-direction: column;
        gap: 32px;
		padding-top: 60px;
    }

    .column--form,
    .column--info-image {
        width: 100%;
        text-align: left !important;
    }

    .titles-group {
        margin-bottom: 32px;
    }
	
	.column--info-image__information { 
		text-align: left;	
	}
}

.contact_form label {
    font-family: 'Molengo', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
}

.contact_form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact_form input,
.contact_form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #999;
  padding: 8px 0;
  background: transparent;
  font-size: 14px;
  border-radius: 0px;
}

.contact_form textarea {
  border: 1px solid #999;
  padding: 10px;
  min-height: 120px;
}

.contact_form input:focus,
.contact_form textarea:focus {
  outline: none;
  border-color: #000;
}

.contact_form input[type="submit"] {
  background: #0b1b2b;
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
    display: inline-block;
    max-width: 200px;
    font-size: 16px;    
    font-family: 'Molengo', sans-serif;
}

.contact_form input[type="submit"]:hover {
  background: #000;
}

.column.column--info-image {
    text-align: right;
}