/* Algemene reset en typografie */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

/* Navigatiebalk */
.navbar {
    background-color: #4CAF50;
    padding: 10px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-links {
    list-style-type: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

    .nav-links a {
        color: #fff;
        text-decoration: none;
        font-size: 1.1em;
        font-weight: bold;
        transition: color 0.3s;
    }

        .nav-links a:hover {
            color: #ffeb3b;
        }

/* Header */
header {
    background: linear-gradient(to right, #4CAF50, #81C784), url('assets/header-bg.jpg') center/cover no-repeat;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

    header h1 {
        font-size: 3em;
        margin-bottom: 20px;
    }

    header p {
        font-size: 1.3em;
        margin-bottom: 30px;
    }

.btn-primary {
    background-color: #fff;
    color: #4CAF50;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

    .btn-primary:hover {
        background-color: #f4f4f4;
        transform: scale(1.05);
    }

/* Secties */
section {
    padding: 60px 20px;
    text-align: center;
}

#about, #community {
    background-color: #f4f4f4;
    margin: 20px 0;
}

.section-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

    .section-content img {
        max-width: 300px;
        border-radius: 10px;
    }

h2 {
    color: #4CAF50;
    font-size: 2em;
    margin-bottom: 20px;
}

/* Lijst met iconen */
.community-benefits {
    list-style: none;
    padding: 0;
}

    .community-benefits li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
    }

    .community-benefits img {
        width: 24px;
        height: 24px;
    }

/* Call to Action */
#join {
    background-color: #e8f5e9;
    padding: 40px 20px;
    text-align: center;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 0.9em;
}

/* Form Styles */
form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

    form label {
        display: block;
        margin: 10px 0 5px;
        font-weight: bold;
    }

    form input, form textarea {
        width: 100%;
        padding: 10px;
        margin-bottom: 20px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 1em;
    }

    form textarea {
        resize: none;
        height: 150px;
    }

    form .btn-primary {
        display: inline-block;
        background-color: #4CAF50;
        color: #fff;
        text-align: center;
        font-weight: bold;
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

        form .btn-primary:hover {
            background-color: #45a049;
        }

/* FAQ Styles */
#faq {
    background: #f4f4f4;
    padding: 20px;
    margin: 40px auto;
    max-width: 800px;
    border-radius: 8px;
}

.faq-item {
    margin-bottom: 20px;
}

    .faq-item h3 {
        font-size: 1.2em;
        color: #4CAF50;
    }

    .faq-item p {
        margin-top: 5px;
        color: #555;
    }

/* Why Sign Up Section Styles */
#why-sign-up {
    text-align: center;
    padding: 40px 20px;
    background: #f9f9f9;
    border-radius: 8px;
    margin: 20px auto;
    max-width: 800px;
}

    #why-sign-up h2 {
        font-size: 2em;
        color: #4CAF50;
        margin-bottom: 10px;
    }

    #why-sign-up p {
        font-size: 1.2em;
        color: #555;
        margin-bottom: 20px;
    }

.benefits-list {
    list-style-type: none;
    padding: 0;
}

    .benefits-list li {
        margin: 10px 0;
        font-size: 1.1em;
        color: #333;
        position: relative;
    }

        .benefits-list li:before {
            content: '✔';
            color: #4CAF50;
            margin-right: 10px;
            font-size: 1.2em;
            font-weight: bold;
        }

.images-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.benefit-image {
    width: 45%; /* Adjust as needed */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

    .benefit-image:hover {
        transform: scale(1.05);
    }


.community-image {
    text-align: center;
    margin-top: 20px;
}

.community-image-img {
    max-width: 50%;
    height: auto;
    border-radius: 10px; /* Optional: add some rounded corners */
}

/* Style for the image under About section */
.about-image {
    text-align: center; /* Centers the image */
    margin-top: 20px; /* Adds space above the image */
}

.about-img {
    max-width: 80%; /* Controls the image size, adjust as needed */
    height: auto; /* Maintains aspect ratio */
    border-radius: 8px; /* Optional: rounded corners for the image */
}
