#contact {
    background: var(--light);
    padding: 8rem 0;
}

#contact h2 {
    font-weight: 800;
    font-size: clamp(2.5rem, 6vw, 4rem); /* größerer Titel */
    color: var(--accent);
    font-family: 'Poppins', sans-serif;
    text-align: center;
    margin-bottom: 3rem;
}

#kontaktFormular form {
    background-color: var(--light);
    padding: 3rem; /* mehr Innenabstand */
    border-radius: 1rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
    max-width: 800px;
    margin: 0 auto;
}

#kontaktFormular label {
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 0.6rem;
    display: inline-block;
    font-size: 1.25rem; /* größer */
}

#kontaktFormular input,
#kontaktFormular textarea {
    border: 1px solid #ccc;
    border-radius: 0.6rem;
    padding: 1rem 1.2rem; /* mehr Padding */
    width: 100%;
    font-size: 1.25rem; /* größere Schrift */
    font-family: 'Inter', sans-serif;
    background: var(--light);
    color: var(--text-dark);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#kontaktFormular input:focus,
#kontaktFormular textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.25rem rgba(23, 114, 5, 0.25);
    outline: none;
}

#kontaktFormular button[type="submit"] {
    background-color: var(--accent);
    color: var(--light);
    border: none;
    padding: 1rem 2rem; /* größerer Button */
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 0.6rem;
    font-family: 'Inter', sans-serif;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

#kontaktFormular button[type="submit"]:hover {
    background-color: #145604; /* dunkleres Grün */
    transform: translateY(-2px);
}

#kontaktFormular button[type="submit"]:active {
    transform: translateY(0);
}

/* Loader */
.form-loading-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px; /* größer, damit es zum Rest passt */
}
