/* Footer Component Styles */
.site-footer {
  background-color: #343a40;
  color: #ffffff;
  padding: 3rem 0 2rem;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #fff;
}

.footer-nav {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.footer-nav li {
  margin-bottom: 0.5rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.15s ease-in-out;
}

.footer-nav a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  margin-right: 0.75rem;
  color: #c32525;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background-color 0.15s ease-in-out;
}

.social-link:hover {
  background-color: #c32525;
  color: #fff;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .site-footer {
    text-align: center;
  }
  
  .footer-contact-item {
    justify-content: center;
  }
  
  .social-links {
    justify-content: center;
  }
}
