/* ===== FOOTER DESIGN SYSTEM ===== */

.kent-footer {
  background-color: var(--color-violet);
  color: var(--color-white);
  padding: 60px 0 30px 0;
  position: relative;
}

.kent-footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Section principale du footer */
.kent-footer__main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 40px;
}

/* Logo */
.kent-footer__logo {
  margin-bottom: 20px;
}

.kent-footer__logo-img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1); /* Rendre le logo blanc */
}

/* Colonnes de navigation */
.kent-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  font-weight: 600;
}

.kent-footer__column-title {
  font-family: var(--font-avenir);
  font-weight: 600;
  font-size: 18px;
  color: var(--color-white);
  margin-bottom: 20px;
}

.kent-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.kent-footer__links li {
  margin-bottom: 12px;
}

.kent-footer__links a {
  font-family: var(--font-avenir);
  font-size: 16px;
  color: var(--color-white);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.kent-footer__links a:hover {
  opacity: 0.8;
}

/* Bouton CTA dans le footer */
.kent-footer__cta {
  margin-top: 20px;
  font-size: 16px;
  color: var(--color-violet) !important;
  font-weight: 600 !important;
  padding: 12px 24px;
}

/* Réseaux sociaux */
.kent-footer__social-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.kent-footer__social-links li {
  margin-bottom: 12px;
}

.kent-footer__social-link {
  font-family: var(--font-avenir);
  font-size: 16px;
  color: var(--color-white);
  text-decoration: none;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.kent-footer__social-link:hover {
  opacity: 0.8;
}

.kent-footer__social-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1); /* Rendre l'icône blanche */
}

/* Ligne de séparation */
.kent-footer__separator {
  height: 1px;
  background-color: var(--color-white);
  opacity: 0.3;
  margin: 40px 0;
}

/* Section inférieure */
.kent-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-avenir);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-white);
}

.kent-footer__legal a {
  color: var(--color-white);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.kent-footer__legal a:hover {
  opacity: 0.8;
}




/* Responsive */
@media (max-width: 1024px) {
  .kent-footer__main {
    gap: 60px;
  }
  
  .kent-footer__columns {
    gap: 40px;
    margin: auto;
  }
}

@media (max-width: 768px) {
  .kent-footer {
    padding: 40px 0 20px 0;
  }
  
  .kent-footer__container {
    padding: 0 20px;
  }
  
  .kent-footer__main {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .kent-footer__logo {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .kent-footer__columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .kent-footer__column {
    text-align: left;
  }
  
  .kent-footer__column-title {
    font-size: 18px;
    margin-bottom: 15px;
    text-align: left;
  }
  
  .kent-footer__links li {
    margin-bottom: 10px;
  }
  
  .kent-footer__social-links li {
    margin-bottom: 10px;
  }
  
  .kent-footer__social-link {
    justify-content: flex-start;
  }
  
  .kent-footer__cta {
    width: 100%;
    text-align: center;
    margin-top: 15px;
  }
  
  .kent-footer__bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .kent-footer__separator {
    margin: 30px 0;
  }
}

@media (max-width: 480px) {
  .kent-footer__container {
    padding: 0 15px;
  }
  
  .kent-footer__main {
    gap: 30px;
  }
  
  .kent-footer__columns {
    gap: 30px;
  }
  
  .kent-footer__column-title {
    font-size: 16px;
  }
  
  .kent-footer__links a,
  .kent-footer__social-link {
    font-size: 14px;
  }
  
  .kent-footer__logo-img {
    height: 50px;
  }
}
