/* =====================================================
   FOOTER
===================================================== */

.site-footer {
  background: #1f2933; /* dark neutral */
  color: #ffffff;
  padding: 4rem 1.5rem 3rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  gap: 3rem;
  align-items: center;
  text-align: center;
}

/* =====================================================
   BRANDING
===================================================== */

.footer-branding img.logo-footer-nav {
  max-width: 180px;
  height: auto;
}

/* =====================================================
   SLOGAN
===================================================== */

.text-footer-slogan h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.text-footer-slogan p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* =====================================================
   FOOTER NAV
===================================================== */

.footer-navigation-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.footer-navigation-links a {
  color: #ffffff;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.footer-navigation-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* =====================================================
   DOWNLOAD LINKS
===================================================== */

.footer-downloads {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-downloads img {
  height: 48px;
  width: auto;
  transition: transform 0.2s ease;
}

.footer-downloads img:hover {
  transform: translateY(-2px);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr 1.2fr 1.2fr 1fr;
    text-align: left;
  }

  .text-footer-slogan {
    text-align: left;
  }

  .footer-navigation-links {
    justify-content: flex-start;
  }

  .footer-downloads {
    justify-content: flex-end;
  }
}

.footer-legal-bar {
  margin-top: 2rem;
  padding: 1.25rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  color: #ffffff;
  font-size: 0.95rem;
}

.footer-legal-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

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

.footer-legal-links .separator {
  margin: 0 0.5rem;
  opacity: 0.7;
}

.footer-social {
  margin: 0.75rem 0;
}

.footer-social ion-icon {
  font-size: 1.5rem;
  color: #ffffff;
  transition: opacity 0.2s ease;
}

.footer-social ion-icon:hover {
  opacity: 0.7;
}

.footer-copyright {
  margin-bottom: 0.5rem;
  opacity: 0.85;
  color: #ffffff;
}
