/* ===== FOOTER ===== */

footer {
  background: linear-gradient(180deg, #5B7917, #465F12);
  color: #C3CA92;
  padding: 34px 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-top: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* ===== CONTAINER ===== */
.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* ===== SOCIAL LINKS ===== */
.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 18px;
}

/* ===== LINK ===== */
.social-links a {
  color: #C3CA92;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  transition: all 0.25s ease;
}

/* Hover */
.social-links a:hover {
  background: rgba(255, 255, 255, 0.08);
  text-shadow: none;
  transform: translateY(-2px);
}

/* Icon */
.social-links i {
  font-size: 1.1rem;
}

/* ===== TEXT ===== */
footer p,
footer h6 {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.85;
}

/* ===== TABLET ===== */
@media (max-width: 768px) {
  .footer-container {
    padding: 0 16px;
  }

  .social-links {
    gap: 16px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 520px) {
  .social-links {
    flex-direction: column; /* 🔥 better than horizontal scroll */
    gap: 12px;
  }

  .social-links a {
    justify-content: center;
    font-size: 0.9rem;
  }
}
