/* Add this at the top of styles.css */
:root {
  --pastel-dark-green:  #D3E5D2;
  --pastel-dark-darkgreen:  #586357;
  --pastel-light-green: #DFEDDD;
  --pastel-yellow: #FAFADC;
  --pastel-orange: #FAE6BE;
  --content-box-color: #ffffff;
  --content-box-color-light: #DFEDDD;

  --textblack: rgb(88, 88, 88);
}



/* Replace existing color values with variables */
.header, #hero, #verbindend-gezag, #relatietherapie, #contact {
  background-image: linear-gradient(to right, var(--pastel-dark-green), var(--pastel-light-green));
}


/* Algemene reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

a {
  color: rgb(80, 54, 255); /* Neemt de tekstkleur van het parent element over */
  text-decoration: none; /* Verwijder onderstreping */
}

/* Optioneel: voeg hover effect toe voor alle links */
a:hover {
  color: var(--textblack); /* Of een andere kleur naar keuze */
}

.atekst {
color: var(--textblack);
}

.atekst:hover {
color: rgb(6, 73, 0);
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--textblack);
  background-color: #fff;
}


/* Sectie Call-to-Action Knoppen */
.section-button {
  display: inline-block;
  text-align: center;
  margin-top: 20px;
  margin-right:10px ;
  background-color: var(--pastel-light-green);
  color: var(--textblack);
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.section-button:hover {
  background-color: var(--pastel-orange);
}


/* Container voor consistente layout */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Header styling */
header {
  padding: 20px 0;
  text-align: center;
}

.header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

header h1 {
  font-size: 2rem;
  color: var(--textblack);
  margin-bottom: 10px;
}

/*missievisie------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


#missie-visie {
  padding: 40px 20px;
  background-color: var(--content-box-color);
  color: var(--textblack);
  text-align: center;
}

#missie-visie h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

#missie-visie p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 25px auto;
  line-height: 1.6;
}


/*missie visie------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


/* Hero sectie styling */
/* In je CSS */
#hero {
  background: linear-gradient(135deg, var(--pastel-light-green) 0%, var(--pastel-dark-green) 100%);
  padding: 2rem 0 0;
  position: relative;
  border: solid var(--pastel-light-green) 3px;
}

.hero-container {
  display: flex;
  align-items: center;
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem 2rem;
  gap: 3rem;
  
}

.hero-content {
  flex: 1;
  text-align: left;
}

.hero-image {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transform: translateY(0);
  transition: transform 0.5s ease;
  
}

.hero-image:hover {
  transform: translateY(-10px);
}

.hero-image img {
  width: 100%;
  height: auto;
  padding: 20px;
  display: block;
}

h1 {
  font-size: 3rem;
  color: var(--textblack);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--textblack);
  margin-bottom: 1.5rem;
  
}

.hero-text {
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  

}

