/* =========================================================
   FOOTER
   Global footer for all pages
   ========================================================= */

.site-footer {
  padding: 0rem 2rem 1.2rem;
  background: transparent;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  margin-top: auto;
}

.footer-frame {
  width: min(100%, 1550px);
  margin: 0 auto;
  padding: 2rem 2.75rem 1.8rem;
  background: #191C4A ;
  border: none;
  box-shadow: none;
  border-radius: 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr 0.8fr 1.45fr;
  gap: 2rem;
  align-items: start;
}

.footer-links  li[data-status="draft"] {
  display: none;
}

.footer-brand,
.footer-links,
.footer-contact {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

.footer-brand {
  max-width: 260px;
  text-align: left;
}

.footer-logo-link {
  display: block;
  align-items: center;
  text-decoration: none;
  margin-bottom: 0.85rem;
}

.footer-logo {
  width: 180px;
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;  /* Centers the block element */
  margin-right: auto; /* Centers the block element */
}

.footer-brand-text {
  margin: 0 0 0.75rem;
  color: #f4f7ff;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.footer-brand-tagline {
  margin: 0;
  color: #ffffff;
  gap:.25rem;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 0.22rem;
}

.footer-links a {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.18;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #00e5ff;
  transform: scale(1.04);
}

.footer-contact {
  max-width: 300px;
  text-align: left;

}

.footer-contact h2 {
  margin: 0 0 0.65rem;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.01em;
}

.footer-contact address {
  margin: 0 0 0.85rem;
  color: #ffffff;
  font-style: normal;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.7rem;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-contact-link:hover,
.footer-contact-link:focus-visible {
  color: #00e5ff;
  transform: translateX(2px);
}

.footer-contact-link img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.25rem;
  flex-wrap: wrap;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.footer-socials a[data-status="draft"] {
  display: none;
}
.footer-socials img {
  width: 30px;
  height: 30px;
  gap: 1rem;
  object-fit: contain;
  display: block;
}

.footer-bottom {
  margin-top: 2.4rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25;
}

@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1.2fr 0.9fr 1fr;
  }
  .footer-contact {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

@media (max-width: 820px) {
  .site-footer {
    padding: 2rem 1rem 1rem;
  }
  .footer-frame {
    padding: 2rem 1.2rem 1.4rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }
  .footer-logo {
    width: 150px;
  }
}
