
.PageTitle{
    display: flex;
    flex-direction: column;
    justify-self: center;
    align-items: center;
    text-align: center;
    margin-top: 120px;
    margin-inline: 5%;
    max-width: 1000px;
}
.PageTitle h1{
     font-family: "Arial Black", sans-serif;
     font-size: 50px;
     color: black;
}
.PageTitle p{
    font-family: "Arial", sans-serif;
    font-size: 25px;
}

.MainContact{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 100px;
}

.ContactBlock{
    margin: 50px 5%;
    display: flex;
    width: 75%;
    max-width: 600px;
    padding: 30px;
    border-radius: 25px;
    box-shadow:inset #00000079 0px 0px 10px;
    flex-direction: column;
    background-color: var(--background4);
    justify-content: center;
}
.form-message {
    margin-top: 15px;
    font-size: 18px;
    font-family: "Arial", sans-serif;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-message.success {
    color: green;
    opacity: 1;
}

.form-message.error {
    color: red;
    opacity: 1;
}

.ContactBlock label {
    font-size: 25px;
    font-family: "Arial", sans-serif;
    margin-bottom: 5px;
}
.NameBlock {
    display: flex;
    gap: 20px;
    width: 100%;
}
.Voornaam, .Achternaam{
    display: flex;
    flex: 1;
    flex-direction: column;
}
.ContactBlock input[type="text"], .ContactBlock input[type="email"], .ContactBlock input[type="tel"] {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    background-color: var(--background3);
    font-size: 18px;
}

.ContactBlock textarea {
    padding: 10px;
    height: 200px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    resize: none;
    background-color: var(--background3);
    font-size: 18px;
}
.ContactBlock button[type="submit"] {
    background: var(--accent);
    color: var(--text-light);
    padding: 15px 70px;
    font-family: 'Arial Black', sans-serif;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.2s;
    border: none;
}
.ContactBlock button[type="submit"]:hover {
    scale: 102%;
    transition: 0.2s;
    box-shadow: #00000079 0px 0px 10px;
    color: var(--text-dark);
}
.ExtraInfo{
    margin: 50px 5%;
    display: flex;
    width: 75%;
    max-width: 600px;
    padding: 30px;
    border-radius: 15px;
    flex-direction: column;
    background-color: var(--background4);
    box-shadow: inset #00000079 0px 0px 10px;
}
.ExtraInfo h2 {
    font-family: "Arial Black", sans-serif;
    font-size: 25px;
    text-align: center;
}

.openingstijden{
    list-style: none;
    margin: 0;
    padding: 0;
}

.openingstijden li {
    font-family: "Arial", sans-serif;
    display: flex;
    justify-content: space-evenly;
    padding: 6px 0;
    font-size: 18px;
    border-bottom: 1px solid var(--background3);
    margin-bottom: 10px;
}
.openingstijden li span:first-child {
    font-weight: 600;
}

.openingstijden li:last-child {
    border-bottom: none;
}

.ContactButtons{
    margin: 25px 20px;
    display: flex;
    justify-content: space-evenly;
    gap: 50px;
}
.ContactButtons a{
    display: flex;
    color: var(--text-light);
    text-decoration: none;
    border-radius: 20px;
    padding: 15px;
    flex: 1;
    font-size: 15px;
    font-family: "Arial Black", sans-serif;
    justify-content: center;
    text-shadow:#000000c2 0px 0px 10px;

}
.ContactButtons a:hover {
    scale: 102%;
    transition: 0.2s;
    box-shadow: #00000079 0px 0px 10px;
}
.callbtn{
    Background: rgb(255, 62, 62);
}
.whatsappbtn{
    background: rgb(51, 146, 51);
}
.map iframe {
    border-radius: 10px;
}
@media (max-width: 963px) {
    .ContactButtons{
        justify-content: center;
        flex-direction: column;
        gap: 25px;
    }
    .PageTitle h1{
        margin: 0;
        font-size: 45px;
    }
}
@media (max-width: 750px) {
        .NameBlock {
        flex-direction: column;
        gap: 0;
    }
}

