/* Reset basisstijlen om consistentie tussen browsers te waarborgen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Globale instellingen voor het hele document */
body {
    font-family: 'Inter', 'Arial', sans-serif;
    background-color: #ebf1ff;
    color: #424242;
    line-height: 1.6;
    padding-top: 45px;
    font-size: 0.90em;
    text-align: left;
}

/* Koppen */
h3 {
    color: #1565C0;
        text-align: left;
}

h1 {
        color: #1565C0;
    font-size: 2.5em;
    margin: 0;
    text-align: center;
}

h3 {
    margin-bottom: 15px;
    color: #1565C0;
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
}

a:visited {
    color: inherit;
}

/* Flex-container voor de layout */
.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Sectiekaarten */
.section {
    padding: 30px;
    border-radius: 10px;
    min-height: 350px;
    background: #fdfdfd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    transition: box-shadow 0.2s ease;
}
.section li{
    padding-left: 30px;
      list-style-type: none;

}

.section:hover {
    transform: translateY(-3px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.section h3, .section p {
    padding: 0 10px;
    max-height: 200px;
    overflow: hidden;
}

.section button::after {
    content: " ➔";
    padding-left: 5px;
    transition: padding-left 0.3s;
}

.section button:hover::after {
    padding-left: 10px;
}

/* Screenshot in secties */
.screenshot {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Knoppen */
button {
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    background-color: #1565C0; /* Diepblauw */
    color: #ffffff;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 1em;
}

button:hover {
    background-color: #0090db; /* Donkerder blauw voor hover */
}

button:disabled {
    background-color: #eeeeee;
    color: grey;
    cursor: pointer;
}

/* Hero-sectie */
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.hero {
    background-color: #fdfdfd; /* Subtiele achtergrondkleur */
    padding: 40px 20px;
    border-radius: 0 0 10px 10px; /* Alleen afgeronde hoeken aan de onderkant */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); /* Lichte schaduw aan de onderkant */
    text-align: center;
    margin-top: -10px; /* Optioneel: Overlap licht met de bovenkant voor naadloze overgang */
    overflow: visible;
}


.hero h1 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
    padding: 10px 20px;
    display: inline-block;
}

.hero button {
    padding: 12px 30px;
    font-size: 1.1em;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
    background-color: #1565C0;
    color: #ffffff;
    border-radius: 6px;
}

.hero button:hover {
    background-color: #0090db;
    transform: scale(1.05);
}

/* Hero Animaties */
.hero h1, .hero p {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.hero button {
    opacity: 1;
    transform: none;
}

.hero h1 { animation-delay: 0.2s; }
.hero p { animation-delay: 0.4s; }
.hero button { animation-delay: 0.6s; }

/* Keyframes voor de fade-in animatie */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* About-sectie */
.about-section {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    gap: 40px;
}

.about-column {
    flex: 1;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-color: #fdfdfd;
}

.about-column h2 {
    font-size: 1.8em;
    color: #1565C0;
    margin-bottom: 15px;
}

.about-column p {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-column button {
    padding: 10px 20px;
    font-size: 1em;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px 0;
    z-index: 1000;
    margin: 0;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1); /* Voeg een subtiele rand toe aan de onderkant */
   background-color: #1565C0;
    color: #fdfdfd; /* Blauw voor tekst en iconen */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Zorg ervoor dat de container goed gepositioneerd is */
.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0 20px;
}

.navbar-left a {
    color:#fdfdfd;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
}

.navbar-right {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.navbar-right a {
        color: #fdfdfd;
    text-decoration: none;
    font-size: 1em;
}

.navbar-right a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    padding: 20px 0;
    text-align: center;
}

footer a {
    color: #007bff;
    text-decoration: none;
}

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

/* Responsieve lay-out */
@media (max-width: 1024px) {
    .section {
        min-width: 45%;
    }
}

@media (max-width: 768px) {
    .section {
        min-width: 100%;
    }
}
/* About-sectie aanpassing voor mobiele weergave */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column; /* Stapel kolommen onder elkaar */
        gap: 20px; /* Ruimte tussen de gestapelde kolommen */
    }
}


