/* Fonts */
@font-face {
    font-family: 'Elza';
    src: url(font/Elza.otf);
}
@font-face {
    font-family: 'Elza-bold';
    src: url(font/Elza\ bold.otf);
} 
@font-face {
    font-family: 'miguel';
    src: url(font/Miguel\ Regular.ttf);
} 

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Algemene body-stijl */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f8ff; /* zacht lichtblauw */
    margin: 0;
    padding: 0;
}

/* Header */
.header{
    min-height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url(images/meriem\ 4.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}

/* Navigatie */
nav {
    display: flex;
    padding: 2% 5%;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
}

nav img {
    width: 190px;
}

.nav-links {
    flex: 1;
    text-align: right;
}

.nav-links a.active {
    color: #9abebc; 
    font-weight: bold;
}

.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a {
    color: #333; 
    text-decoration: none;
    font-size: 13px;
    font-family: Elza;
}

.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #9abebc;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after {
    width: 100%;
}

/* Header tekst */
.header-content {
    position: absolute;
    top: 65%;                 
    left: 50%;                
    transform: translate(-50%, -50%);
    color: white;             
    font-size: 50px;
    font-family: 'miguel'; 
    text-align: center;       
}

/* Contactformulier eenvoudig, zonder kader */
.contact-section{
    background-color:#f5f5f5;
}
.contact-form {
    padding: 80px 0; /* ruimte boven en onder */
    max-width: 500px;
    margin: 0 auto; /* horizontaal centreren */
    background-color: transparent; /* geen achtergrond */
    box-shadow: none; /* geen schaduw */
    border-radius: 30px; /* geen afgeronde hoeken */
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #9abebc; /* subtiel randje */
    border-radius: 20px;
    margin-bottom: 15px;
    font-size: 1rem;
    font-family: elza;
    font-size: 13px;
}
.contact-form input:hover {
    border: 1px solid #31665e; /* donker groene rand */
}
.contact-form textarea:hover {
    border: 1px solid #31665e ;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none; /* verwijdert het standaard donkerblauwe randje */
}
.contact-form textarea {
    height: 110px;
    resize: vertical;
    font-family: elza;
    font-size: 13px;
}
.contact-form button {
    width: 100%;
    background-color: #9abebc;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #31665e;
}

/* ============================= */
/* CONTACT 2 KOLOMMEN */
/* ============================= */

.contact-section {
    background-color: #f5f5f5;
    padding: 80px 50px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 120px;
    align-items: center;
}

/* LINKER TEKST */
.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-family: miguel;
    font-size: 50px;
    margin-bottom: 20px;
    color: #9abebc;
}

.contact-intro {
    font-family: Elza;
    font-size: 14px;
    line-height: 1.6;
}

/* FORMULIER RECHTS */
.contact-form {
    flex: 1;
    max-width: 500px;
    padding: 0; /* overschrijft je oude padding */
}

/* Footer */
.footer {
    background-color: #fff;
    color: #333;
    padding: 40px 0 20px;
    font-family: Elza;
}

.footer-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    align-items: flex-start;
}

.footer-column {
    min-width: 200px;
}

.footer-column img {
    width: 150px;
}

.middle-column {
    margin-left: 350px; 
    margin-right: 50px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 15px;
}

.footer-column h4 {
    margin-bottom: 10px;
    font-size: 18px;
    font-family: miguel;
    color: #9abebc;
}

.footer-column p {
    margin: 5px 0;
    font-size: 14px;
    font-family: poppins;
}

.footer-column a {
    color: #333;
    text-decoration: none;
}

.footer-column a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 12px;
    color: #9abebc;
    font-family: poppins;
}


/* ============================= */
/* MOBILE STYLING (<768px) */
/* ============================= */
@media (max-width: 768px) {

    /* NAVIGATION */
    nav {
        padding: 10px 15px;
    }

    nav img {
        width: 140px;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 2001;
    }

    .hamburger span {
        width: 28px;
        height: 3px;
        background: #333;
        border-radius: 3px;
        transition: 0.3s ease;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        z-index: 2000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links ul {
        display: flex;
        flex-direction: column;
        gap: 30px;
        text-align: center;
        width: 100%;
    }

    .nav-links ul li {
        display: block;
        padding: 20px 0;
    }

    .nav-links ul li a {
        font-size: 18px;
        color: #333;
        text-decoration: none !important;
    }

    .nav-links ul li a:hover {
        color: #9abebc;
        text-decoration: none !important;
    }

    /* HEADER TEKST */
    .header {
        min-height: 35vh;
    }

    .header-content {
        font-size: 28px;
        top: 60%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        padding: 0 15px;
    }

    /* CONTACT 2 KOLOMMEN → 1 KOLOM */
    .contact-container {
        flex-direction: column;
        gap: 55px;
        padding: 0 15px;
        align-items: center;
        text-align: center;
    }

    .contact-info, .contact-form {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .contact-info h2 {
        font-size: 32px;
    }

    .contact-intro {
        font-size: 13px;
        line-height: 1.5;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form button {
        font-size: 13px;
    }

    .contact-form textarea {
        height: 100px;
    }

    /* FOOTER */
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 15px;
        gap: 30px;
    }

    .footer-column {
        width: 100%;
        max-width: 400px;
        margin: 0;
    }

    .middle-column {
        margin: 0;
    }

    .footer-column img {
        margin: 0 auto 10px;
        display: block;
    }

    .footer-bottom {
        margin-top: 15px;
    }
}
