.planner-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
  }
  
  .planner-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .planner-text {
    flex: 1 1 310px;
  }
  
  .subheading {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: black;
    font-family: 'Merge One', sans-serif;
  }
  
  .name {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: black;
    font-family: Cormorant;
  }
  
  .quote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: black;
    font-family: Cormorant;
  }
  
  .description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #333;
  }
  
 

  /* === Afbeeldingen === */
  .planner-images {
    flex: 1 1 500px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
 
  }
  
  .background-img {
    width: 100%;
    max-width: 500px;
    border: 1px solid #333;
    border-radius: 4px;
  }
  
  .portrait-img {
    position: absolute;
    bottom: 120px; /* laat 'm uit het kader steken */
    left: 45%;
    transform: translateX(-100%); /* iets rechts van midden */
    width: 270px;
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    background-color: white;
    padding: 4px;
  }
  
  /* === Responsive === */
  @media (max-width: 768px) {
    .planner-container {
      flex-direction: column;
      text-align: center;
    }
  
    .portrait-img {
      position: relative;
      bottom: auto;
      left: auto;
      transform: none;
      margin: -60px auto 0;
      padding: 4px;
    }
  }





  @media (max-width: 768px) {
    .planner-container {
      flex-direction: column;
      text-align: center;
    }
  
    .planner-images {
      justify-content: center;
      align-items: center;
    }
  
    .portrait-img {
      position: absolute;
      bottom: 90px; /* iets hoger om beter te passen op kleinere schermen */
      left: 50%;
      transform: translateX(-50%);
      width: 180px; /* kleiner formaat voor mobiel */
      padding: 4px;
      border-radius: 6px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
      background-color: white;
    }
  
    .background-img {
      width: 100%;
      max-width: 400px;
    }
  }
  
  
