/* Footer Styles */
.site-footer {
  background-color: #444444;
  color: #ffffff;
  padding: 30px 0;
  margin-top: 50px;
  width: 100%;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 15px;
  padding: 5px 0;
  position: relative;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #FF8C00;
}

.footer-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #FF8C00;
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-links a.active {
  color: #FF8C00;
}

.footer-links a.active::after {
  width: 100%;
  background-color: #FF8C00;
}

/* Social Media Links */
.footer-social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.87);
  padding: 10px 20px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.footer-social a {
  color: #000000;
  text-decoration: none;
  margin: 0 15px;
  padding: 8px 12px;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.footer-social a i {
  margin-right: 5px;
  font-size: 16px;
}

.footer-social a:hover {
  background: linear-gradient(135deg, #993300, #FF8C00);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(153, 51, 0, 0.3);
}

.footer-social a:focus {
  outline: 2px solid #FF8C00;
}

.footer-copyright {
  font-size: 0.9em;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-links a {
    margin: 5px 0;
  }
}
