
.space {
    padding: 4vh 0;
}

.contact {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../assets/contact.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7);
    z-index: -1;
}

.contakten {
    background: white;
    border-radius: 30px;
    width: 520px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    text-align: center; 
    padding: 20px;
    margin-left: 8vw;
}


h1 {
    font-family: "Mallory Compact", sans-serif;
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    padding-top: 1em;
}

.tekst {
    font-family: "SF Pro Display", sans-serif;
    font-weight: 400;
    font-size: 20px;
    padding: 2rem;
    line-height: 150%;
    margin-bottom: 0.5rem;
}

.tekst p {
    margin-bottom: 1rem;
}

.cta {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #CC2A33;
    color: white;
    padding: 1rem;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    border-radius: 30px;
    width: 300px;
    margin-bottom: 1em;
    transition: transform 0.5s ease, background-color 0.5s ease, color 0.5s ease;
}

.cta:hover {
    background: #F4F0E2;
    color: black;
    transform: scale(1.05);
}

.a {
    text-decoration: none;
    color: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}



.dane {
    font-family: "SF Pro Display", sans-serif;
    font-weight: 400;
    font-size: 24px;
    margin-top: 1em;
    padding: 0.5rem 1rem;
    text-align: center;
}

.dane p {
    margin-bottom: 1rem;
}

footer {
    width: 100%;
    height: 40vh;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    text-align: center;
    display: flex;
}

.newsletter {
    display: flex;
    gap: 2rem;
    align-items: baseline;
    justify-content: center;
    margin-top: 2rem;
}

.email {
    background: #F9F9F9;
    font-family: "SF Pro Display", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #C2C2C2;
    padding: 1rem;
    border-radius: 15px;
    border: 2px solid #C2C2C2;
    width: 600px;
    text-align: left;
}

.site-map {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 2rem;

    & a {
        display: block;
        color: rgb(0, 0, 0);
        text-decoration: none;
        font-family: "SF Pro Display", sans serif;
        font-size: 20px;
        font-weight: 600;
        padding: 8px 12px;
        transition: 0.5s;
        opacity: 0.7;

        &:hover {
            color: #CC2A33;
            font-family: "SF Pro Display", sans serif;
            transition: 0.5s;
            opacity: 1;
            transform: scale(1.05);
        }
    }
}


.disclaimer {
    font-family: "SF Pro Display", sans-serif;
    font-weight: 400;
    font-size: 16px;
    padding: 2rem;
    line-height: 150%;
    margin-bottom: 0.5rem;
    max-width: 850px;
    text-align: justify;
}

