:root {
    --orange: #ff751f;
    --red: #ff3131;
    --white: #ffffff;
    --light-grey: #f4f4f4;
    --dark-purple: #1c1b28;
    --font-main: 'Lexend Giga', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--dark-purple);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 20px 0;
    background: transparent;
    z-index: 1000;
    color: white;
    transition: all 100ms ease-in-out;
}

header.scrolled{
    background: white;
    color: var(--dark-purple);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
header.scrolled *{
    color: var(--dark-purple) !important;
}



header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-divider{
    width: 100%;
    height: 100px;
}

.logo {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark-purple);
}

.logo img {

    max-width: 300px;
    width: 100%;
    height: 100px;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 50px;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-size: 1.3rem;
    transition: all 50ms ease-in-out;
}
    .nav-links a:hover{
        opacity: 0.7;
    }
header.scrolled .nav-links a{
    color: var(--dark-purple);
}

.btn-cta {
    background-color: var(--red);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    padding-top: 230px;
    background-color: var(--light-grey);
    overflow: hidden;
    background-image: url("../assets/hero-bg.png");
    color: white;
}
    .hero-text-orange{
        color: var(--orange)
    }
    .hero-text-red{
        color: var(--red)
    }

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

h1 {
    font-size: 4em;
    margin-bottom: 20px;
    line-height: 1.2;
}
h3{
    font-size: 2.5em;
    line-height: 1.2;
}

.btn-secondary {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background-color: var(--orange);
    color: var(--white);
    text-decoration: none;
    border-radius: 999px;
    border: none;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    /* De diagonale clip-path van de PDF nabootsen */
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.w-100{
    width: 100%;
}
/* About Section */
.about-section2 {
    padding: 80px 0;
}


.about-section2 h2 {
    color: var(--orange);
    margin-bottom: 30px;
}

.about-text p {
    margin-bottom: 20px;
    max-width: 800px;
}
/* About Section */
.about {
    padding: 80px 0;
}

.mt-30{
    margin-top: 30px;
}

.about h2 {
    color: var(--orange);
    margin-bottom: 30px;
}

.about-text p {
    margin-bottom: 20px;
    max-width: 800px;
}
.about-text ul {
    margin-left: 15px;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background-color: var(--light-grey);
    color: var(--dark-purple);
    padding: 60px 0;
}


.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-contact h4{
    margin-bottom: 15px;
}
.footer-contact a{
    text-decoration: none;
    color: var(--dark-purple);
}
    .footer-contact a:hover, .footer-nav ul a:hover{
        text-decoration: underline;
    }

.footer-nav ul {
    list-style: none;
    margin-top: 15px;
}

.footer-info{
    max-width: 200px;
    width: 100%;
}
    .footer-info img{
        width: 100%;
        object-fit: contain;
    }

.footer-nav a {
    color: var(--dark-purple);
    text-decoration: none;
    /* font-size: 0.8rem; */
}

div.bottom{
    width: 100%;
    padding: 8px 16px;
    background-color: var(--orange);
    color: var(--white)
}
    div.bottom_inner{
        max-width: 1400px;
        width: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 32px;
        font-size: .8em;
    }
    div.bottom_left{
        width: 100%;
    }
    div.bottom_right{
        width: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 16px;
    }
        div.bottom_right a{
            text-decoration: none;
            color: var(--white);
            font-size: .8em;
        }
            div.bottom_right a:hover{
                text-decoration: underline;
            }
/* Mobile Responsive */
.burger {
    display: none;
    cursor: pointer;
}
    .burger i{
        font-size: 1.8em;
    }

/* Contact Formulier Styling */
.contact-form-section {
    padding: 80px 0;
    background-color: var(--white);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--light-grey);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.form-wrapper h2 {
    color: var(--dark-purple);
    margin-bottom: 10px;
}

.form-wrapper p {
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.input-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-purple);
}

.input-group input, 
.input-group select, 
.input-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-main);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}

.input-group input:focus, 
.input-group select:focus, 
.input-group textarea:focus {
    border-color: var(--orange);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: var(--red);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-family: var(--font-main);
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background-color: #e02a2a; /* Iets donkerder rood */
}

/* Responsive aanpassing */
@media (max-width: 600px) {
    .form-wrapper {
        padding: 25px;
    }
    h1{
        font-size: 3em;
    }
}

