/* ===== FOOTER STRUCTURE ===== */
.kek-footer {
    background-color: #2d2d2d; /* Donkergrijze achtergrond */
    color: #ffffff; /* Witte tekst */
    padding: 4rem 0 0;
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .kek-footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
  }
  
  /* ===== FOOTER WIDGETS ===== */
  .kek-footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding-bottom: 3rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Lichtgrijze scheidingslijn */
  }
  
  .kek-footer-column {
    padding: 0 1rem;
  }
  
  .kek-footer-column h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #ffffff; /* Witte kopteksten */
    margin-bottom: 1.5rem;
    font-weight: 600;
  }
  
  .kek-footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .kek-footer-column li {
    margin-bottom: 0.75rem;
  }
  
  .kek-footer-column a {
    color: #ffffff; /* Witte links */
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
  }
  
  .kek-footer-column a:hover {
    color: #ffffff;
    opacity: 1;
    text-decoration: underline;
  }
  
  /* ===== FOOTER BOTTOM ===== */
  .kek-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
  }
  
  .kek-footer-logo img {
    max-height: 50px;
    width: auto;
    filter: brightness(0) invert(1); /* Maakt logo wit */
  }
  
  .kek-footer-site-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff; /* Witte tekst voor logo */
    text-decoration: none;
  }
  
  .kek-footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .kek-footer-nav a {
    color: #ffffff; /* Witte navigatielinks */
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
  }
  
  .kek-footer-nav a:hover {
    color: #ffffff;
    opacity: 1;
    text-decoration: underline;
  }
  
  .kek-footer-social {
    display: flex;
    margin: auto;
    gap: 1rem;
  }
  
  .kek-social-icon {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1); /* Lichtgrijze achtergrond */
    color: #ffffff; /* Witte iconen */
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    transition: all 0.3s ease;
  }
  
  .kek-social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Lichtere grijze hover */
    transform: translateY(-3px);
  }
  
  .kek-footer-copyright {
    width: 100%;
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6); /* Lichtgrijze tekst */
  }
  
  /* ===== RESPONSIVE ADJUSTMENTS ===== */
  @media (max-width: 992px) {
    .kek-footer-widgets {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .kek-footer-bottom {
      flex-direction: column;
      gap: 1.5rem;
      text-align: center;
    }
    
    .kek-footer-nav ul {
      justify-content: center;
    }
  }
  
  @media (max-width: 576px) {
    .kek-footer-widgets {
      grid-template-columns: 1fr;
    }
    
    .kek-footer-column {
      margin-bottom: 2rem;
    }
    
    .kek-footer-column:last-child {
      margin-bottom: 0;
    }
  }

  /* ===== SOCIAL MEDIA ICONS ===== */
.kek-social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .kek-social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
  }
  
  .kek-social-icon::before {
    font-family: 'Font Awesome 6 Brands'; /* Gebruik Font Awesome */
    font-weight: 400;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 18px;
  }
  
  .kek-facebook::before { content: '\f39e'; } /* Facebook */
  .kek-twitter::before { content: '\f099'; } /* Twitter */
  .kek-instagram::before { content: '\f16d'; } /* Instagram */
  .kek-linkedin::before { content: '\f0e1'; } /* LinkedIn */

  .logo-text-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-branding {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kek-footer-site-title {
    margin: 0;
    font-size: 1.2rem; /* Adjust as needed */
    line-height: 1.2;
}

.site-slogan {
    margin: 0;
    font-size: 0.9rem; /* Adjust as needed */
    line-height: 1.4;
    color: var(--color-blue-logo); /* Adjust color as needed */
}

.logo-text-container img {
    height: auto;
    max-height: 50px; /* Adjust logo height as needed */
}