/* ========================= */
/* LEGACY FOOTER BAR */
/* ========================= */

.footer-fixed {
  background-color: var(--color-bg-alt);
  color: var(--color-text-muted);
  font-family: "Manrope", "Segoe UI", sans-serif;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

.footer-fixed a {
  color: var(--color-accent);
  text-decoration: none;
}

.footer-fixed a:hover {
  color: var(--color-accent-hover);
}

/* ========================= */
/* MAIN FOOTER LAYOUT */
/* ========================= */

.custom-footer {
  flex-shrink: 0;
  padding: 52px 24px 26px;
  background: linear-gradient(
    180deg,
    rgba(11, 13, 18, 0.95),
    rgba(8, 10, 14, 1)
  );
  color: #d6dce6;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 16px;
  text-align: left;
}

.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.footer-column {
  flex: 1;
  min-width: 170px;
}

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

.footer-logo-img {
  display: block;
  max-width: 154px;
  height: auto;
}

.footer-column h5 {
  margin: 0 0 12px;
  color: #ff6b73;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-align: left;
}

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

.footer-column ul li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-bottom: 8px;
  color: #d6dce6;
  font-size: 0.86rem;
  line-height: 1.5;
  text-align: left;
}

.footer-column ul li i {
  width: 15px;
  margin-top: 3px;
  color: #ff5a63;
  text-align: center;
}

.footer-column a {
  color: #d6dce6;
  font-family: inherit;
  font-size: inherit;
  font-weight: 400;
  text-decoration: none;
}

.footer-column ul li a:hover,
.footer-column ul li a:focus-visible {
  color: #ff7f87;
}

.footer-separator {
  width: 1px;
  background: #303847;
}

/* ========================= */
/* CONTACT BUTTON */
/* ========================= */

.contact-mail-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  padding: 7px 11px;
  border: 1px solid #ff535d;
  border-radius: 999px;
  color: #ff9ba2 !important;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-mail-btn:hover,
.contact-mail-btn:focus-visible {
  border-color: transparent;
  background: linear-gradient(115deg, #d5101a, #ff555d);
  color: #fff !important;
}

/* ========================= */
/* SOCIAL LINKS */
/* ========================= */

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid #4b5666;
  border-radius: 50%;
  color: #d6dce6;
}

.social-icons a:hover,
.social-icons a:focus-visible {
  border-color: #ff5761;
  color: #fff;
}

.custom-footer + .footer-fixed {
  border-top: 1px solid #2d3744;
  background: #0b1118;
  color: #9fa9b7;
}

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

@media (max-width: 768px) {
  .custom-footer {
    padding-right: 16px;
    padding-left: 16px;
  }

  .footer-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-separator {
    display: none;
  }

  .footer-column ul li {
    justify-content: center;
  }

  .footer-column h5,
  .footer-column ul li {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}