section.about{
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container-img{
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
}
    .container-shape-img{
        width: 100%;
        height: 500px;
        overflow: hidden;
        clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
        border-radius: 15px;
    }
        .container-shape-img img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    .contact_container{
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.dienstverlening_container{
    padding: 0 32px;
}
section.dienstverlening{
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    margin-top: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--light-grey);
    padding: 40px 40px;
    border-radius: 15px;
}
section.donaties{
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    margin-top: 180px;
    text-align: left;
    padding: 40px 40px;
    border-radius:15px; 
}
    section.donaties p{
        width: 100%;
    }


div.donatie_item_container{
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 80px 16px;
}
    div.donatie_item_group h2{
        font-size: 1.5em;
        font-weight: bold;
 
    }
    div.donatie_items_holder{
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 16px;
    }
        div.donatie_item{
            max-width: 350px;
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 8px;
            border-radius: 15px;
            background-color: var(--light-grey);
            padding: 16px;
        }
        div.donatie_item_title{
            width: 100%;
            text-align: right;
            font-weight: bold;
            font-size: 1.3em;
        }
        div.donatie_item_img{
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 8px;
        }   
        div.donatie_item_img img{
                width: 100%;
                height: 250px;
                object-fit: cover;
                border-radius: 8px;
            }











    .container-noshape-img{
        min-width: 300px;
        max-width: 500px;
        width: 100%;
        height: 100%;
        align-self: stretch;
    }
        .container-noshape-img img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    .container h2{
        margin-bottom: 32px;
    }

    
.werkenbij_container{
    padding: 0 32px;
}
section.werkenbij{
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    margin-top: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
}
    .werkenbij_left{
        max-width: 550px;
        width: 100%;
    }
    .werkenbij_left h1 {
        width: max-content;
    }
    .werkenbij_left h1 div{
        padding: 10px 15px;
        margin: 25px 0;
        background: var(--orange);
        color: var(--white);
        border-radius: 999px;
    }
.container-menu-divider{
    width: 100%;
    padding-top: 150px;
}
.container-contact-divider{
    width: 100%;
    padding-top: 100px;
}

#resMenu{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 9999;
}
    .res_menu_icon{
        position: absolute;
        top: 16px;
        right: 16px;
    }
        .res_menu_icon i{
            font-size: 1.3em;
            color: var(--dark-purple);
        }
    div.res_menu_inner{
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 32px; 
    }

    .nav-links-res {
        display: flex;
        list-style: none;
        align-items: center;
        flex-direction: column;
        gap: 16px;
    }

    .nav-links-res a {
        text-decoration: none;
        color: var(--dark-purple);
        font-size: 1.3rem;
        transition: color 0.3s;
    }
    .res_menu_inner img{
        height: 100px;
        object-fit: cover;
    }

@media (max-width: 1500px) {
    div.donatie_items_holder{
        flex-wrap: wrap;
    }
}
@media (max-width: 807px) {
    section.about{
        flex-direction: column;
        gap: 32px;
    }
    .container-img{
        padding: 0 15px;
    }
    .contact_container{
        margin-top: 15px;
        flex-direction: column;
        gap: 8px;
    }
        .contact_container .btn-secondary{
            margin-top: 0;
            width: 100%;
        }
        .about{
            padding-bottom: 0;
        }
        .contact-form-section .container{
            padding: 0;
        }
    .werkenbij{
        flex-direction: column;
    }
    .werkenbij_left{
        max-width: unset;
        width: 100%;
        margin: 0 auto;
        text-align: center;
        display: flex;
        justify-content: center;
        margin-bottom: 40px;
    }
    .werkenbij_container{
        padding: 0 16px;
    }
}
@media (max-width: 992px) {
    .dienstverlening_container{
        padding: 0 16px;
    }
    section.dienstverlening{
        flex-direction: column;
        padding: 40px 20px;
    }
    .container-noshape-img{
        min-width: unset;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image img {
        clip-path: none;
    }

    .nav-links {
        display: none; /* jQuery zal dit afhandelen voor mobiel menu */
    }

    .burger {
        display: block;
    }

    .logo-img{
        height: 75px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .werkenbij_left h1{
        font-size: 3em;
    }
}

@media (max-width: 510px) {
    
    .werkenbij_left h1{
        font-size: 2em;
    }
}