/* Style dla stopki - nowa wersja */
@import url('colors.css');

.footer {
  padding: 4rem 0 2rem;
  background-color: var(--color-secondary);
  color: white;
}

.footer-logo {
  /* background-color: rgba(255, 255, 255, 0.9); */
  border-radius: 10px;
  padding: 12px;
  display: inline-block;
  margin-bottom: 1.5rem;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); */
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: translateY(-5px);
}

.footer-logo img {
  max-height: 60px;
}

.footer h4 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-primary);
}

.footer-contact {
  margin-bottom: 1.5rem;
}

.footer-contact p {
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
}

.footer-contact p i {
  margin-right: 10px;
  color: var(--color-primary);
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 1.5rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--color-primary);
  transform: translateY(-5px);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Responsywność */
@media (max-width: 991.98px) {
  .footer {
    padding: 3rem 0 2rem;
  }
  
  .footer-col {
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .footer h4:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-contact p {
    justify-content: center;
  }
  
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .footer {
    padding: 2.5rem 0 1.5rem;
  }
  
  .footer-social {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .footer-social a {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 575.98px) {
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer h4 {
    font-size: 1.2rem;
  }
  
  .footer-logo img {
    max-height: 50px;
  }
  
  .footer-social a {
    width: 32px;
    height: 32px;
  }
}
