/* Algemene instellingen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #f8fafc;
    color: #0f172a;
}

/* HEADER / NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .logo img {
    max-height: 50px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: #0f172a;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #2c7da0;
}

/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.hamburger span {
    height: 3px;
    width: 25px;
    background: #0f172a;
    margin: 4px 0;
    border-radius: 2px;
}

/* CONTACT FORM SECTION */
.contact-form {
    max-width: 700px;
    margin: 80px auto;
    padding: 40px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form h2 {
    text-align: center;
    font-size: 32px;
    color: #2c7da0;
    margin-bottom: 30px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #d1dfe7;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    transition: border 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #2c7da0;
}

.contact-form button.button {
    display: block;
    width: 100%;
    padding: 16px 0;
    background: #0f172a;
    color: white;
    border: none;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button.button:hover {
    background: #1e293b;
    transform: translateY(-3px);
}

/* Google reCAPTCHA */
.g-recaptcha {
    margin: 20px 0;
}

/* FOOTER */
footer {
    background: #0f172a;
    color: white;
    padding: 60px 8%;
    font-size: 15px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-logo img {
    max-width: 150px;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-section h2,
.footer-section h3 {
    color: #2c7da0;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-section p,
.footer-section ul li {
    color: #ffffffcc;
    margin-bottom: 8px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li a {
    color: #2c7da0;
    text-decoration: none;
    font-weight: 500;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #ffffff80;
}

/* RESPONSIVE */
@media(max-width:1000px){
    .contact-form {
        margin: 60px 6%;
        padding: 35px 20px;
    }
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
}

@media(max-width:768px){
    .nav-links {
        display: none;
        flex-direction: column;
        background: white;
        position: absolute;
        top: 70px; /* onder de navbar */
        right: 0;
        width: 200px;
        padding: 20px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        border-radius: 0 0 10px 10px;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
        cursor: pointer;
        flex-direction: column;
    }

    .hamburger span {
        height: 3px;
        width: 25px;
        background: #0f172a;
        margin: 4px 0;
        border-radius: 2px;
    }
}