/* =========================
   FOOTER — CLEAN + STABLE
========================= */

.site-footer {
  padding: 1.5rem 1rem;
  width: 100%;
  color: #ffffff;
  background-image: url("img/woodgrain-bg.png");
  background-size: cover;
}

/* layout */
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

/* left side */
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.footer-address {
  line-height: 1.4;
  opacity: 0.9;
}

.footer-address a {
  color: inherit;
  text-decoration: none;
}

.footer-address a:hover {
  text-decoration: underline;
}

/* right side (icons) */
.footer-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* icon container */
.footer-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;              /* prevents flex stretch */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 🔥 HARD LOCK icon size (fixes your issue) */
.site-footer img {
  width: 30px;
  height: 30px;
}

/* hover effect */
.footer-icon:hover {
  transform: translateY(-3px) scale(1.05);
  transition: transform 180ms ease;
}

/* click effect */
.footer-icon:active {
  transform: translateY(-1px) scale(0.98);
}
