/* ---------------------------------------
   KONTAKTFORMULAR
------------------------------------------ */
.section-contact form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form label {
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #ffffff;
    font-family: "Segoe UI", sans-serif;
    /* oder was du nutzt */
    border: 1px solid #ccc;
    outline: none;
}

.contact-form button {
    background-color: #003b45;
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: center;
}

.contact-form button:hover {
    transform: scale(1.1);
    font-weight: 700;
}

.error-message {
    color: #d9534f;
    /* rot/orange */
    font-size: 14px;
    display: none;
    margin-top: 5px;
    text-align: left;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 95, 115, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.overlay.hidden {
    display: none;
}

.overlay-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    color: #0d5b66;
    max-width: 400px;
}

.overlay-box h2 {
    margin-top: 0;
}

.overlay-box button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #0d5b66;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}