/* ================================
   FOOTER — shared across pages
   ================================ */
.footer {
  background: #0b254a; /* slightly darker navy */
  color: #ccc;
  padding: 30px 20px;
  font-size: 14px;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  padding-bottom: 20px;
  text-align: center;
}

.footer-info {
  flex: 1;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Social icons --- */
.social-links {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 24px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;       /* ⬆️ same as index.html */
  height: 44px;
  border-radius: 10px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer .social-links svg {
  width: 28px;
  height: 28px;
  filter: brightness(0.9);
}

.social-links a:hover {
  transform: scale(1.12);
  opacity: 0.9;
}

.footer .social-links a:hover svg {
  filter: brightness(1.1);
}

/* --- Mobile layout --- */
@media (max-width: 700px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .social-links {
    position: static;
    margin-top: 14px;
    justify-content: center;
  }
}
