/* Neue Kontaktformular-Stile */
.contact-section {
    background-color: #0e0b1f;
    padding: 40px 0;
    z-index: 10;

}

.contact-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #d695ff;
    border-bottom: 2px solid #444444;
    text-align: center;
}


.contact-section form {
    background-color: #141d40;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    margin: 0 auto;
    position: relative; /* Positionierung für z-index */
    z-index: 10; /* Höherer z-index, damit es vor der Hintergrund-Sektion liegt */
}

.contact-section .form-group {
    margin-bottom: 15px;
    position: relative; /* Positionierung für z-index */
    z-index: 10; /* Höherer z-index, damit es vor der Hintergrund-Sektion liegt */
}

.contact-section label {
    font-size: 16px;
    color: #d695ff;
    position: relative; /* Positionierung für z-index */
    z-index: 10; /* Höherer z-index, damit es vor der Hintergrund-Sektion liegt */
}

.contact-section .form-control {
    background-color: #0e0b1f;
    border: 1px solid #444444;
    color: white;
}

.contact-section button {
    background-color: #957ded;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-section button:hover {
    background-color: #6e48bb;
}

.hero-section h3 {
    font-size: 100px; /* Standard für große Bildschirme */
    color: #d695ff;
    text-transform: uppercase;
    font-family: Comfortaa, sans-serif;
    text-align: center; /* Zentriere den Text */
}
@media (max-width: 768px) {
    .hero-section h3 {
        font-size: 50px; /* Verkleinere die Schriftgröße für mobile Geräte */
        word-wrap: break-word; /* Lasse den Text umbrechen, wenn er zu lang ist */
    }
}

.arrow3 {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 30px solid #d695ff; /* Farbe des Pfeils */
    animation: moveDown 2s ease-in-out infinite alternate;
    position: absolute;
    justify-content: center;
    top: 60%;
    right: 50%;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .arrow3 {
        width: 0;
        height: 0;
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        border-top: 30px solid #d695ff; /* Farbe des Pfeils */
        animation: moveDown 2s ease-in-out infinite alternate;
        position: absolute;
        justify-content: center;
        top: 60%;
        right: 45%;
        align-items: center;
    }
}