/* style/footer.css */
.site-footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 2rem 0;
  text-align: center;
}

.site-footer .social-icons {
  margin-top: 1rem;
}

.site-footer .social-icons a {
  margin: 0 0.5rem;
  color: #ccc;
  text-decoration: none;
  font-size: 1rem;
}

.site-footer .social-icons a:hover {
  color: #fff;
}


/* === Footer Section === */
.site-footer {
  background: #111;
  color: #eee;
  padding: 60px 20px;
  margin-top: 60px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

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

.footer-column h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 15px;
}

.footer-column h4 {
  font-size: 1rem;
  color: #bbb;
  margin-bottom: 10px;
}

.footer-column p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Buttons/links */
.footer-btn {
  display: inline-block;
  background: #007bff;
  color: #fff;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.footer-btn:hover {
  background: #0056b3;
}

/* Images (logos, icons, etc.) */
.footer-image img {
  max-width: 150px;
  margin-top: 15px;
}

/* Responsive behavior */
@media (max-width: 600px) {
  .footer-grid {
      text-align: center;
  }

  .footer-column {
      align-items: center;
  }
}
