.kontakt {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.kontakt_content {
    width: 100%;
}

.kontakt_content h1 {
    font-size: 35px;
    font-family: "Zalando Sans SemiExpanded";
}

.kontakt_form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: start;
}

.kontakt_form input,
.kontakt_form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(0,0,0,0.25);
  border-radius: 10px;
  background: white;
  box-sizing: border-box;
  
  outline: none;
  font-size: 16px;
  font-family: "Zalando Sans";
}

.kontakt_form input::placeholder, .kontakt_form textarea::placeholder {
    color: rgb(65, 65, 65);
}

.kontakt_form textarea {
  min-height: 150px;
  resize: vertical;
}

.kontakt_form .kontakt_full {
  grid-column: 1 / -1; /* spänner över båda kolumner */
}

.kontakt_form .kontakt_submit{
    grid-column: 1 / -1;
    justify-self: start;
    width: auto;

    font-family: "Zalando Sans";
    font-weight: 400;
    font-size: 16px;
    text-decoration: none;
    color: black;
    background: #C3CCA6;
    border-radius: 1000px;
    padding: 18px 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    cursor: pointer;
    outline: none;
    border: none;
}



/* Kontaktformulär bekräftelse */

.kontakt_form_sent {
    position: fixed;
    
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;

    background: rgba(0, 0, 0, 0.7);
    z-index: 10;
}

.kontakt_form_sent_message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    width: 500px;
    height: 300px;

    color: black;
    background: white;

    border-radius: 14px;
}

.kontakt_form_sent_message h1 {
    font-family: "Zalando Sans SemiExpanded";
    font-weight: 600;
    font-size: 18px;
    width: 80%
}

.kontakt_form_sent_message h2 {
    font-family: "Zalando Sans";
    font-weight: 400;
    font-size: 16px;
    width: 80%;
}




/* Mobilanpassning */
@media (max-width: 1000px) {

    .kontakt {
        min-height: auto;
        justify-content: flex-start;
        width: 90%;
        margin-top: 80px;
    }

    .kontakt_content {
        width: 100%;
    }

    .kontakt_content h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .kontakt_form {
        grid-template-columns: 1fr; /* en kolumn */
        gap: 12px;
    }

    .kontakt_form .kontakt_full {
        grid-column: auto;
    }

    .kontakt_form .kontakt_submit {
        grid-column: auto;
        width: 100%;
        justify-self: stretch;
        padding: 16px;
        font-size: 16px;
    }

    .kontakt_form input,
    .kontakt_form textarea {
        font-size: 16px; /* förhindrar zoom på iOS */
    }

    .kontakt_form textarea {
        min-height: 180px;
    }


    .kontakt_form_sent_message {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;

        width: 90%;
        height: auto;
        padding: 20px 0;

        color: black;
        background: white;

        border-radius: 14px;
}
}
