
:root {
  color: var(--text, #333);
  padding-inline: var(--gutter, 20px);
}

.container{
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.footer{
  background: #f5f5f5;
  color: var(--text);
  padding: 40px 0;
  font-family: Arial, sans-serif;
   min-height: 200px;
}

.footer a {
  transition: color 0.3s ease;
}

.footer__logo{
  text-align: center;
  margin-bottom: 15px;
}

.footer__logo img {
  width: clamp(100px, 20%, 200px);
  height: auto;
  object-fit: contain; 
}



.footer-bottom{
  border-top: 1px solid #ccc;
  padding-top: 20px;
  text-align: center;
}

.footer-links{
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.footer-links li{
   margin: 0; 
  }

.footer-social {
  text-align: center;
}
.footer-social a{
  margin: 0 8px;
  text-decoration: none;
  color: var(--text);
  display: inline-block;
}

.footer_rrss_img{
      height: 25px;
      width: auto;
      display: block;
}

.footer-social a:hover{ 
  color: #0077b5; 
}

.footer-social a:hover img {
  filter: brightness(1.2);
  transform: scale(1.1);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.footer-copy p{ 
  margin: 10px 0 0; 
  font-size: 14px; 
}

.footer a:focus {
  outline: 2px solid #0077b5;
  outline-offset: 2px;
}

@media (max-width: 600px) {
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
  }

  .footer__logo img {
    width: 40%;
  }

  .footer-social a {
    margin: 0 4px;
  }
}

@media (min-width: 1000px) {
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left; 
    padding-top: 30px;
    flex-wrap: wrap;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 40px; 
    margin: 0;
    font-size: 18px;
  }

  .footer-links a {
    font-weight: 600;
  }

  .footer-social {
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex: 1;
  }

  .footer-copy {
    flex-basis: 100%;
    text-align: center;
    margin-top: 20px;
  }
}
