/* Algemene stijlen */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: linear-gradient(180deg, #f9f9f9, #e0e0e0);
    text-align: center; /* Centreer de tekst standaard */
}

/* Navigatiebalk */
.navbar {
    background-color: #008000ff; /* Originele groene kleur van het logo */
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Verander naar 'flex-start' om de menu-items links uit te lijnen */
    gap: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Logo */
.navbar .logo img {
    width: 150px;
    height: auto;
}

/* Menu-items */
.navbar .menu {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-left: 30px; /* Voeg ruimte toe tussen het logo en de menu-items */
}

.navbar .menu a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}
.navbar .menu a:hover {
    background-color: #006400;
    transform: scale(1.05);
}

/* Hoofdinhoud */
.content {
    text-align: center;
    padding: 50px 20px;
    flex: 1;
}

.content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.content h1 .brand {
    color: #008000ff;
    font-weight: bold;
}

.content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.cta-button {
    padding: 15px 25px;
    background-color: #008000ff;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #006400;
    transform: scale(1.05);
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 14px;
    text-align: center;
}

.footer h3 {
    color: #008000ff;
    margin-bottom: 10px;
}

.footer a {
    color: white;
    text-decoration: none;
}

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

.footer p {
    margin: 5px 0;
}

/* Mobielvriendelijkheid */
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-left, .footer-right {
        text-align: center;
    }
}

/* Contactformulier */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    background-color: #008000ff;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

/* Afbeeldingengalerij */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
}


/* Over mij sectie */
.about-me {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.expertise {
    margin: 40px 0;
    text-align: center;
}

/* Algemene sectiestijlen */
section {
    margin: 40px 20px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

section h2 {
    color: #008000ff;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

section p {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
}

section ul {
    margin-top: 10px;
    padding-left: 20px;
    list-style: disc;
}

section ul li {
    margin-bottom: 10px;
    color: #555;
}

/* Zorg ervoor dat de lijst netjes in het midden staat */
ul {
    list-style-position: outside; /* Zorgt ervoor dat de opsommingstekens buiten de tekst staan */
    padding-left: 0; /* Verwijdert de standaard inspringing van de lijst */
    display: flex; /* Gebruik flexbox om de lijstitems naast elkaar te plaatsen */
    flex-direction: column; /* Zet de lijstitems verticaal */
    align-items: center; /* Centreer de lijstitems horizontaal */
}

/* Zorg ervoor dat de tekst netjes in het midden van de lijstitems staat */
li {
    text-align: center; /* Centreer de tekst binnen de lijstitems */
    margin: 10px; /* Geef wat ruimte tussen de items */
}



/* Alleen voor de pagina met de class "terms-page" */
.terms-page .content {
    text-align: left;  /* Zorg ervoor dat de tekst links uitgelijnd is */
    padding: 50px 20px;
    flex: 1;
}

.terms-page section ul {
    margin-top: 10px;
    padding-left: 20px;  /* Dit voegt de standaard inspringing van de lijst toe */
    list-style: disc;     /* Dots voor lijstitems */
}

.terms-page section ul li {
    margin-bottom: 10px;
    color: #555;
    text-align: left; /* Zorg ervoor dat de tekst links uitgelijnd is in de lijstitems */
}

/* Fix for unwanted dotted lines or outlines */
.terms-page p {
    text-align: left; 
    text-decoration: none; /* Make sure no dotted underline appears */
    outline: none; /* Ensure no outline is causing the dotted lines */
    border: none; /* Make sure no border is present */
}

.img-fluid {
    border-radius: 8px; /* Of 6px, 10px – wat je mooi vindt */
}


@media (max-width: 768px) {
    /* Navigatie aanpassing */
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 10px 15px;
    }

    .navbar .logo img {
        width: 120px;
    }

    .navbar .menu {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 0;
        width: 100%;
    }

    .navbar .menu a {
        width: 100%;
        padding: 10px 0;
    }

    /* Content */
    .content {
        padding: 30px 15px;
    }

    .content h1 {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }

    .content p {
        font-size: 1rem;
    }

    /* CTA knop */
    .cta-button {
        width: 100%;
        padding: 12px;
        font-size: 1rem;
    }

    /* Afbeeldingengalerij */
    .image-gallery {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
    }

    /* Over mij */
    .about-me {
        flex-direction: column;
        align-items: center;
    }

    /* Contactformulier */
    .contact-form {
        padding: 0 10px;
    }

    /* Footer */
    .footer {
        flex-direction: column;
        gap: 15px;
        padding: 20px 10px;
    }

    /* Sectie spacing */
    section {
        margin: 20px 10px;
        padding: 15px;
    }

    section h2 {
        font-size: 1.5rem;
    }

    section p, section ul li {
        font-size: 0.95rem;
    }

    /* Lijsten */
    ul {
        padding-left: 0;
    }

    li {
        font-size: 0.95rem;
        margin: 8px 0;
    }
}
.image-item img {
  width: 80%;
  height: 80%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}




.card-product {
  max-width: 600px;
  margin: 20px auto;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden; /* zodat afgeronde hoeken ook voor afbeelding gelden */
  text-align: center;
  padding: 15px;
}


/* Hamburger knop (alleen zichtbaar op mobiel) */
.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
}

/* Toon de hamburger op mobiel */
@media (max-width: 768px) {
  .hamburger {
    display: block;
    align-self: flex-end;
    margin-left: auto;
    font-size: 32px;
  }

  /* Mobiele menu-styling */
  .navbar .menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    background-color: #008000ff;
    padding: 10px 0;
  }

  .navbar .menu.active {
    display: flex;
  }

  .navbar .menu a {
    padding: 10px 20px;
    width: 100%;
    border-top: 1px solid #006400;
  }

  .navbar .menu a:first-child {
    border-top: none;
  }
  .image-item img {
    height: auto;          /* automatisch verhoudingen */
    max-height: 300px;     /* voorkom dat hij te lang wordt */
    width: 100%;
    object-fit: cover;     /* bijsnijden netjes */
  }

  product-single {
    max-width: 90%;
    padding: 15px;
  }
}

.product-single {
  max-width: 350px;       /* breedte van het blok */
  margin: 0 auto;         /* centrum horizontaal */
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  text-align: center;
}

.product-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
  margin-bottom: 15px;
}

.product-single h3 {
  margin: 10px 0 5px;
  color: #333;
  font-size: 1.4rem;
}

.product-single p {
  margin: 6px 0;
  color: #555;
  font-size: 1rem;
}

.card-price {
  font-weight: bold;
  font-size: 1.2rem;
  color: #008000ff;
  margin: 15px 0;
}

.cta-button {
  padding: 12px 30px;
  background-color: #008000ff;
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #006400;
}