.hero-button {
  display: inline-block;
  background: var(--pastel-orange);
  color: var(--textblack);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero-button:hover {
  background: var(--pastel-yellow);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}


/*------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

/* Add playful text area */
.playful-text-container {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.playful-text-box {
  flex: 1;
  padding: 20px;
  background: var(--pastel-pink);
  border-radius: 25px;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 3px 3px 6px rgba(0,0,0,0.1),
  inset -2px -2px 4px rgba(255,255,255,0.5),
  0 4px 12px rgba(0,0,0,0.05); /* Optional outer shadow */
  transition: all 0.3s ease;
}

.playful-text-box:hover {
  box-shadow: inset 4px 4px 8px rgba(0,0,0,0.1),
              inset -3px -3px 6px rgba(255,255,255,0.5),
              0 6px 15px rgba(0,0,0,0.08);
  background-color: var(--content-box-color-light);
}

.playful-text {
  font-family: Arial, sans-serif;
  font-size: 1.2rem;
  color: rgb(88, 88, 88);
  text-align: center;
  line-height: 1.5;
}

.content-box li{
  list-style: none;
  color: var(--textblack);
  margin-top: 10px;
}

/* Add image styling */
.playful-image {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-height: fit-content;
  border-radius: 25px;

}

.playful-image img{
  max-height:400px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.playful-text{
  text-decoration: none;
}

#mobileonly {
  display: none;
}


/*------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.training-icon {
  display: flex;
  justify-content: center;
}

.training-icon img {
  max-width: 90%;
  max-height: 300px;
  height: auto;
  width: auto;
  border-radius: 20px;
}


/* Voeg toe aan je CSS */
.training-card {
  background: white;
  border-radius: 20px;
  padding: 2rem; /* Dit is goed */
  margin: 2rem 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  position: relative;
  transition: transform 0.3s ease;
  /* Voeg deze toe: */

}

.training-card h3 {
  margin-bottom: 0.8rem;
 }

.training-card:hover {
  transform: translateY(-5px);
}

.training-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.geweldloosverzetnoordnederland {
  display: inline-block;
 width: 100%;
  font-size: clamp(0.85rem, 1.6vw, 0.95rem); /* Slightly smaller */
  line-height: 1.4;
  word-break: break-word;


  font-weight: bold;
  text-align: center;
  margin: 20px auto;
  background-color: var(--pastel-light-green);
  color: var(--textblack);
  padding: 10px 10px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.geweldloosverzetnoordnederland:hover{
  background-color: var(--pastel-orange);
}

.training-card .section-button {
  display: inline-flex; /* Gebruik inline-flex i.p.v. flex */
 
  /* Voeg deze toe: */
  padding: 10px 20px;
  margin-top: 1rem;
  text-align: center;
  justify-content: center;
  width: auto; /* of max-content */
  white-space: nowrap; /* Voorkomt ongewenste afbreking */
}



.progress-container {
  margin: 1.5rem 0;
}

.progress-label {
  font-family: 'Comic Neue', cursive;
  color: var(--pastel-dark-green);
  margin-bottom: 0.5rem;
}

.progress-bar {
  height: 20px;
  background: var(--pastel-blue);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  width: var(--progress);
  height: 100%;
  background: var(--pastel-light-green);
  border-radius: 10px;
  transition: width 0.8s ease-in-out;
  position: relative;
}

.progress-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, 
    transparent 25%, 
    rgba(255,255,255,0.3) 50%, 
    transparent 75%);
  animation: shine 1.5s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.partner-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1rem;
}

.partner-cloud img {
  height: 40px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.partner-cloud img:hover {
  opacity: 1;
  transform: scale(1.1);
}

.partner-cloud span {
  background: var(--pastel-pink);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-family: 'Comic Neue', cursive;
}

.partner-count {
  background: var(--pastel-blue);
  padding: 0.5rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.link{
  color: var(--pastel-dark-darkgreen);
}

.link:hover {
  color: var(--pastel-dark-green);

}

/*------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

/* Content secties styling */
.content-section {
  position: relative;
  padding: 80px 0;
 
}

.content-box {
  background: var(--content-box-color);
  max-width: 1200px;
  margin: 40px auto;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  min-height: 200px;
}

.content-box:hover {
  transform: scale(1.02);
}


.content-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--textblack);
}

.content-section p,
.content-section ul {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

/*------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

/* Flex-container voor De therapeut sectie */
.de-therapeut-container {
 
  text-align: center;

}


.therapeut-profile {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.profile-content {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.profile-text {
  flex: 2;
}

.profile-image {
  flex: 1;
}

.profile-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}



/*------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.extraimage{
  display: flex;
  justify-content: center;
  width: fit-content;
  height: 350px;
  margin: auto;
  border-radius: 20px; /* optioneel, voor een afgeronde hoek */
  
}
.extraimage img{
  border-radius: 20px;
}

/*------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

#verbindend-gezag {
  color: var(--textblack);
  padding: 100px 0;
  text-align: center;
  /* De clip-path zorgt voor een schuine onderkant: 
     links 80% van de hoogte, rechts 100% */
    
}

/*------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

#relatietherapie {
  color: var(--textblack);
  padding: 100px 0;
  text-align: center;
  /* De clip-path zorgt voor een schuine onderkant: 
     links 80% van de hoogte, rechts 100% */
    
}

