/* ===================== ALGEMENE STIJLEN ===================== */
body, html {
    font-family: Lato, sans-serif;
    line-height: 1.5;
    background: #002366; /* pagina achtergrond */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-top: 0;
    color: #fff;
}

section {
    padding: 60px 20px;
    scroll-margin-top: 70px;
    text-align: center;
}

h1, h2, h3 {
    font-weight: 700;
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ===================== CONTACTFORMULIER ===================== */
button, label {
    font-weight: 700;
}

button, input, textarea {
    width: 100%;
    padding: 12px;
    transition: .3s;
}

.contact-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    margin: 40px auto;
    max-width: 1000px;
    padding-bottom: 60px;
}

.contact-image img {
    max-width: 300px;
    height: auto;
    border-radius: 5px;
}

form#contact-form {
    flex: 1;
    max-width: 500px;
    width: 100%;
    background: #001f4d; /* formulier blauw */
    padding: 25px;
    border-radius: 10px;
    border: 2px solid gold;
    box-shadow: 0 4px 12px rgba(0,0,0,.5);
}

form#contact-form h1 {
    text-align: center;
    color: gold;
    margin-bottom: 40px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: gold;
}

input, textarea {
    margin-bottom: 30px;
    border-radius: 6px;
    border: 1px solid gold;
    background: #002366; /* achtergrond input hetzelfde als pagina */
    color: #fff;
}

input::placeholder, textarea::placeholder {
    color: #bbb;
}

input:hover, textarea:hover {
    background: #003399;
    box-shadow: 0 0 8px gold;
}

input:focus, textarea:focus {
    background: #003399;
    outline: 0;
    box-shadow: 0 0 10px gold;
}

button {
    border: none;
    border-radius: 6px;
    background: linear-gradient(135deg, gold, #c72);
    color: #000;
    cursor: pointer;
}

button:hover {
    background: linear-gradient(135deg, #c72, gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0,0,0,.3);
}




/* ===================== RECAPTCHA BADGE ===================== */
.grecaptcha-badge {
    position: fixed !important;
    left: 10px !important;
    bottom: 10px !important;
    right: auto !important;
    transform: scale(.7);
    transform-origin: bottom left;
    z-index: 9999;
    opacity: .6;
    transition: opacity .3s;
}

.grecaptcha-badge:hover {
    opacity: 1;
}

@media (max-width:768px) {
    .grecaptcha-badge {
        left: 10px !important;
        bottom: 15px !important;
        transform: scale(.6);
    }
}

/* ===================== RESPONSIVE ===================== */
@media(max-width:768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }
    .contact-image img {
        max-width: 120px;
        margin-bottom: 20px;
    }
    #contact {
        margin-top: -50px;
    }
}

@media(max-width:600px) {
    form#contact-form {
        padding: 20px;
    }
}

@media (max-width:768px) and (orientation:portrait) {
    #contact {
        padding: 10px 20px 100px;
        text-align: center;
    }
}
