/* -------- Menu knoppen -------- */
.custom-nav {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 10px 0;
    box-sizing: border-box;
}

.custom-btn {
    display: inline-block;
    background: linear-gradient(to bottom, #99cc00 0%, #4CAF50 100%);
    color: #000000 !important;
    font-family: Tahoma, Arial, sans-serif;
    font-size: 16px;
    padding: 10px 30px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: inset 0 1px 0 #ffffff, inset 0 -1px 0 #333333;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 170px;
}

.custom-btn:hover {
    box-shadow: inset 0 1px 0 #ffffff, inset 0 -1px 0 #333333, 0 0 15px rgba(0,0,0,0.5);
    color: #000000;
}

/* -------- Tekst uitlijning -------- */
p {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.footer-bottom p {
  text-align: center;
  text-justify: none;
  hyphens: none;
}

/* -------- Layout Over ons pagina -------- */
.over-ons-container {
  max-width: 1000px;
  margin: auto;
  font-family: Tahoma, Arial, sans-serif;
}

.over-ons-title {
  text-align: center;
  margin-bottom: 2rem;
}

.persoon {
  overflow: hidden;
  margin-bottom: 4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
}

.persoon-afbeelding {
  width: 240px;
  border-radius: 12px;
  flex-shrink: 0;
}

.persoon-afbeelding.links {
  order: 0;
}

.persoon-afbeelding.rechts {
  order: 1;
}

.persoon-tekst {
  flex: 1;
  min-width: 280px;
}

.persoon img {
  height: auto;
  padding-top: 50px;
}

.persoon.donald img {
  transform: scaleX(-1); /* Spiegelen */
}

.persoon.donald .persoon-tekst {
  max-width: 600px;
  text-align: right;
}

.persoon.denise .persoon-tekst {
  max-width: 600px;
}

/* -------- Layout Contactpagina -------- */
.form-grid {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
  font-family: Tahoma, Arial, sans-serif;
}

.form-left, .form-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.wpcf7-form input,
.wpcf7-form textarea {
  padding: 10px;
  font-family: Tahoma, Arial, sans-serif;
  font-size: 14px;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.wpcf7-form textarea {
  width: 100%;
  height: 180px;
  resize: vertical;
}

.wpcf7-submit {
  background: linear-gradient(to bottom, #99cc00 0%, #4CAF50 100%);
  color: #000 !important;
  padding: 10px 30px;
  font-family: Tahoma, Arial, sans-serif;
  font-size: 16px;
  border-radius: 30px;
  border: 1px solid #333;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wpcf7-submit:hover {
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  border-color: #99cc00;
  outline: none;
  box-shadow: 0 0 5px rgba(153, 204, 0, 0.4);
}

.wpcf7 {
  background-color: #1b1b1b;
  border: 2px solid #4CAF50;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  width: 100%;
  margin: 2rem auto;
}

.wpcf7-form label {
  color: #7fff00;
  font-weight: bold;
}

.wpcf7-form input,
.wpcf7-form textarea {
  background-color: #2a2a2a;
  color: #ffffff;
  border: 1px solid #555;
}

.form-response-note {
  font-size: 13px;
  color: #ccc;
  margin-top: 10px;
  text-align: center;
  font-style: italic;
}

/* -------- Layout Product pagina -------- */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 2rem;
}

.product-card {
  background-color: #1b1b1b;
  border: 2px solid #4CAF50;
  border-radius: 12px;
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: black;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  padding: 1rem;
  min-height: 520px; 
}

.product-card:hover {
  /* Geen beweging meer bij hover */
}

.product-card img {
  max-width: 100%;
  max-height: 180px;
  object-fit: contain; 
  border-radius: 8px;
  margin-bottom: 1rem;
}

.product-card h3 {
  margin: 0.5rem 0;
  color: #7fff00;
  font-size: 1.2rem;
}

.product-card p {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: #cccccc; 
}

.product-card .prijs {
  font-weight: bold;
  color: #7fff00;
  margin-bottom: 1.5rem;
}

.product-button {
  margin-top: auto; 
  background: linear-gradient(to bottom, #7fff00, #4CAF50);
  color: black !important;
  font-weight: bold;
  padding: 0.6rem 1rem;
  text-decoration: none;
  border-radius: 25px;
  display: inline-block;
  transition: background 0.3s ease;
}

.product-button:hover {
  background: linear-gradient(to bottom, #aaff66, #5fd052);
}

/* -------- Mobiele weergave -------- */
@media (max-width: 768px) {
  .persoon {
    flex-direction: column;
    text-align: center;
  }

  .persoon-afbeelding {
    margin: 0 auto 1rem;
    order: 0 !important;
  }
	
  .persoon {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .persoon .persoon-tekst {
    text-align: center !important;
    max-width: 100%;
  }

  .persoon img {
    margin: 0 auto 1rem;
    transform: none !important;
  }
	
	.form-grid {
    flex-direction: column;
  }
	
  .product-card {
    width: 100%;
    min-height: auto;
  }
}

/* -------- Tablet weergave: 2x2 raster -------- */
@media (min-width: 768px) and (max-width: 1024px) {
    .custom-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        justify-items: center;
    }

    .custom-btn {
        width: 100%;
        max-width: 200px;
    }
}

/* -------- Footer -------- */
.custom-footer-grid {
  background: #000;
  color: #ccc;
  font-family: Tahoma, Arial, sans-serif;
  padding: 30px 20px 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  font-size: 13px;
}

.footer-map,
.footer-contact,
.footer-opening {
  flex: 1 1 250px;
  line-height: 1.6;
  min-width: 220px;
}

.footer-map iframe {
  height: 220px;
  border-radius: 10px;
}

.footer-contact strong,
.footer-opening strong {
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  display: block;
  margin-bottom: 6px;
}

.footer-contact {
  margin-bottom: 10px;
}

.footer-opening ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-opening li {
  display: flex;
	gap: 5px;
	margin-bottom: 3px;
  white-space: nowrap;
}

.footer-opening .day {
  width: 95px;
  display: inline-block;
  color: #ccc;
}

.footer-opening .time {
  flex-shrink: 0;
  color: #ccc;
}

.footer-opening li.today .day,
.footer-opening li.today .time {
  font-weight: bold;
  color: #6cef02;
}

.footer-bottom {
  width: 100%;
  text-align: center;
  font-size: 12px;
  margin-top: 15px; 
}

.footer-links a {
  color: #6cef02;
  text-decoration: underline;
}

.footer-links a:hover {
  text-decoration: none;
}

/* -------- caret (|-streepje) onzichtbaar op site -------- */
* {
  caret-color: transparent !important;
}