/* ========================================
   Footer Styles - Multi Ferragista
   ======================================== */

.site-footer {
  background: linear-gradient(135deg, #2E2E2E 0%, #1a1a1a 100%);
  color: #FFFFFF;
  padding: 50px 20px 20px;
  margin-top: 80px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section {
  padding: 0 10px;
}

.footer-section h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: #F37021;
  border-radius: 2px;
}

.footer-section p {
  margin-bottom: 12px;
  line-height: 1.8;
  color: #CBB49C;
  font-size: 0.95rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.footer-section ul li:hover {
  transform: translateX(5px);
}

.footer-section ul li a {
  color: #ecf0f1;
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.footer-section ul li a::before {
  content: '▸';
  margin-right: 8px;
  color: #F37021;
  font-weight: bold;
  transition: margin-right 0.3s ease;
}

.footer-section ul li a:hover {
  color: #F37021;
}

.footer-section ul li a:hover::before {
  margin-right: 12px;
}

.footer-section i {
  margin-right: 10px;
  color: #F37021;
  font-size: 1.1rem;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ecf0f1;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-links a:hover {
  background: #F37021;
  color: #fff;
  transform: translateY(-5px) rotate(360deg);
  border-color: #fff;
  box-shadow: 0 5px 15px rgba(243, 112, 33, 0.4);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #95a5a6;
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .site-footer {
    padding: 40px 15px 15px;
    margin-top: 60px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-section {
    text-align: center;
  }

  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-section ul li a::before {
    content: '';
    margin-right: 0;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-section h3 {
    font-size: 1.2rem;
  }

  .footer-section p,
  .footer-section ul li a {
    font-size: 0.9rem;
  }

  .social-links a {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

/* Animation for footer appearance */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-section {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.footer-section:nth-child(1) {
  animation-delay: 0.1s;
}

.footer-section:nth-child(2) {
  animation-delay: 0.2s;
}

.footer-section:nth-child(3) {
  animation-delay: 0.3s;
}
