:root {
  --Aqua: #03cece;
  --Gold: #ffd700;
  --white: #ffffff;
  --red: #ff2600;
  --black: #000000;
  --Nav-button: rgba(255, 255, 255, 0.05);
  --Nav-hover: rgba(255, 255, 255, 0.1);
  --popup: rgba(0, 0, 0, 0.5);
}

/* =========================
   Footer
========================= */

footer {
  width: 100%;
  margin-top: auto;
}

footer section {
  width: 100%;
}

.footer-container {
  width: 100%;
  min-height: 108px;
  padding: 18px 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #ff0000 0%, #f00000 45%, #b00000 100%);
  color: #fff;
  border-radius: 7px 7px 0 0;
  box-sizing: border-box;
}

/* Title */

.footer-container h4 {
  margin: 0 0 10px;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1px;
  text-transform: uppercase;
}

/* Social links */

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 10px;
}

.social-links a {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 30px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.social-links a:hover {
  color: var(--Aqua);
  opacity: 0.8;
  transform: translateY(-3px) scale(1.08);
}

.social-links i {
  display: block;
}

/* Copyright */

.footer-container .copyright {
  margin: 0;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

/* =========================
   Responsive
========================= */

@media (max-width: 600px) {
  .footer-container {
    min-height: 105px;
    padding: 16px 15px;
  }

  .social-links {
    gap: 18px;
  }

  .social-links a {
    width: 26px;
    height: 26px;
    font-size: 19px;
  }

  .footer-container h4 {
    font-size: 9px;
  }

  .footer-container .copyright {
    font-size: 9px;
  }
}
