/* 
 * Footer Styles for Stradiax Website
 * Contains all styles related to the site footer
 */

.footer-section {
  background-color: #f8f9fa;
  padding: 3rem 0 2rem;
}

.footer-section h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.footer-section .nav-link {
  padding: 0.25rem 0;
  color: #495057;
  transition: color 0.2s;
}

.footer-section .nav-link:hover {
  color: #0d6efd;
}

.footer-section img {
  max-height: 36px;
  height: auto;
  width: auto;
  display: block;
  margin-bottom: 1rem;
}

.footer-section .social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-section .social-icons a {
  color: #495057;
  font-size: 1.2rem;
  transition: color 0.2s;
}

.footer-section .social-icons a:hover {
  color: #0d6efd;
}

.footer-section .copyright {
  font-size: 0.9rem;
  color: #6c757d;
  margin-top: 2rem;
  text-align: center;
}

@media (max-width: 767.98px) {
  .footer-section {
    padding: 2rem 0 1.5rem;
    text-align: center;
  }
  
  .footer-section .social-icons {
    justify-content: center;
  }
  
  .footer-section img {
    margin: 0 auto 1rem;
  }
}
