/* Footer - Footlab Theme */
:root { --footer-height: 140px; }

.site-footer {
  background-color: #e3e8ec;
  color: #555;
  padding: 40px 20px 20px;
  font-size: 16px;
  clear: both;            /* חשוב: שלא יישב לצד floats */
  position: relative;
  z-index: 1;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1500px;
  margin: 0 auto;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 15px;
  border-bottom: 2px solid #9ab4c2;
  padding-bottom: 8px;
  color: #678292;
}

.footer-column ul { list-style: none; padding: 0; margin: 0; }
.footer-column ul li { margin-bottom: 10px; }
.footer-column ul li a {
  color: #678292 !important;
  font-size: 16px !important;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-column ul li a:hover { color: #9ab4c2 !important; }

.social-links li { display: inline-block; margin-left: 10px; }

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  border-top: 1px solid rgba(103,130,146,0.5);
  padding-top: 15px;
  color: #678292;
}

/* מבטיח שהתוכן “ידחוף” עד הפוטר, בלי רווחים מוזרים */
main.page-container {
  min-height: calc(100vh - var(--header-height, 160px) - var(--footer-height, 140px));
}