
.Contact {
    display: flex;
    flex-direction: column;
    margin-top: 90px;
    
}

.ContactHeader {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ContactHeader h2 {
    font-weight: 600;
    font-size: 36px;
    color: white;
    margin-bottom: 0;
    text-transform: uppercase;
}

.ContactHeader p {
    font-weight: 400;
    font-size: 16px;
    color: white;
    
}

.ContactColumns {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 200px;
    padding: 80px;
    margin-left: 100px;
    margin-right: 100px;
}

.LeftColumn {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.LeftColumn h3 {
    font-weight: 500;
    font-size: 24px;
    color: white;
    margin-bottom: 0;
}

.LeftColumn p {
    font-weight: 400;
    font-size: 16px;
    color: white;
    margin-top: 0;

}

.Address {
    display: flex;
    
}

.Address img {
    display: flex;
    width: 30px;
    height: 27.59px;
    margin-right: 10px;
    margin-top: 30px;
}

.Address a {
    color: white;
    text-decoration: none;
}

.Email {
    display: flex;
    
}

.Email img {
    display: flex;
    width: 30px;
    height: 27.59px;
    margin-right: 10px;
    margin-top: 30px;
}

.Email a {
    color: white;
    text-decoration: none;
}

.Phone {
    display: flex;
    
    
}

.Phone img {
    display: flex;
    width: 30px;
    height: 27.59px;
    margin-right: 10px;
    margin-top: 30px;
}

.Phone a {
    color: white;
    text-decoration: none;
}

.RightColumn {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    
}

.ContactForm {
    display: flex;
    flex-direction: column;
}

.ContactForm label {
    font-weight: 500;
    font-size: 16px;
    color: white;
    margin-bottom: 20px;
}

.ContactForm input {
    margin-bottom: 50px;
}

input[id="name"] {
    width: 528.75px;  
    height: 50px; 
    padding: 10px; 
    font-size: 16px;
    font-weight: 400;
    color: black;
    border-radius: 10px;
    border: 1px solid #9F9F9F; 
}
input[id="email"] {
    width: 528.75px;  
    height: 50px; 
    padding: 10px; 
    font-size: 16px;
    font-weight: 400;
    color: black;
    border-radius: 10px;
    border: 1px solid #9F9F9F; 
}
input[id="subject"] {
    width: 528.75px;  
    height: 50px; 
    padding: 10px; 
    font-size: 16px;
    font-weight: 400;
    color: black;
    border-radius: 10px;
    border: 1px solid #9F9F9F; 
}
textarea[id="message"] {
    width: 527px;  
    height: 100px; 
    padding: 10px; 
    font-size: 16px;
    font-weight: 400;
    color: black;
    border-radius: 10px;
    border: 1px solid #9F9F9F;
    margin-bottom: 30px; 
}
.submit-button {
    width: 237px;  
    height: 55px; 
    padding: 10px; 
    font-size: 16px;
    font-weight: 400;
    color: black;
    background-color: white;
    border-radius: 8px;
    border: 1px solid #B88E2F; 
}

iframe {
    display: block;
    border: none;
    margin-bottom: 0;
}

/* Hover-efekt */
.submit-button:hover {
    background-color: yellow; 
    transform: translateY(-2px); 
}

/* Fookuseefekt */
.submit-button:focus {
    outline: none; 
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.6); 
}

@media screen and (max-width: 430px) {
    .Contact {
        margin-top: 30px;
    }
    .ContactColumns {
        display: flex;
        flex-direction: column;
        margin-left: -50px;
        width: 60%;
        gap: 30px;
        margin-top: -40px;
    }
    input[id="name"] {
        width: 250px;
    }
    input[id="email"] {
        width: 250px;
    }
    input[id="subject"] {
        width: 250px;
    }
    textarea[id="message"] {
        width: 250px;
    }
    iframe {
        width: 320px;
    }
}

@media screen and (max-height: 430px) and (orientation: landscape) {
    .ContactColumns {
        display: flex;
        flex-direction: column;
    }

    .RightColumn {
        display: flex;
        margin-left: -120px;
    }

    .LeftColumn {
        display: flex;
        margin-left: -110px;
        margin-bottom: -150px;
    }

    iframe {
        width: 400px;
    }
}

@media screen and (min-width: 810px) and (max-width: 840px) {
    .Contact {
        display: flex;
        margin-left: -120px;
    }

    .ContactHeader {
        display: flex;
        flex-direction: column;
        margin-left: 130px;
        
    }

    .ContactColumns {
        gap: 150px;
    }

    .LeftColumn {
        margin-left: 30px;
    }

    iframe {
        width: 300px;
        height: 250px;
    }
    
    .RightColumn {
        margin-left: -85px;
    }

    .LeftColumn p {
        font-weight: 400;
        font-size: 14px;
        
        
    }

    input[id="name"] {
        width: 250px;
    }
    input[id="email"] {
        width: 250px;
    }
    input[id="subject"] {
        width: 250px;
    }
    textarea[id="message"] {
        width: 300px;
    }

    
}

@media screen and (min-width: 834px) and (max-width: 1024px) and (orientation: portrait) {
    .ContactColumns {
        display: flex;
        
    }

    .RightColumn {
        display: flex;
        margin-left: -120px;
    }

    .LeftColumn {
        margin-left: -90px;
    }

    input[id="name"] {
        width: 350px;
    }
    input[id="email"] {
        width: 350px;
    }
    input[id="subject"] {
        width: 350px;
    }
    textarea[id="message"] {
        width: 450px;
    }

}

@media only screen and (min-device-width: 768px) and (max-device-width: 768px) and (orientation: portrait) {
    .ContactColumns {
        display: flex;
        flex-direction: column;
    }

    .RightColumn {
        display: flex;
        margin-left: -120px;
    }

    .LeftColumn {
        display: flex;
        margin-left: -110px;
        margin-bottom: -150px;
    }

    iframe {
        width: 400px;
    }
    
}