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

.site-footer {
  position: relative;
  padding-top: 86px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .10);
  background:
    radial-gradient(
      circle at 18% 20%,
      rgba(225, 6, 0, .14),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #070707 0%,
      #030303 100%
    );
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -90px;
  left: 0;
  right: 0;
  height: 90px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(0, 0, 0, .88)
  );
  pointer-events: none;
}

.site-footer::after {
  content: "ATHLETIC";
  position: absolute;
  right: -30px;
  bottom: 36px;
  z-index: 0;
  color: rgba(255, 255, 255, .025);
  font-family: Anton, sans-serif;
  font-size: 150px;
  line-height: 1;
  pointer-events: none;
}

.footer-main,
.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.35fr .85fr .85fr 1.15fr;
  gap: 34px;
  padding-bottom: 58px;
}

.footer-brand {
  max-width: 380px;
}

.footer-logo {
  width: 118px;
  margin-bottom: 22px;
}

.site-footer p {
  color: rgba(255, 255, 255, .90);
  font-size: 15px;
  line-height: 1.75;
}

.site-footer h4 {
  margin-bottom: 18px;
  color: #ffffff;
  font-family: Anton, sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin: 11px 0;
  color: rgba(255, 255, 255, .88);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  transition:
    color .25s ease,
    transform .25s ease,
    opacity .25s ease;
}

.site-footer a:hover {
  color: #ff2a2a;
  transform: translateX(4px);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.footer-social a {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: 17px;
  border: 1px solid rgba(255, 255, 255, .14);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .10),
      rgba(255, 255, 255, .035)
    );
  backdrop-filter: blur(10px);
  transition:
    transform .28s ease,
    border-color .28s ease,
    box-shadow .28s ease,
    background .28s ease;
}

.footer-social a:hover {
  transform: translateY(-5px);
  border-color: rgba(225, 6, 0, .55);
  background:
    linear-gradient(
      145deg,
      rgba(225, 6, 0, .18),
      rgba(255, 255, 255, .05)
    );
  box-shadow:
    0 14px 34px rgba(225, 6, 0, .22),
    0 18px 40px rgba(0, 0, 0, .28);
}

.footer-social img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.footer-contact p {
  margin-bottom: 18px;
}

.footer-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin: 2px 0 18px !important;
  padding: 13px 22px;
  border-radius: 999px;
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: var(--shadow-red);
  font-size: 13px !important;
  font-weight: 900 !important;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.footer-btn:hover {
  transform: translateY(-3px) !important;
  color: #ffffff !important;
  box-shadow: 0 0 58px rgba(225, 6, 0, .42);
}

.footer-link {
  color: rgba(255, 255, 255, .88) !important;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .10);
  background: rgba(0, 0, 0, .52);
  color: rgba(255, 255, 255, .86);
  font-size: 13px;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-bottom span {
  color: rgba(255, 255, 255, .86);
}


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

@media (max-width: 980px) {
  .footer-main,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    max-width: none;
  }
}

@media (max-width: 620px) {
  .site-footer {
    padding-top: 70px;
  }

  .footer-main,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 46px;
  }

  .site-footer::after {
    font-size: 92px;
    right: -18px;
    bottom: 86px;
  }

  .footer-bottom-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-social a {
    width: 48px;
    height: 48px;
  }

  .footer-social img {
    width: 32px;
    height: 32px;
  }
}

.footer-admin-access{
  color:rgba(255,255,255,.38);
  font-size:12px;
  font-weight:700;
  letter-spacing:.04em;
  text-decoration:none;

  transition:
    color .25s ease,
    text-shadow .25s ease,
    transform .25s ease;
}

.footer-admin-access:hover{
  color:#ff2a2a;
  text-shadow:0 0 18px rgba(225,6,0,.45);
  transform:translateY(-1px);
}