/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem; /* Base font size */
    color: #343a40;
    background-color: #f8f9fa;
    line-height: 1.6;
}

.container {
    max-width: 960px; /* Set a maximum width for the container */
    padding: 60px;
}

h1, h2 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    color: #007bff;
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem; /* Larger main heading */
}

h2 {
    font-size: 2rem;
}

.lead {
    font-size: 1.2rem;
    text-align: center;
    color: #555;
    margin-bottom: 30px; /* More space below lead text */
}


/* Hero Section */
.hero-image {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px; /* Increased hero height */
    overflow: hidden; /* Hide overflowing image */
}

.hero-image::before { /* Dark overlay for better text contrast */
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); /* Semi-transparent black */
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 1; /* Bring text above overlay */
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.hero-cta {
    display: inline-block;
    padding: 15px 30px;
    background-color: #007bff; /* Blue button */
    border-color: #007bff;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.hero-cta:hover {
    background-color: #0056b3; /* Darker blue on hover */
}


/* Sections (Hoe werkt het?, Onze partners) */
.section {
    padding: 40px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px; /* Space between sections */
}

#partner-links {
    background-color: #f8f9fa; /* Light gray for partner section */
}

.section h2 {
    margin-bottom: 30px;
}

ul {
    list-style-type: none;
    padding-left: 0; /* Remove default padding */
}

li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 35px; /* Adjust as needed */
}

li::before {
    content: "\f00c";
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
    top: 5px;
    color: #28a745;
}

/* Partner Logos */
.partner-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.partner-logos img {
    max-width: 180px; /* Slightly larger logos */
    margin: 20px;
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

.partner-logos img:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Call to Action Button */
.cta-button {
    font-size: 1.4rem;
    padding: 15px 30px;
    background-color: #28a745;
    border-color: #28a745;
    color: white;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.3s;
}

.cta-button:hover {
    background-color: #218838;
    border-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
}

.small-text {
    font-size: 0.9rem;
    text-align: center; /* Center the disclaimer */
    margin-top: 20px; /* Add some space above the disclaimer */
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 30px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    .partner-logos img {
        max-width: 150px;
        margin: 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }
}

footer {
    background-color: #333; /* Dark background color */
    color: white; /* White text color */
    padding: 20px 0; /* Add some padding */
    text-align: center; /* Center the text */
    font-size: 0.9rem; /* Smaller font size */
}

footer p {
    margin: 0; /* Remove default paragraph margin */
}