/*------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

#contact {
  color: var(--textblack);
  padding: 100px 0;
  text-align: center;
 
}

#contact a {
  margin-bottom: 20px;
}
#verbindend-gezag h2 {
  color: var(--textblack);
}
#relatietherapie h2 {
  color: var(--textblack);
}

#contact h2 {
  color: var(--textblack);
}

/*------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

/* Lijst styling in praktische-info */
.content-section ul {
  list-style: disc;
  margin-left: 20px;
}

/*------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

/* Contactformulier styling */
form {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background: var(--content-box-color);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

form input, form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

form button {
  background: var(--pastel-dark-green);
  color: var(--textblack);
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}

form button:hover {
  background: var(--pastel-light-green);
}


.samenwerking {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}


/*------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

/* Footer styling */

.footercontainer {
  display: flex;
  flex-direction: column; /* Kinderen onder elkaar */
  justify-content: center;
  align-items: center; /* Horizontale centrering */
  text-align: center;
  width: 80%;
  margin: auto auto;
  gap: 15px; /* ruimte tussen p en downloads */
}


footer {
  background-color: var(--pastel-light-green);
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #e5e5e5;
 
}

footer p {
  font-size: 0.9rem;
  color: var(--textblack);
  
}


.footer-downloads {
  margin-top: 15px;
  font-size: 0.85rem;
  color: var(--textblack);
}

.footer-downloads h4 {
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--textblack);
}

.footer-downloads ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-downloads ul li {
  margin-bottom: 6px;
}

.footer-downloads ul li a {
  color: var(--textblack);
  text-decoration: underline;
}

.footer-downloads ul li a:hover {
  color: rgb(80, 54, 255);
  text-decoration: none;
}



.last-updated {
            font-style: italic;
            color: #7f8c8d;
            margin-bottom: 30px;
        }
        .back-link {
            display: inline-block;
            margin-top: 30px;
            background: #f1f1f1;
            padding: 8px 15px;
            border-radius: 4px;
        }
/*------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
.carrousel {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.carrousel-inner {
  display: inline-block;
  animation: moveSlideshow 10s linear infinite alternate; /* 'alternate' zorgt voor heen en weer beweging */
}

.carrousel img {
  height: 100px;
  margin-right: 20px;
}

@keyframes moveSlideshow {
  0% {
      transform: translateX(0); /* Startpositie */
  }
  100% {
      transform: translateX(calc(-100% + 100vw)); /* Beweeg naar links */
  }
}



/*------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* Responsive styling */
@media (max-width: 768px) {
.hero-content {
  flex: 1;
  text-align: center;
}


  #hero h2 {
    font-size: 2rem;
    align-items: center;
    justify-content: center;
  }

  #hero p {
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
   
  }

  .hero-container {
    flex-direction: column;
    justify-content: center;
  }
  
  .hero-image {
    max-width: 60%;
  }
  
  .de-therapeut-container {
    flex-direction: column;
    
  }

  .profile-content {
    flex-direction: column;
  }
  
  .profile-image {
    order: -1;
    margin-bottom: 1.5rem;
  }

.extraimage{
  max-width: 90%;
  max-height: 300px;
}
  
    
.playful-text-container {
  flex-direction: column;
  
  
}

.playful-text-box {
  order: 2;
  width: 95%;
  
}

.playful-image{
  max-width: 95%;
  
}
.playful-image img{
  width: 100%;
  
    }

.footercontainer{
  display: flex;
  width: 80%;
  margin: auto auto;
  justify-content: center;
  align-items: center;
  
}
.footercontainer p{
  display: flex;
  width: 95%;
  justify-content: center;
  text-size-adjust: 90%;
      }

#mobileonly {
        display: block;
}
      

}
