/* ========== FOOTER ========== */
.my-footer {
  background: rgba(10, 10, 15, 0.95);
  border-top: 1px solid rgba(0, 191, 255, 0.3);
  color: #EAEAEA;
  padding: 40px 0;
  text-align: center;
  font-family: 'Fira Sans', sans-serif;
  box-shadow: 0 -5px 20px rgba(0, 191, 255, 0.1);
}

.footer-navigation {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 25px;
}

.footer-navbars {
  text-align: center;
  min-width: 150px;
}

.footer-navbar-title a {
  color: #00BFFF;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-navbar-title p {
  color: #00BFFF;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-navbar-title a:hover {
  color: #1CFFFF;
  text-shadow: 0 0 6px #00BFFF, 0 0 10px #00BFFF;
}

/* Submenu */
.footer-submenu {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
}

.footer-submenu li {
  margin: 6px 0;
}

.footer-submenu a {
  color: #EAEAEA;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-submenu a:hover {
  color: #00BFFF;
  text-shadow: 0 0 5px #00BFFF;
}

.footer-supports,
.footer-infos {
  margin-top: 20px;
  color: #B0B0B0;
  font-size: 13px;
}

.footer-supports a,
.footer-infos a {
  color: #00BFFF;
  text-decoration: none;
}

.footer-supports a:hover,
.footer-infos a:hover {
  text-decoration: underline;
}

/* Responsive */
@media screen and (max-width: 700px) {
  .footer-navigation {
    flex-direction: column;
    gap: 1.5rem;
  }
}
