.container_section {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 5%;
}

.optik_h3 {
    font-size: 2.5vw;
    letter-spacing: 0.07em;
    margin-top: 5%;
}

.container_wochentage {
    display: flex;
    flex-direction: row;
    gap: 13%;
}

#geschlossen {
    margin-top: 2%;
}

/* Kontaktformular */

.container_kontaktformular {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}

.formularfeld {
    display: flex;
    flex-direction: column;
    width: 45%;
    margin-bottom: 2%;
}   

#formularfeld_full  {
    width: 100%;
}

.container_reihe {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10%;
    width: 100%;
}

#reihe_button {
    margin-top: 4%;
    margin-bottom: 4%;
}

label {
    font-family: 'centurygothic';
    color: var(--beige);
    font-style: normal;
    font-size: 1.3vw;
    margin-bottom: 2%;
}

input, textarea {
    font-family: 'centurygothic';
    border: 0.1vh solid var(--beige);
    font-size: 1.3vw;
    color: var(--beige);
    background-color: transparent;
    padding: 1.5%;
    &:focus {
        outline: none;
        border-color: var(--gruen);
    }
}

.button {
    background-color: var(--beige);
    font-family: 'centurygothic';
    color: var(--dunkelbraun);
    border-radius: 8px;
    border: none;
    padding: 1% 2%;
    font-size: 1.5vw;
    cursor: pointer;
    &:hover {
        background-color: var(--gruen);
        color: var(--beige);
        text-decoration: underline;
    }
}

.bild_gluehbirnen {
    width: 100%;
    height: auto;
    overflow: clip;
    position: relative;
}