/***********************************/
/* footer*************************/
/***********************************/


footer {
    background: var(--primary-color);
    color: var(--text-color);
    text-align: center;
    padding: 20px 0;
    width: 100%;
    bottom: 0; 
    left: 0;
    height: auto; 
    /*position: sticky; /* */
   
}

  /* a revoir*/
   footer .text-underline{
    text-transform: uppercase;
    margin-bottom: 1.50rem;
    text-align: left;
    text-decoration: underline;
  }
  
  footer a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
  }
  
  footer a:hover {
    color: var(--secondary-color);
  }
  
  footer ul.list-unstyled li {
    text-align: left;
    margin-bottom: 0.25rem;
  }
  
  .footer-social{
   
    text-align: left;
    
  }
  
  .footer-social a {
    font-size: 1.25rem; 
    margin: 0 5px; 
    transition: color 0.3s ease, transform 0.3s ease;
    width: 2.25rem; 
    height: 2.25rem; 
    display: flex;
    align-items: center;
    justify-content: center;
    
  }
  
  .footer-social a:hover {
    color: var(--secondary-color);
    transform: scale(1.1);
  }
  
  .footer-newsletter .input-group {
    max-width: 600px;
    margin: auto;
  }
  
  .footer-newsletter input[type="email"] {
    border: none;
    padding: 15px;
    border-radius: 0;
  }
  
  .footer-newsletter button {
    border: none;
    border-radius: 0 5px 5px 0;
  }
  
  .footer-newsletter .form-check-label a {
    color: var(--text-color);
    text-decoration: underline;
    transition: color 0.3s ease;
  }
  
  .footer-newsletter .form-check-label a:hover {
    color: var(--secondary-color);
  }
  
  .footer-newsletter .input-group .form-control,
  .footer-newsletter .input-group .btn {
    height: 50px; 
  }
  
  .footer-newsletter .input-group .form-control:focus {
    box-shadow: none; 
  }
  
  /* Styles spécifiques pour la checkbox et le label */
  .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    gap: 10px; /* Espace entre la checkbox et le texte du label */
  
  }
  
  .form-check-label {
    margin-bottom: 0 ; 
  }
  
  .form-check-input {
    margin: 1rem; 
  }
  
  
  .form-check-label a {
    color: var(--text-color);
    text-decoration: underline;
    transition: color 0.3s ease;
  }
  
  .form-check-label a:hover {
    color: var(--secondary-color);
  }