/* Icoontjes */
.navbar a i {
    color: #fdfdfd;
}

.hero h1, .hero p {
    color: #1565C0; /* Donkergrijs voor hero-tekst */
}

/* CSS Custom Properties */
:root {
    --primary-color: #1565C0;
    --secondary-color: #0090db;
    --background-color: #ebf1ff;
    --text-color: #424242;
    --white: #fdfdfd;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.12);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* Hero Sectie Verbeteringen */
.hero-subtitle {
    font-size: 1.3em;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    padding: 0 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    overflow: visible;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.primary-btn:hover {
    background-color: var(--secondary-color);
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Specifieke fix voor scroll button */
.primary-btn[onclick*="scrollIntoView"]:hover {
    background-color: var(--secondary-color);
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 1;
    visibility: visible;
}

.secondary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 28px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    min-height: 50px;
}

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.benefit-item i {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-top: 0;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-item h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.1em;
    line-height: 1.2;
    margin-top: 0;
    width: 40%;
}

.benefit-item p {
    color: var(--text-color);
    font-size: 0.95em;
    line-height: 1.4;
    margin: 0;
    width: 60%;
}

/* CTA Content */
.cta-content {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    animation: pulse 3s ease-in-out infinite;
}

.cta-main {
    font-size: 1.4em;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.cta-sub {
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 1.05em;
    position: relative;
    z-index: 2;
    line-height: 1.5;
}

.cta-benefits {
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.cta-benefits p {
    color: var(--text-color);
    font-size: 0.95em;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-benefits i {
    color: #4caf50;
    font-size: 0.9em;
    flex-shrink: 0;
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 15px;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.cta-note {
    font-size: 0.9em;
    color: #666;
    font-style: italic;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta-note::before {
    content: '✓';
    color: #4caf50;
    font-weight: bold;
}

.cta-note::after {
    content: '✓';
    color: #4caf50;
    font-weight: bold;
}

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.contact-method i {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-method h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.1em;
}

.contact-method p {
    color: var(--text-color);
    margin-bottom: 5px;
}

.contact-method small {
    color: #666;
    font-size: 0.85em;
}

.contact-method a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-method a:hover {
    text-decoration: underline;
}

/* Testimonial */
.testimonial {
    background-color: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
    margin-top: 20px;
}

.testimonial blockquote {
    font-style: italic;
    font-size: 1.1em;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial cite {
    font-weight: bold;
    color: var(--primary-color);
    font-style: normal;
}

/* FAQ Section */
.faq-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.faq-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 2em;
}

.faq-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.faq-item {
    background-color: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2em;
}

.faq-item p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Geavanceerde Animaties */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Animaties voor secties - alleen bij scroll */
.section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Geen extra animaties bij hover om knipperen te voorkomen */
.section:nth-child(odd).animate {
    /* animation: slideInLeft 0.6s ease-out; */
}

.section:nth-child(even).animate {
    /* animation: slideInRight 0.6s ease-out; */
}

/* Hover effecten voor secties - uitgeschakeld om knipperen te voorkomen */
.section::before {
    display: none;
}

.section:hover::before {
    display: none;
}

/* Hero animaties */
.hero h1 {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-subtitle {
    animation: fadeInUp 0.8s ease-out 0.2s both;
    vertical-align: top;

}

.hero-description {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Floating animatie voor iconen */
.benefit-item i,
.contact-method i {
    animation: float 3s ease-in-out infinite;
}

.benefit-item i:nth-child(1) {
    animation-delay: 0s;
}

.benefit-item i:nth-child(2) {
    animation-delay: 0.5s;
}

.benefit-item i:nth-child(3) {
    animation-delay: 1s;
}

/* Pulse animatie voor buttons */
.primary-btn:hover,
.cta-button:hover {
    animation: pulse 0.6s ease-in-out;
}

/* Responsive animaties */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-container {
        grid-template-columns: 1fr;
    }
}

