@charset "utf-8";
main {
    flex-direction: column;
}

/*großes Hintergrundbild*/
.background-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: fixed;
    top: 0;
    right: 0;
    z-index: -17;
    filter: brightness(0.7); 
}

/* Formatierung Überschrift */
h2 {
    width: 80%;
    max-width: 31.25rem;
    margin: 0 auto var(--fs-600) auto;
    text-align: center;
    font-weight: 300;
    line-height: 1.5;
    text-transform: uppercase;
    font-size: var(--fs-600);
    color: var(--background-header);
    letter-spacing: 1px;
}



/* ab Bildschirmen über 430 Pixel Breite Doppelstriche */
@media only screen and (min-width: 430px) {
    h2 {
        /* Striche vor und nach Überschrift */
        display: grid;
        grid-template-columns: 1fr max-content 1fr;
        grid-template-rows: 27px 0;
        grid-gap: 20px;
        align-items: center;
    }    
    /*Striche vor und nach Überschrift*/
    h2:after, 
    h2:before {
        content: "";
        display: block;
        border-bottom: 1px solid var(--light-white);
        border-top: 1px solid var(--light-white);
        height: 5px;
    }
}


/* Design Mobile */
.contact {
    display: flex;
    flex-direction: column;
}

/* bei größeren Bildschirmen nebeneinander */
@media only screen and (min-width: 1000px) {
    .contact {
        flex-direction: row;
        gap: 5rem;
        width: 90%;
        margin: 0 auto;
        max-width: 70rem;
    }
}

/* KONTAKTDATEN */
.contact-details {
    margin: 0 auto 2rem auto;
    width: 100%;
    background-color: var(--light-white);
    padding: 2rem;
    border-top: 2px solid var(--light-grey);
    border-bottom: 2px solid var(--light-grey);
}

.intro-text {
    font-size: var(--fs-450);
    padding-bottom: 2rem;
}

.contact-details h3 {
    font-size: var(--fs-500);
    margin-bottom: 1rem;
}

.contact-info {
    background-color: var(--light-grey);
    display: flex;
    flex-direction: column;
    padding: 1rem;
    border-radius: 1rem;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info > .contact-info-group {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

/* bei größeren bildschirmen geht die border um ganze box */
@media only screen and (min-width: 1000px) {
    .contact-details {
        border: 2px solid var(--light-grey);
    }
}

.contact-details{
    text-align: center;
}

.contact-data h4 {
    font-size: var(--fs-500);
    color: black;
    font-weight: 600;
}

.contact-title-group > *:nth-child(2) {
    padding-top: 0.5rem;
}

.contact-data > h4 {
    margin-bottom: 1rem;
    font-weight: var(--fs-450);
    font-weight: 500;
}

.contact-title-group::after {
    content: "";
    background-color: black;
    height: 1px; /* Höhe der Unterstreichung */
    width: 50%; /* Breite der Unterstreichung */
    display: block;
    margin: 4px auto 1rem; /* Platzierung und Abstand von oben */
    max-width: 5rem;
}

.contact-title-group > h5 {
    font-size: var(--fs-400);
}


.contact-info-group > h5 {
    font-size: var(--fs-450);
    font-weight: 800;
    padding-bottom: 0.5rem;
    width: 6rem;
    text-align: left;
}

.full-width {
    flex-grow: 1;
}

.contact-info-group > i {
    order: -1;
    font-size: var(--fs-450);
    padding-bottom: 1rem;
}

.contact-info-group > p {
    font-size: var(--fs-450);
}
