/* Kontaktformular Bereich */
.form-section {
    width: 100vw;
    min-height: 70vh;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    box-sizing: border-box;
}

.form-container {
    width: 100%;
    max-width: 700px; /* Maximale Breite des Containers */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hp-field { position:absolute; left:-10000px; top:auto; width:1px; height:1px; overflow:hidden; }

.form-heading {
    font-family: Inter, Arial, sans-serif;
    font-size: 48px;
    color: #004c9b;
    font-weight: normal;
    margin-bottom: 32px;
    margin-top: 0;
}

.form-description {
    font-family: Inter, Arial, sans-serif;
    font-size: 17px;
    color: #001d3b;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 48px;
    max-width: 600px;
}

.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form input,
.contact-form textarea {
    width: 100%; /* 100% Breite */
    padding: 12px 16px;
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    border: 1.5px solid #001d3b;
    border-radius: 0;
    background: #fff;
    color: #001d3b;
    margin-bottom: 0;
    box-sizing: border-box;
    resize: none;
}

/* Textarea - minimalhöhe definieren */
.contact-form textarea {
    min-height: 150px;
}

/* Button Styling */
.form-button {
    margin-top: 18px;
    background: none;
    color: #c8006e;
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    text-transform: uppercase;
}

.form-button:hover {
    color: #a0005a;
    text-decoration: underline;
}

@media (max-width: 900px) {
    .form-heading { font-size: 32px; }
    .form-description { font-size: 15px; }
    .form-container { max-width: 98vw; }
    .contact-form input, .contact-form textarea { max-width: 98vw; }
}

/* Gestrecktes Bild mit Overlay für Kontaktformular */
.form-image-wrapper {
    position: relative;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
    margin-bottom: 40px;
    display: block;
    overflow: hidden;
}

.form-image-wrapper::after {
    content: "";
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(10,35,66,0.7) 0%, rgba(123,47,242,0.5) 100%);
    z-index: 2;
}

.form-image {
    width: 100vw;
    max-width: 100vw;
    height: 350px;
    max-height: 350px;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0,29,59,0.18);
    display: block;
    position: relative;
    z-index: 1;
}



@media (max-width: 768px) {
    .form-image {
        height: 180px;
        max-height: 180px;
    }
}

/* Captcha erst zeigen, wenn alle Pflichtfelder gefüllt sind */
.captcha-wrapper { display: none; }
.captcha-wrapper.visible { display: block; }

/* Optional: Submit-Button sperren bis Captcha sichtbar ist (bessere UX) */
.form-button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  text-decoration: none;
}
