.Content_footer {
  padding: 4rem 1.5rem;
  background: linear-gradient(to bottom, #000 0%, #a01717 100%);
  color: #fff;
  text-align: center;
}

.join_button {
  margin-bottom: 10rem;
  margin-top: 4rem;
}

.join_button button {
  background: #d61111;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.join_button button:hover {
  background: #dc2626;
  transform: scale(1.05);
}

.links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 6rem;
}

.links a {
  color: #ddd;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 18px;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  padding-top: 15px;
}

.links a:hover {
  color: #fff;
}

.socials {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.socials a {
  color: #ddd;
  font-size: 1.5rem;
  transition: color 0.3s ease, transform 0.2s ease;
}

.socials a:hover {
  color: #fff;
  transform: scale(1.2);
}

.copyright{
  margin-top: 4rem;
  margin-bottom: -3rem;
  font-size: 0.9rem;
  color: #aaaaaa;
}



.credit p {
  margin-top: 5rem;
  margin-bottom: -3rem;
  padding: 5px 0;
  font-style: italic;
  color: rgba(0, 0, 0, 0.568);
}

/* =================== Desktop Footer =================== */
@media (min-width: 801px) {
  .Content_footer {
    display: flex;
    flex-direction: column; /* stack everything */
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
    gap: 2rem; /* even spacing between items */
  }

  .join_button {
    margin-top: 5rem;
    margin-bottom: 8rem; /* reset big margins */
  }

  .links {
    display: flex;
    gap: 2rem;
    margin-bottom: 0rem;
  }

  .links a {
    padding: 0;
    font-size: 1.1rem;
  }

  .socials {
    display: flex;
    gap: 2rem;
    margin-bottom: 6rem;
  }

  .copyright {
    margin: 0;
    margin-bottom: -5rem;
    font-size: 0.9rem;
    color: #aaa;
    padding-bottom: 0;
  }

  .credit p {
    margin-bottom: -2rem;
    color: #666;
    font-style: italic;
    padding: 0;
  }
}
