/* Footer */
.site-footer {
  width: 100%;
  background-color: #36454F; /* same as header */
  color: #F0EAD6;
  padding: 20px 0;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.2); /* subtle top shadow */
}

/* Footer container flex layout */
.site-footer .container.footer-flex {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between; /* left, center, right */
  align-items: center;
  gap: 20px;
  flex-wrap: wrap; /* allow wrapping on smaller screens */
}

/* Contact Section */
.footer-contact {
  flex: 1 1 200px;
}

.footer-contact .footer-title {
  margin: 0 0 5px 0;
  font-size: 1.2em;
}

.footer-contact a {
  color: #F0EAD6;
  text-decoration: none;
  font-weight: bold;
}

.footer-contact a:hover {
  color: #ffcc00;
}

/* Social Links Section */
.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex: 1 1 200px;
}

.footer-social .social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #F0EAD6;
  transition: transform 0.2s, color 0.2s;
  font-weight: bold;
}

.footer-social .social-link:hover {
  transform: scale(1.1);
  color: #ffcc00;
}

.footer-social .social-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 5px;
}

.footer-social .social-text {
  font-size: 0.9em;
}

.footer-social .social-link:hover .social-text {
  color: #ffcc00;
}

/* Footer Note / Copyright */
.footer-note {
  flex: 1 1 200px;
  text-align: right;
  font-size: 0.9em;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .site-footer .container.footer-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .footer-note {
    text-align: center;
  }
}
