/* ================= FOOTER ================= */
footer {
  background-color: transparent;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  width: 100%;
  margin-top: auto;
}

.footer-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: nowrap; /* Prevent wrapping */
  margin-top: 15px;
  overflow-x: auto;   /* Allow horizontal scroll if needed */
}

.footer-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.social-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: inline-block;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

.footer-contact h3 {
  font-size: 1.3rem;
  margin: 30px;
  font-weight: 700;
}

.footer-contact p {
  font-size: 1rem;
  margin: 10px 0;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #ddd;
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 25px;
  font-size: 0.85rem;
  color: #ddd;
}
