@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500&display=swap');

.skychef-footer {
  background-color: #e9eaeb;
  padding: 40px 60px;
  font-family: 'Work Sans', sans-serif;
  color: #26466D;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 40px;
}

.logo {
  height: 40px;
  margin-bottom: 15px;
}

.login-btn {
  background-color: #f26552;
  color: white;
  border: none;
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 14px;
  cursor: pointer;
  font-family: 'Work Sans', sans-serif;
}

.footer-divider {
  width: 1px;
  background-color: #26466D;
  height: 140px;
  margin: 0 40px;
}

.footer-right {
  font-size: 16px;
  font-weight: 300;
  width: 100%; /* Prend toute la largeur disponible */
  max-width: 400px; /* Largeur maximale pour les grands écrans */
}

.footer-right .line {
  margin-bottom: 20px;
  line-height: 1.6;
  text-align: left; /* Alignement cohérent sur tous les écrans */
}

.footer-right a {
  color: #26466D;
  text-decoration: none;
  word-break: break-all; /* Empêche le débordement des longues adresses email */
}

/* Adaptations responsive */
@media (max-width: 1024px) {
  .footer-right {
    font-size: 15px;
    max-width: 350px;
  }
  
  .footer-right .line {
    margin-bottom: 18px;
  }
}

@media (max-width: 768px) {
  .footer-right {
    font-size: 14px;
    max-width: 100%; /* Prend toute la largeur sur tablette */
    padding: 0 15px; /* Ajoute un peu d'espace sur les côtés */
    text-align: center; /* Centre le texte sur mobile */
  }
  
  .footer-right .line {
    margin-bottom: 15px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .footer-right {
    font-size: 13px;
  }
  
  .footer-right .line {
    margin-bottom: 12px;
  }
  
  .footer-right a {
    font-size: 12px; /* Taille légèrement réduite pour les liens */
  }
}
