/*allgemein*/

#kontaktDiv{
    width: 90%;
    margin-left: 5%;
    margin-top: 80px;
    margin-bottom: 100px;
    background-color: var(--lightGrey);
}

.kontaktForm{
    padding-top: 20px;
}
    input, select, textarea {
    color: var(--darkGrey);
    border: none;
    box-sizing: border-box;
    width: 90%;
    display: block;
    padding-bottom: 10px;
    padding: 10px;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin: 0;
    background-color: white;
    margin-left: 5%;
    margin-top: 20px;
  }

  textarea {
    height: 140px;
  }

  .submitButton {
    margin-left: 5%;
    background-color: white;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    border: 0;
    width: 200px;
    height: 56px;
    margin-top: 30px;
    margin-bottom: 30px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .submitButton:hover {
    background-color: var(--purple);
    color: white;
}

.submitButton:active{
    transform: scale(1.15); /* Vergrößert den Button noch ein wenig mehr beim Klicken */
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3); /* Reduziert den Schatten leicht */
}

/*PC*/

@media only screen and (min-width: 1001px){
    .heroSection{
        width: 100%;
    }

    .heroContent {
        padding: 50px 5%;
    }
}

/*mobile*/
/*  */
@media only screen and (max-width: 1000px) {
    .heroSection {
        width: 100%;
    }

    .heroContent {
        padding: 50px 5%;
    }

    #heading{
        float: left;
        margin-top: 25px;
        width: 100%;
    }
}
