/* Footer */
.footer {
  background: #578c64;
  color: #000000;
  height: 100px;
  display: flex;
  align-items: center;
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem; /* adds even spacing between items */
  width: 100%;
}

.footer .item {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Text styling */
.footer .lead {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  line-height: 1; /* keeps text height compact */
}

/* Icon styling */
.footer i {
  font-size: 1.6rem; /* similar visual height to text */
  color: #000000;
  transition: transform 0.3s ease, color 0.3s ease;
  vertical-align: middle;
}

/* Optional hover effect */
.footer a:hover i {
  transform: translateY(-3px);
  color: #ffffff;
}

/* Responsive adjustment for small screens */
@media (max-width: 600px) {
  .footer {
    height: auto;
    padding: 1rem 0;
  }
  .footer .container {
    flex-direction: column;
    gap: 0.5rem;
  }
}
